pub trait KeyEn: Serialize + Sized {
    fn encode_key(&self) -> Box<[u8]> { ... }
}
Expand description

Methods used to encode the KEY.

Provided methods

Encode original key type to bytes.

Implementors