[−][src]Enum parsec_interface::operations::key_attributes::AlgorithmInner
Enumeration of possible algorithm definitions that can be attached to cryptographic keys.
Each variant of the enum contains a main algorithm type (which is required for that variant), as well as configuration fields as allowed by each algorithm in part.
Variants
Cipher(CipherAlgorithm)AsymmetricEncryption(AsymmetricEncryptionAlgorithm, Option<HashAlgorithm>)Mac(MacAlgorithm, Option<HashAlgorithm>, Option<u32>)Aead(AeadAlgorithm, Option<u32>)Sign(SignAlgorithm, Option<HashAlgorithm>)KeyAgreement(KeyAgreementAlgorithm, KeyDerivationFunction, Option<HashAlgorithm>)KeyDerivation(KeyDerivationFunction, Option<HashAlgorithm>)Hash(HashAlgorithm)Trait Implementations
impl Clone for AlgorithmInner[src]
fn clone(&self) -> AlgorithmInner[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for AlgorithmInner[src]
impl Debug for AlgorithmInner[src]
impl PartialEq<AlgorithmInner> for AlgorithmInner[src]
fn eq(&self, other: &AlgorithmInner) -> bool[src]
fn ne(&self, other: &AlgorithmInner) -> bool[src]
impl StructuralPartialEq for AlgorithmInner[src]
Auto Trait Implementations
impl RefUnwindSafe for AlgorithmInner
impl Send for AlgorithmInner
impl Sync for AlgorithmInner
impl Unpin for AlgorithmInner
impl UnwindSafe for AlgorithmInner
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,