pub trait BoundKey<N: NonceSequence>: Debug {
// Required methods
fn new(key: UnboundKey, nonce_sequence: N) -> Self;
fn algorithm(&self) -> &'static Algorithm;
}
Expand description
An AEAD key bound to a nonce sequence.
Required Methods§
sourcefn new(key: UnboundKey, nonce_sequence: N) -> Self
fn new(key: UnboundKey, nonce_sequence: N) -> Self
Constructs a new key from the given UnboundKey
and NonceSequence
.
Object Safety§
This trait is not object safe.