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
sourceimpl NullPolicy
impl NullPolicy
Trait Implementations
sourceimpl Debug for NullPolicy
impl Debug for NullPolicy
sourceimpl Policy for NullPolicy
impl Policy for NullPolicy
sourcefn 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
sourcefn key(&self, _ka: &ValidErasedKeyAmalgamation<'_, PublicParts>) -> Result<()>
fn key(&self, _ka: &ValidErasedKeyAmalgamation<'_, PublicParts>) -> Result<()>
Returns an error if the key violates the policy. Read more
sourcefn 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
sourcefn 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 RefUnwindSafe for NullPolicy
impl Send for NullPolicy
impl Sync for NullPolicy
impl Unpin for NullPolicy
impl UnwindSafe for NullPolicy
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more