[][src]Struct sequoia_openpgp::parse::stream::DetachedVerifierBuilder

pub struct DetachedVerifierBuilder<'a> { /* fields omitted */ }

A builder for DetachedVerifier.

This allows the customization of DetachedVerifier, which can be built using DetachedVerifierBuilder::with_policy.

Implementations

impl<'a> DetachedVerifierBuilder<'a>[src]

pub fn mapping(self, enabled: bool) -> Self[src]

Enables mapping.

If mapping is enabled, the packet parser will create a Map of the packets that can be inspected in VerificationHelper::inspect. Note that this buffers the packets contents, and is not recommended unless you know that the packets are small.

Examples

use sequoia_openpgp as openpgp;
use openpgp::parse::{Parse, stream::*};
use openpgp::policy::StandardPolicy;

let p = &StandardPolicy::new();

struct Helper {};
impl VerificationHelper for Helper {
    // ...
}

let message =
    // ...

let h = Helper {};
let mut v = DetachedVerifierBuilder::from_bytes(message)?
    .mapping(true)
    .with_policy(p, None, h)?;

pub fn with_policy<T, H>(
    self,
    policy: &'a dyn Policy,
    time: T,
    helper: H
) -> Result<DetachedVerifier<'a, H>> where
    H: VerificationHelper,
    T: Into<Option<SystemTime>>, 
[src]

Creates the DetachedVerifier.

Signature verifications are done under the given policy and relative to time time, or the current time, if time is None. helper is the VerificationHelper to use. VerificationHelper::check will be called with a MessageStructure containing exactly one layer, a signature group.

Examples

use sequoia_openpgp as openpgp;
use openpgp::parse::{Parse, stream::*};
use openpgp::policy::StandardPolicy;

let p = &StandardPolicy::new();

struct Helper {};
impl VerificationHelper for Helper {
    // ...
}

let message =
    // ...

let h = Helper {};
let mut v = DetachedVerifierBuilder::from_bytes(message)?
    // Customize the `DetachedVerifier` here.
    .with_policy(p, None, h)?;

Trait Implementations

impl<'a> Parse<'a, DetachedVerifierBuilder<'a>> for DetachedVerifierBuilder<'a>[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.