pub trait CipherTextBlock: Default + Copy + Debug {
    const BLOCK_SIZE: usize;

    fn to_bytes(self) -> Vec<u8>;
    fn from_bytes(data: &[u8]) -> Result<Self, ParseError>;
    fn default_in_place(&mut self);
}

Required Associated Constants§

Required Methods§

Implementors§