Trait ore_rs::CipherTextBlock
source · 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);
}