[][src]Struct picky::jose::jwt::JwtValidator

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

Methods

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

pub const fn strict(
    public_key: &'a PublicKey,
    current_date: &'a JwtDate
) -> Self
[src]

Check signature and the registered exp and nbf claims. If a claim is missing token is rejected.

pub const fn lenient(
    public_key: &'a PublicKey,
    current_date: &'a JwtDate
) -> Self
[src]

Check signature and the registered exp and nbf claims. Token isn't rejected if a claim is missing.

pub const fn signature_only(public_key: &'a PublicKey) -> Self[src]

Check signature only. No registered claim is checked.

pub const fn dangerous() -> Self[src]

No check.

pub fn public_key(self, public_key: &'a PublicKey) -> Self[src]

pub fn current_date(self, current_date: &'a JwtDate) -> Self[src]

pub fn expiration_check_required(self) -> Self[src]

pub fn expiration_check_optional(self) -> Self[src]

pub fn expiration_check_ignored(self) -> Self[src]

pub fn not_before_check_required(self) -> Self[src]

pub fn not_before_check_optional(self) -> Self[src]

pub fn not_before_check_ignored(self) -> Self[src]

Trait Implementations

impl<'a> Clone for JwtValidator<'a>[src]

impl<'a> Debug for JwtValidator<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for JwtValidator<'a>

impl<'a> Send for JwtValidator<'a>

impl<'a> Sync for JwtValidator<'a>

impl<'a> Unpin for JwtValidator<'a>

impl<'a> UnwindSafe for JwtValidator<'a>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,