pub struct EcbCs3Dec<C: BlockDecrypt> { /* private fields */ }Expand description
The ECB-CS-3 ciphertext stealing mode decryptor.
Trait Implementations§
Source§impl<C: BlockDecrypt> Decrypt for EcbCs3Dec<C>
impl<C: BlockDecrypt> Decrypt for EcbCs3Dec<C>
Source§impl<C: BlockDecrypt> InnerInit for EcbCs3Dec<C>
impl<C: BlockDecrypt> InnerInit for EcbCs3Dec<C>
Source§fn inner_init(cipher: Self::Inner) -> Self
fn inner_init(cipher: Self::Inner) -> Self
Initialize value from the
inner.Source§impl<C: BlockDecrypt> IvSizeUser for EcbCs3Dec<C>
impl<C: BlockDecrypt> IvSizeUser for EcbCs3Dec<C>
Auto Trait Implementations§
impl<C> Freeze for EcbCs3Dec<C>where
C: Freeze,
impl<C> RefUnwindSafe for EcbCs3Dec<C>where
C: RefUnwindSafe,
impl<C> Send for EcbCs3Dec<C>where
C: Send,
impl<C> Sync for EcbCs3Dec<C>where
C: Sync,
impl<C> Unpin for EcbCs3Dec<C>where
C: Unpin,
impl<C> UnwindSafe for EcbCs3Dec<C>where
C: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> KeyInit for T
impl<T> KeyInit for T
Source§fn new(key: &GenericArray<u8, <T as KeySizeUser>::KeySize>) -> T
fn new(key: &GenericArray<u8, <T as KeySizeUser>::KeySize>) -> T
Create new value from fixed size key.
Source§fn new_from_slice(key: &[u8]) -> Result<T, InvalidLength>
fn new_from_slice(key: &[u8]) -> Result<T, InvalidLength>
Create new value from variable size key.