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.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".