Struct nettle::aead::Gcm[][src]

pub struct Gcm<C: Cipher + BlockSizeIs16> { /* fields omitted */ }

Galois/Counter mode (NIST SP800-38D).

Implementations

impl<C: Cipher + BlockSizeIs16> Gcm<C>[src]

pub const DIGEST_SIZE: usize[src]

Size of a GCM digest in bytes.

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

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

Trait Implementations

impl<C: Cipher + BlockSizeIs16> Aead for Gcm<C>[src]

Auto Trait Implementations

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

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

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

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

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