Struct crypto::blockmodes::CbcDecryptor
source · [−]pub struct CbcDecryptor<T, X> { /* private fields */ }
Expand description
CBC decryption mode
Implementations
sourceimpl<T: BlockDecryptor, X: PaddingProcessor> CbcDecryptor<T, X>
impl<T: BlockDecryptor, X: PaddingProcessor> CbcDecryptor<T, X>
Trait Implementations
sourceimpl<T: BlockDecryptor, X: PaddingProcessor> Decryptor for CbcDecryptor<T, X>
impl<T: BlockDecryptor, X: PaddingProcessor> Decryptor for CbcDecryptor<T, X>
fn decrypt(
&mut self,
input: &mut RefReadBuffer<'_>,
output: &mut RefWriteBuffer<'_>,
eof: bool
) -> Result<BufferResult, SymmetricCipherError>
Auto Trait Implementations
impl<T, X> RefUnwindSafe for CbcDecryptor<T, X> where
T: RefUnwindSafe,
X: RefUnwindSafe,
impl<T, X> Send for CbcDecryptor<T, X> where
T: Send,
X: Send,
impl<T, X> Sync for CbcDecryptor<T, X> where
T: Sync,
X: Sync,
impl<T, X> Unpin for CbcDecryptor<T, X> where
T: Unpin,
X: Unpin,
impl<T, X> UnwindSafe for CbcDecryptor<T, X> where
T: UnwindSafe,
X: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more