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.
Get the nonce 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
.