Trait aes_gcm::NewAead [−][src]
Associated Types
type KeySize: ArrayLength<u8>
[src]
The size of the key array required by this algorithm.
Required methods
pub fn new(key: &GenericArray<u8, Self::KeySize>) -> Self
[src]
Create a new AEAD instance with the given key.
Provided methods
pub fn new_varkey(key: &[u8]) -> Result<Self, Error>
[src]
Create new AEAD instance from key with variable size.
Default implementation will accept only keys with length equal to KeySize
.
Implementors
impl<Aes, NonceSize> NewAead for AesGcm<Aes, NonceSize> where
Aes: BlockCipher<BlockSize = U16> + NewBlockCipher,
Aes::ParBlocks: ArrayLength<Block<Aes>>,
NonceSize: ArrayLength<u8>,
[src]
Aes: BlockCipher<BlockSize = U16> + NewBlockCipher,
Aes::ParBlocks: ArrayLength<Block<Aes>>,
NonceSize: ArrayLength<u8>,