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