Enum tss_esapi::constants::AlgorithmIdentifier[][src]

#[repr(u16)]pub enum AlgorithmIdentifier {
    Aes,
    Camellia,
    Cbc,
    Cfb,
    Ctr,
    Ecb,
    Ecc,
    EcDaa,
    EcDh,
    EcDsa,
    EcMqv,
    EcSchnorr,
    Error,
    Hmac,
    Kdf1Sp800_108,
    Kdf1Sp800_56a,
    Kdf2,
    KeyedHash,
    Mgf1,
    Null,
    Oaep,
    Ofb,
    Rsa,
    RsaEs,
    RsaPss,
    RsaSsa,
    Sha1,
    Sha256,
    Sha384,
    Sha3_256,
    Sha3_384,
    Sha3_512,
    Sha512,
    Sm2,
    Sm3_256,
    Sm4,
    SymCipher,
    Tdes,
    Xor,
    Cmac,
}

Variants

Aes
Camellia
Cbc
Cfb
Ctr
Ecb
Ecc
EcDaa
EcDh
EcDsa
EcMqv
EcSchnorr
Error
Hmac
Kdf1Sp800_108
Kdf1Sp800_56a
Kdf2
KeyedHash
Mgf1
Null
Oaep
Ofb
Rsa
RsaEs
RsaPss
RsaSsa
Sha1
Sha256
Sha384
Sha3_256
Sha3_384
Sha3_512
Sha512
Sm2
Sm3_256
Sm4
SymCipher
Tdes
Xor
Cmac

Trait Implementations

impl Clone for AlgorithmIdentifier[src]

impl Copy for AlgorithmIdentifier[src]

impl Debug for AlgorithmIdentifier[src]

impl Eq for AlgorithmIdentifier[src]

impl From<AsymmetricAlgorithm> for AlgorithmIdentifier[src]

impl From<HashingAlgorithm> for AlgorithmIdentifier[src]

impl From<KeyDerivationFunction> for AlgorithmIdentifier[src]

impl From<KeyedHashSchemeAlgorithm> for AlgorithmIdentifier[src]

impl From<SignatureScheme> for AlgorithmIdentifier[src]

impl From<SymmetricAlgorithm> for AlgorithmIdentifier[src]

impl From<SymmetricMode> for AlgorithmIdentifier[src]

impl From<SymmetricObject> for AlgorithmIdentifier[src]

impl FromPrimitive for AlgorithmIdentifier[src]

impl Hash for AlgorithmIdentifier[src]

impl PartialEq<AlgorithmIdentifier> for AlgorithmIdentifier[src]

impl StructuralEq for AlgorithmIdentifier[src]

impl StructuralPartialEq for AlgorithmIdentifier[src]

impl ToPrimitive for AlgorithmIdentifier[src]

impl TryFrom<AlgorithmIdentifier> for HashingAlgorithm[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<AlgorithmIdentifier> for KeyedHashSchemeAlgorithm[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<AlgorithmIdentifier> for KeyDerivationFunction[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<AlgorithmIdentifier> for SymmetricAlgorithm[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<AlgorithmIdentifier> for SymmetricMode[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<AlgorithmIdentifier> for AsymmetricAlgorithm[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<AlgorithmIdentifier> for SignatureScheme[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<AlgorithmIdentifier> for SymmetricObject[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<u16> for AlgorithmIdentifier[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Free for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.