pub trait StreamCipherLioness: KeyStream {
// Required method
fn new_streamcipher_lioness(k: &[u8; 32]) -> Self;
}Expand description
Adapt a given crypto::symmetriccipher::KeyStream
to lioness.
Required Methods§
fn new_streamcipher_lioness(k: &[u8; 32]) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.