pub trait GetCipherEngine {
    fn get_cipher_engine(&self) -> &EnvelopeCipher<Box<dyn KeyProvider>>;
}
Expand description

Trait for allowing clients to access the cipher engine for encrypting records and metadata

Required Methods

Implementors