Trait InnerUser

Source
pub trait InnerUser {
    type Inner;
}
Expand description

Types which use another type for initialization.

Generally it’s used indirectly via InnerInit or InnerIvInit.

Required Associated Types§

Source

type Inner

Inner type.

Implementors§

impl<C> InnerUser for Decryptor<C>
where C: BlockDecryptMut + BlockCipher,

impl<C> InnerUser for Encryptor<C>
where C: BlockEncryptMut + BlockCipher,

impl<C> InnerUser for CmacCore<C>
where C: BlockCipher + BlockEncryptMut + Clone, Block<C>: Dbl,

impl<C, F> InnerUser for CtrCore<C, F>