Trait block_cipher_trait::BlockCipherVarKey
[−]
[src]
pub trait BlockCipherVarKey: BlockCipher + Sized { fn new(key: &[u8]) -> Result<Self, InvalidKeyLength>; }
Required Methods
fn new(key: &[u8]) -> Result<Self, InvalidKeyLength>
Implementors
impl<B: BlockCipherFixKey> BlockCipherVarKey for B