Struct evercrypt::aead::Aead[][src]

pub struct Aead { /* fields omitted */ }
Expand description

The Aead struct allows to re-use a key without having to initialize it every time.

Implementations

Create a new Aead cipher with the given Mode alg and key k. If the algorithm is not supported or the state generation fails, this function returns an Error.

To get an Aead instance without setting a key immediately see init.

Initialize a new Aead object without a key. Use set_key to do so later.

Set the key for this instance. This consumes the Aead and returns a new instance with the key.

Generate a new random key for this instance. This consumes the Aead and returns a new instance with the key.

Generate a random key.

Generate a nonce.

Get the nonce size of this Aead in bytes.

Get the key size of this Aead in bytes.

Get the tag size of this Aead in bytes.

Encrypt with the algorithm and key of this Aead. Returns (ctxt, tag) or an Error.

Encrypt with the algorithm and key of this Aead. Returns (ctxt || tag) or an Error. This is more efficient if the tag needs to be appended to the cipher text.

Encrypt with the algorithm and key of this Aead. Returns the cipher text in the payload and a tag or an Error.

Decrypt with the algorithm and key of this Aead. Returns msg or an Error.

Decrypt with the algorithm and key of this Aead. Returns msg or an Error. This takes the combined ctxt || tag as input and might be more efficient than decrypt.

Decrypt with the algorithm and key of this Aead.

Returns an Error if decryption failed. The decrypted payload is written into payload.

Trait Implementations

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.