Trait sop::ExtractCert

source ·
pub trait ExtractCert<'a> {
    fn no_armor(self: Box<Self>) -> Box<dyn ExtractCert<'a> + 'a>;
    fn key(
        self: Box<Self>,
        key: &mut (dyn Read + Send + Sync)
    ) -> Result<Box<dyn Ready + 'a>>; fn keys(
        self: Box<Self>,
        keys: &mut (dyn Read + Send + Sync)
    ) -> Result<Box<dyn Ready + 'a>>; }
Expand description

Builder for SOP::extract_cert.

Required Methods§

Disables armor encoding.

Extracts the cert from key.

Extracts the certs from keys.

Implementors§