pub trait BlockCipher:
'static
+ Debug
+ Sealed {
// Required methods
fn id(&self) -> BlockCipherId;
fn key_len(&self) -> usize;
}
Expand description
A key wrap block cipher.
Required Methods§
Sourcefn id(&self) -> BlockCipherId
fn id(&self) -> BlockCipherId
The block cipher identifier.