Struct nettle::aead::Eax[][src]

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

M.Bellare et.al EAX mode of operation.

Implementations

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

pub const DIGEST_SIZE: usize[src]

Size of a EAX digest in bytes.

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

Creates a new EAX instance with secret key and public nonce.

Trait Implementations

impl<C: Cipher> Aead for Eax<C>[src]

Auto Trait Implementations

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

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

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

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

impl<C> UnwindSafe for Eax<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.