pub struct VerificationOptions {
pub reject_before: Option<UnixTimeStamp>,
pub accept_future: bool,
pub required_subject: Option<String>,
pub required_key_id: Option<String>,
pub required_public_key: Option<String>,
pub required_nonce: Option<String>,
pub allowed_issuers: Option<HashSet<String>>,
pub allowed_audiences: Option<HashSet<String>>,
pub time_tolerance: Option<Duration>,
pub max_validity: Option<Duration>,
pub max_token_length: Option<usize>,
pub max_header_length: Option<usize>,
}
Expand description
Additional features to enable during verification. Signatures and token expiration are already automatically verified.
Fields§
§reject_before: Option<UnixTimeStamp>
Reject tokens created before the given date
For a given user, the time of the last successful authentication can be
kept in a database, and reject_before
can then be used to reject
older (replayed) tokens.
accept_future: bool
Accept tokens created with a date in the future
required_subject: Option<String>
Require a specific subject to be present
required_key_id: Option<String>
Require a specific key identifier to be present
required_public_key: Option<String>
Require a specific public key to be present
required_nonce: Option<String>
Require a specific nonce to be present
allowed_issuers: Option<HashSet<String>>
Require the issuer to be present in the set
allowed_audiences: Option<HashSet<String>>
Require the audience to be present in the set
time_tolerance: Option<Duration>
How much clock drift to tolerate when verifying token timestamps
max_validity: Option<Duration>
Reject tokens created more than max_validity
ago
max_token_length: Option<usize>
Maximum token length to accept
max_header_length: Option<usize>
Maximum unsafe, untrusted, unverified JWT header length to accept
Trait Implementations§
Source§impl Clone for VerificationOptions
impl Clone for VerificationOptions
Source§fn clone(&self) -> VerificationOptions
fn clone(&self) -> VerificationOptions
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more