pub struct Decryptor<C>where
C: BlockDecryptMut + BlockCipher,{ /* private fields */ }
Expand description
CBC mode decryptor.
Trait Implementations§
Source§impl<C> AlgorithmName for Decryptor<C>where
C: BlockDecryptMut + BlockCipher + AlgorithmName,
impl<C> AlgorithmName for Decryptor<C>where
C: BlockDecryptMut + BlockCipher + AlgorithmName,
Source§fn write_alg_name(f: &mut Formatter<'_>) -> Result
fn write_alg_name(f: &mut Formatter<'_>) -> Result
Write algorithm name into
f
.Source§impl<C> BlockDecryptMut for Decryptor<C>where
C: BlockDecryptMut + BlockCipher,
impl<C> BlockDecryptMut for Decryptor<C>where
C: BlockDecryptMut + BlockCipher,
Source§fn decrypt_with_backend_mut(
&mut self,
f: impl BlockClosure<BlockSize = Self::BlockSize>,
)
fn decrypt_with_backend_mut( &mut self, f: impl BlockClosure<BlockSize = Self::BlockSize>, )
Decrypt data using backend provided to the rank-2 closure.
§fn decrypt_block_inout_mut(
&mut self,
block: InOut<'_, '_, GenericArray<u8, Self::BlockSize>>,
)
fn decrypt_block_inout_mut( &mut self, block: InOut<'_, '_, GenericArray<u8, Self::BlockSize>>, )
Decrypt single
inout
block.§fn decrypt_blocks_inout_mut(
&mut self,
blocks: InOutBuf<'_, '_, GenericArray<u8, Self::BlockSize>>,
)
fn decrypt_blocks_inout_mut( &mut self, blocks: InOutBuf<'_, '_, GenericArray<u8, Self::BlockSize>>, )
Decrypt
inout
blocks.§fn decrypt_block_mut(&mut self, block: &mut GenericArray<u8, Self::BlockSize>)
fn decrypt_block_mut(&mut self, block: &mut GenericArray<u8, Self::BlockSize>)
Decrypt single block in-place.
§fn decrypt_block_b2b_mut(
&mut self,
in_block: &GenericArray<u8, Self::BlockSize>,
out_block: &mut GenericArray<u8, Self::BlockSize>,
)
fn decrypt_block_b2b_mut( &mut self, in_block: &GenericArray<u8, Self::BlockSize>, out_block: &mut GenericArray<u8, Self::BlockSize>, )
Decrypt
in_block
and write result to out_block
.§fn decrypt_blocks_mut(
&mut self,
blocks: &mut [GenericArray<u8, Self::BlockSize>],
)
fn decrypt_blocks_mut( &mut self, blocks: &mut [GenericArray<u8, Self::BlockSize>], )
Decrypt blocks in-place.
§fn decrypt_blocks_b2b_mut(
&mut self,
in_blocks: &[GenericArray<u8, Self::BlockSize>],
out_blocks: &mut [GenericArray<u8, Self::BlockSize>],
) -> Result<(), NotEqualError>
fn decrypt_blocks_b2b_mut( &mut self, in_blocks: &[GenericArray<u8, Self::BlockSize>], out_blocks: &mut [GenericArray<u8, Self::BlockSize>], ) -> Result<(), NotEqualError>
Decrypt blocks buffer-to-buffer. Read more
§fn decrypt_padded_inout_mut<'inp, 'out, P>(
self,
data: InOutBuf<'inp, 'out, u8>,
) -> Result<&'out [u8], UnpadError>where
P: Padding<Self::BlockSize>,
fn decrypt_padded_inout_mut<'inp, 'out, P>(
self,
data: InOutBuf<'inp, 'out, u8>,
) -> Result<&'out [u8], UnpadError>where
P: Padding<Self::BlockSize>,
Decrypt input and unpad it. Returns resulting ciphertext slice. Read more
§fn decrypt_padded_mut<P>(self, buf: &mut [u8]) -> Result<&[u8], UnpadError>where
P: Padding<Self::BlockSize>,
fn decrypt_padded_mut<P>(self, buf: &mut [u8]) -> Result<&[u8], UnpadError>where
P: Padding<Self::BlockSize>,
Decrypt input and unpad it in-place. Returns resulting ciphertext slice. Read more
§fn decrypt_padded_b2b_mut<'a, P>(
self,
in_buf: &[u8],
out_buf: &'a mut [u8],
) -> Result<&'a [u8], UnpadError>where
P: Padding<Self::BlockSize>,
fn decrypt_padded_b2b_mut<'a, P>(
self,
in_buf: &[u8],
out_buf: &'a mut [u8],
) -> Result<&'a [u8], UnpadError>where
P: Padding<Self::BlockSize>,
Decrypt input and unpad it buffer-to-buffer. Returns resulting
ciphertext slice. Read more
Source§impl<C> InnerIvInit for Decryptor<C>where
C: BlockDecryptMut + BlockCipher,
impl<C> InnerIvInit for Decryptor<C>where
C: BlockDecryptMut + BlockCipher,
Source§fn inner_iv_init(cipher: C, iv: &Iv<Self>) -> Self
fn inner_iv_init(cipher: C, iv: &Iv<Self>) -> Self
Initialize value using
inner
and iv
array.§fn inner_iv_slice_init(
inner: Self::Inner,
iv: &[u8],
) -> Result<Self, InvalidLength>
fn inner_iv_slice_init( inner: Self::Inner, iv: &[u8], ) -> Result<Self, InvalidLength>
Initialize value using
inner
and iv
slice.Auto Trait Implementations§
impl<C> Freeze for Decryptor<C>
impl<C> RefUnwindSafe for Decryptor<C>where
C: RefUnwindSafe,
<<C as BlockSizeUser>::BlockSize as ArrayLength<u8>>::ArrayType: RefUnwindSafe,
impl<C> Send for Decryptor<C>where
C: Send,
impl<C> Sync for Decryptor<C>where
C: Sync,
impl<C> Unpin for Decryptor<C>
impl<C> UnwindSafe for Decryptor<C>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more