pub trait EnclaveKey {
    type Error;

    fn get_align_key(&self) -> Result<AlignKey128bit, Self::Error>;

    fn get_key(&self) -> Result<Key128bit, Self::Error> { ... }
}

Required Associated Types

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors