Trait sop::InlineVerify

source ·
pub trait InlineVerify<'a> {
    fn not_before(
        self: Box<Self>,
        t: SystemTime
    ) -> Box<dyn InlineVerify<'a> + 'a>; fn not_after(
        self: Box<Self>,
        t: SystemTime
    ) -> Box<dyn InlineVerify<'a> + 'a>; fn cert(
        self: Box<Self>,
        cert: &mut (dyn Read + Send + Sync)
    ) -> Result<Box<dyn InlineVerify<'a> + 'a>>; fn certs(
        self: Box<Self>,
        certs: &mut (dyn Read + Send + Sync)
    ) -> Result<Box<dyn InlineVerify<'a> + 'a>>; fn message(
        self: Box<Self>,
        data: &'a mut (dyn Read + Send + Sync)
    ) -> Result<Box<dyn ReadyWithResult<Vec<Verification>> + 'a>>; }
Expand description

Builder for SOP::inline_verify.

Required Methods§

Makes SOP consider signatures before this date invalid.

Makes SOP consider signatures after this date invalid.

Adds the verification cert.

Adds the verification certs.

Like Verify::cert, but for multiple certs.

Verifies an Inline-Signed Message.

Implementors§