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

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

Required Associated Constants

Required Methods

Implementors