pub trait CertificateStore {
// Required method
fn find(&self, ri: RecipientIdentifier) -> Option<Certificate>;
}Expand description
Certificate store trait
Required Methods§
sourcefn find(&self, ri: RecipientIdentifier) -> Option<Certificate>
fn find(&self, ri: RecipientIdentifier) -> Option<Certificate>
Find a certificate by recipient identifier.