pub trait CheckDecryptionKey {
    // Required method
    fn check_decryption_key(
        &mut self,
        master_key: &KeyingMaterial,
        accept_no_keys: Option<bool>
    ) -> bool;
}

Required Methods§

source

fn check_decryption_key( &mut self, master_key: &KeyingMaterial, accept_no_keys: Option<bool> ) -> bool

Implementors§