pub struct VerifierBuilder<'a> { /* private fields */ }
Expand description

A builder for Verifier.

This allows the customization of Verifier, which can be built using VerifierBuilder::with_policy.

Implementations§

Changes the amount of buffered data.

By default, we buffer up to 25 megabytes of net message data (see DEFAULT_BUFFER_SIZE). This changes the default.

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 = VerifierBuilder::from_bytes(message)?
    .buffer_size(1 << 12)
    .with_policy(p, None, h)?;

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 = VerifierBuilder::from_bytes(message)?
    .mapping(true)
    .with_policy(p, None, h)?;

Creates the Verifier.

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.

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 = VerifierBuilder::from_bytes(message)?
    // Customize the `Verifier` here.
    .with_policy(p, None, h)?;

Trait Implementations§

Reads from the given reader.
Reads from the given file. Read more
Reads from the given slice. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.