Struct sequoia_openpgp::policy::NullPolicy
source · pub struct NullPolicy {}
Expand description
The Null Policy.
Danger, here be dragons.
This policy imposes no additional policy, i.e., accepts everything. This includes the MD5 hash algorithm, and SED packets.
The Null policy has a limited set of valid use cases, e.g., packet statistics.
For other purposes, it is more advisable to use the StandardPolicy
and
adjust it by selectively allowing items considered insecure by default, e.g.,
via StandardPolicy::accept_hash
function. If this is still too inflexible
consider creating a specialized policy based on the StandardPolicy
as
the example for StandardPolicy
illustrates.
Implementations§
source§impl NullPolicy
impl NullPolicy
Trait Implementations§
source§impl Debug for NullPolicy
impl Debug for NullPolicy
source§impl Policy for NullPolicy
impl Policy for NullPolicy
source§fn signature(&self, _sig: &Signature, _sec: HashAlgoSecurity) -> Result<()>
fn signature(&self, _sig: &Signature, _sec: HashAlgoSecurity) -> Result<()>
Returns an error if the signature violates the policy. Read more
source§fn key(&self, _ka: &ValidErasedKeyAmalgamation<'_, PublicParts>) -> Result<()>
fn key(&self, _ka: &ValidErasedKeyAmalgamation<'_, PublicParts>) -> Result<()>
Returns an error if the key violates the policy. Read more
source§fn symmetric_algorithm(&self, _algo: SymmetricAlgorithm) -> Result<()>
fn symmetric_algorithm(&self, _algo: SymmetricAlgorithm) -> Result<()>
Returns an error if the symmetric encryption algorithm
violates the policy. Read more
source§fn aead_algorithm(&self, _algo: AEADAlgorithm) -> Result<()>
fn aead_algorithm(&self, _algo: AEADAlgorithm) -> Result<()>
Returns an error if the AEAD mode violates the policy. Read more
Auto Trait Implementations§
impl Freeze for NullPolicy
impl RefUnwindSafe for NullPolicy
impl Send for NullPolicy
impl Sync for NullPolicy
impl Unpin for NullPolicy
impl UnwindSafe for NullPolicy
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more