Struct nettle::mode::Cbc[][src]

pub struct Cbc<C: Cipher> { /* fields omitted */ }

Cipher block chaining mode.

Implementations

impl<C: Cipher> Cbc<C>[src]

pub fn with_encrypt_key(key: &[u8]) -> Result<Self>[src]

Create a new encrypting CBC instance with key.

pub fn with_decrypt_key(key: &[u8]) -> Result<Self>[src]

Create a new decrypting CBC instance with key.

Trait Implementations

impl<C: Cipher> Mode for Cbc<C>[src]

Auto Trait Implementations

impl<C> RefUnwindSafe for Cbc<C> where
    C: RefUnwindSafe
[src]

impl<C> Send for Cbc<C> where
    C: Send
[src]

impl<C> Sync for Cbc<C> where
    C: Sync
[src]

impl<C> Unpin for Cbc<C> where
    C: Unpin
[src]

impl<C> UnwindSafe for Cbc<C> where
    C: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.