[][src]Struct eme_mode::Eme

pub struct Eme<C: BlockCipher, P: Padding> { /* fields omitted */ }

ECB-Mix-ECB (EME) block cipher mode instance.

Trait Implementations

impl<C, P> BlockMode<C, P> for Eme<C, P> where
    C: BlockCipher<BlockSize = U16> + NewBlockCipher,
    <C as BlockCipher>::ParBlocks: ArrayLength<GenericArray<u8, <C as BlockCipher>::BlockSize>>,
    P: Padding
[src]

type IvSize = C::BlockSize

Initialization Vector size.

impl<C: Clone + BlockCipher, P: Clone + Padding> Clone for Eme<C, P>[src]

impl<C: Debug + BlockCipher, P: Debug + Padding> Debug for Eme<C, P>[src]

Auto Trait Implementations

impl<C, P> RefUnwindSafe for Eme<C, P> where
    C: RefUnwindSafe,
    P: RefUnwindSafe,
    <<C as BlockCipher>::BlockSize as ArrayLength<u8>>::ArrayType: RefUnwindSafe

impl<C, P> Send for Eme<C, P> where
    C: Send,
    P: Send,
    <C as BlockCipher>::BlockSize: ArrayLength<u8>, 

impl<C, P> Sync for Eme<C, P> where
    C: Sync,
    P: Sync,
    <C as BlockCipher>::BlockSize: ArrayLength<u8>, 

impl<C, P> Unpin for Eme<C, P> where
    C: Unpin,
    P: Unpin,
    <<C as BlockCipher>::BlockSize as ArrayLength<u8>>::ArrayType: Unpin

impl<C, P> UnwindSafe for Eme<C, P> where
    C: UnwindSafe,
    P: UnwindSafe,
    <<C as BlockCipher>::BlockSize as ArrayLength<u8>>::ArrayType: UnwindSafe

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> 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.