Enum pkcs5::pbes2::EncryptionScheme[][src]

#[non_exhaustive]pub enum EncryptionScheme<'a> {
    Aes128Cbc {
        iv: &'a [u8; 16],
    },
    Aes256Cbc {
        iv: &'a [u8; 16],
    },
}

Symmetric encryption scheme used by PBES2.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Aes128Cbc

AES-128 in CBC mode

Fields of Aes128Cbc

iv: &'a [u8; 16]

Initialization vector

Aes256Cbc

AES-256 in CBC mode

Fields of Aes256Cbc

iv: &'a [u8; 16]

Initialization vector

Implementations

impl<'a> EncryptionScheme<'a>[src]

pub fn key_size(&self) -> usize[src]

Get the size of a key used by this algorithm.

pub fn oid(&self) -> ObjectIdentifier[src]

Get the ObjectIdentifier (a.k.a OID) for this algorithm.

Trait Implementations

impl<'a> Clone for EncryptionScheme<'a>[src]

impl<'a> Copy for EncryptionScheme<'a>[src]

impl<'a> Debug for EncryptionScheme<'a>[src]

impl<'a> Encodable for EncryptionScheme<'a>[src]

impl<'a> Eq for EncryptionScheme<'a>[src]

impl<'a> PartialEq<EncryptionScheme<'a>> for EncryptionScheme<'a>[src]

impl<'a> StructuralEq for EncryptionScheme<'a>[src]

impl<'a> StructuralPartialEq for EncryptionScheme<'a>[src]

impl<'a> TryFrom<AlgorithmIdentifier<'a>> for EncryptionScheme<'a>[src]

type Error = Error

The type returned in the event of a conversion error.

impl<'a> TryFrom<Any<'a>> for EncryptionScheme<'a>[src]

type Error = Error

The type returned in the event of a conversion error.

impl<'a> TryFrom<EncryptionScheme<'a>> for AlgorithmIdentifier<'a>[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<'a> Send for EncryptionScheme<'a>

impl<'a> Sync for EncryptionScheme<'a>

impl<'a> Unpin for EncryptionScheme<'a>

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<'a, T> Decodable<'a> for T where
    T: TryFrom<Any<'a>, Error = Error>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.