[][src]Struct ring::aead::SealingKey

pub struct SealingKey { /* fields omitted */ }

A key for encrypting and signing (“sealing”) data.

C analog: EVP_AEAD_CTX with direction evp_aead_seal.

Go analog: AEAD

Methods

impl SealingKey
[src]

C analogs: EVP_AEAD_CTX_init_with_direction with direction evp_aead_seal, EVP_AEAD_CTX_init.

Go analog: crypto.aes.NewCipher

The key's AEAD algorithm.

C analog: EVP_AEAD_CTX.aead

Auto Trait Implementations

impl Send for SealingKey

impl Sync for SealingKey

Blanket Implementations

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> From for T
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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