Struct ccm::Ccm [−][src]
pub struct Ccm<C, M, N> where
C: BlockCipher<BlockSize = U16> + BlockEncrypt,
C::ParBlocks: ArrayLength<Block<C>>,
M: ArrayLength<u8> + TagSize,
N: ArrayLength<u8> + NonceSize, { /* fields omitted */ }CCM instance generic over an underlying block cipher.
Type parameters:
C: block cipher.M: size of MAC tag, valid values:U4,U6,U8,U10,U12,U14,U16.N: size of nonce, valid values:U7,U8,U9,U10,U11,U12,U13.
Trait Implementations
impl<C, M, N> AeadCore for Ccm<C, M, N> where
C: BlockCipher<BlockSize = U16> + BlockEncrypt,
C::ParBlocks: ArrayLength<Block<C>>,
M: ArrayLength<u8> + TagSize,
N: ArrayLength<u8> + NonceSize, [src]
impl<C, M, N> AeadCore for Ccm<C, M, N> where
C: BlockCipher<BlockSize = U16> + BlockEncrypt,
C::ParBlocks: ArrayLength<Block<C>>,
M: ArrayLength<u8> + TagSize,
N: ArrayLength<u8> + NonceSize, [src]type NonceSize = N
The length of a nonce.
type TagSize = M
The maximum length of the nonce.
type CiphertextOverhead = U0
The upper bound amount of additional space required to support a ciphertext vs. a plaintext. Read more
impl<C, M, N> AeadInPlace for Ccm<C, M, N> where
C: BlockCipher<BlockSize = U16> + BlockEncrypt,
C::ParBlocks: ArrayLength<Block<C>>,
M: ArrayLength<u8> + TagSize,
N: ArrayLength<u8> + NonceSize, [src]
impl<C, M, N> AeadInPlace for Ccm<C, M, N> where
C: BlockCipher<BlockSize = U16> + BlockEncrypt,
C::ParBlocks: ArrayLength<Block<C>>,
M: ArrayLength<u8> + TagSize,
N: ArrayLength<u8> + NonceSize, [src]fn encrypt_in_place_detached(
&self,
nonce: &Nonce<N>,
adata: &[u8],
buffer: &mut [u8]
) -> Result<Tag<Self::TagSize>, Error>[src]
&self,
nonce: &Nonce<N>,
adata: &[u8],
buffer: &mut [u8]
) -> Result<Tag<Self::TagSize>, Error>
fn decrypt_in_place_detached(
&self,
nonce: &Nonce<N>,
adata: &[u8],
buffer: &mut [u8],
tag: &Tag<Self::TagSize>
) -> Result<(), Error>[src]
&self,
nonce: &Nonce<N>,
adata: &[u8],
buffer: &mut [u8],
tag: &Tag<Self::TagSize>
) -> Result<(), Error>
pub fn encrypt_in_place(
&self,
nonce: &GenericArray<u8, Self::NonceSize>,
associated_data: &[u8],
buffer: &mut dyn Buffer
) -> Result<(), Error>[src]
&self,
nonce: &GenericArray<u8, Self::NonceSize>,
associated_data: &[u8],
buffer: &mut dyn Buffer
) -> Result<(), Error>
pub fn decrypt_in_place(
&self,
nonce: &GenericArray<u8, Self::NonceSize>,
associated_data: &[u8],
buffer: &mut dyn Buffer
) -> Result<(), Error>[src]
&self,
nonce: &GenericArray<u8, Self::NonceSize>,
associated_data: &[u8],
buffer: &mut dyn Buffer
) -> Result<(), Error>
impl<C, M, N> NewAead for Ccm<C, M, N> where
C: BlockCipher<BlockSize = U16> + BlockEncrypt + NewBlockCipher,
C::ParBlocks: ArrayLength<Block<C>>,
M: ArrayLength<u8> + TagSize,
N: ArrayLength<u8> + NonceSize, [src]
impl<C, M, N> NewAead for Ccm<C, M, N> where
C: BlockCipher<BlockSize = U16> + BlockEncrypt + NewBlockCipher,
C::ParBlocks: ArrayLength<Block<C>>,
M: ArrayLength<u8> + TagSize,
N: ArrayLength<u8> + NonceSize, [src]Auto Trait Implementations
Blanket Implementations
impl<Alg> Aead for Alg where
Alg: AeadInPlace, [src]
impl<Alg> Aead for Alg where
Alg: AeadInPlace, [src]pub fn encrypt<'msg, 'aad>(
&self,
nonce: &GenericArray<u8, <Alg as AeadCore>::NonceSize>,
plaintext: impl Into<Payload<'msg, 'aad>>
) -> Result<Vec<u8, Global>, Error>[src]
&self,
nonce: &GenericArray<u8, <Alg as AeadCore>::NonceSize>,
plaintext: impl Into<Payload<'msg, 'aad>>
) -> Result<Vec<u8, Global>, Error>
pub fn decrypt<'msg, 'aad>(
&self,
nonce: &GenericArray<u8, <Alg as AeadCore>::NonceSize>,
ciphertext: impl Into<Payload<'msg, 'aad>>
) -> Result<Vec<u8, Global>, Error>[src]
&self,
nonce: &GenericArray<u8, <Alg as AeadCore>::NonceSize>,
ciphertext: impl Into<Payload<'msg, 'aad>>
) -> Result<Vec<u8, Global>, Error>
impl<Alg> AeadMut for Alg where
Alg: AeadMutInPlace, [src]
impl<Alg> AeadMut for Alg where
Alg: AeadMutInPlace, [src]pub fn encrypt<'msg, 'aad>(
&mut self,
nonce: &GenericArray<u8, <Alg as AeadCore>::NonceSize>,
plaintext: impl Into<Payload<'msg, 'aad>>
) -> Result<Vec<u8, Global>, Error>[src]
&mut self,
nonce: &GenericArray<u8, <Alg as AeadCore>::NonceSize>,
plaintext: impl Into<Payload<'msg, 'aad>>
) -> Result<Vec<u8, Global>, Error>
pub fn decrypt<'msg, 'aad>(
&mut self,
nonce: &GenericArray<u8, <Alg as AeadCore>::NonceSize>,
ciphertext: impl Into<Payload<'msg, 'aad>>
) -> Result<Vec<u8, Global>, Error>[src]
&mut self,
nonce: &GenericArray<u8, <Alg as AeadCore>::NonceSize>,
ciphertext: impl Into<Payload<'msg, 'aad>>
) -> Result<Vec<u8, Global>, Error>
impl<Alg> AeadMutInPlace for Alg where
Alg: AeadInPlace, [src]
impl<Alg> AeadMutInPlace for Alg where
Alg: AeadInPlace, [src]pub fn encrypt_in_place(
&mut self,
nonce: &GenericArray<u8, <Alg as AeadCore>::NonceSize>,
associated_data: &[u8],
buffer: &mut impl Buffer
) -> Result<(), Error>[src]
&mut self,
nonce: &GenericArray<u8, <Alg as AeadCore>::NonceSize>,
associated_data: &[u8],
buffer: &mut impl Buffer
) -> Result<(), Error>
pub fn encrypt_in_place_detached(
&mut self,
nonce: &GenericArray<u8, <Alg as AeadCore>::NonceSize>,
associated_data: &[u8],
buffer: &mut [u8]
) -> Result<GenericArray<u8, <Alg as AeadCore>::TagSize>, Error>[src]
&mut self,
nonce: &GenericArray<u8, <Alg as AeadCore>::NonceSize>,
associated_data: &[u8],
buffer: &mut [u8]
) -> Result<GenericArray<u8, <Alg as AeadCore>::TagSize>, Error>
pub fn decrypt_in_place(
&mut self,
nonce: &GenericArray<u8, <Alg as AeadCore>::NonceSize>,
associated_data: &[u8],
buffer: &mut impl Buffer
) -> Result<(), Error>[src]
&mut self,
nonce: &GenericArray<u8, <Alg as AeadCore>::NonceSize>,
associated_data: &[u8],
buffer: &mut impl Buffer
) -> Result<(), Error>
pub fn decrypt_in_place_detached(
&mut self,
nonce: &GenericArray<u8, <Alg as AeadCore>::NonceSize>,
associated_data: &[u8],
buffer: &mut [u8],
tag: &GenericArray<u8, <Alg as AeadCore>::TagSize>
) -> Result<(), Error>[src]
&mut self,
nonce: &GenericArray<u8, <Alg as AeadCore>::NonceSize>,
associated_data: &[u8],
buffer: &mut [u8],
tag: &GenericArray<u8, <Alg as AeadCore>::TagSize>
) -> Result<(), Error>
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Same<T> for T
impl<T> Same<T> for Ttype Output = T
Should always be Self