[−][src]Struct jwt_compact_preview::alg::Ps256
RSASSA-PSS with SHA-256 as a hash function
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Ps256
impl Send for Ps256
impl Sync for Ps256
impl Unpin for Ps256
impl UnwindSafe for Ps256
Blanket Implementations
impl<T> Algorithm for T where
T: RsaVariant, [src]
T: RsaVariant,
type SigningKey = RsaSigningKey
Key used when issuing new tokens.
type VerifyingKey = RsaVerifyingKey
Key used when verifying tokens. May coincide with SigningKey for symmetric algorithms (e.g., HS*). Read more
type Signature = Signature
Signature produced by the algorithm.
fn name(&Self) -> Cow<'static, str>[src]
fn sign(
&Self,
&<T as Algorithm>::SigningKey,
&[u8]
) -> <T as Algorithm>::Signature[src]
&Self,
&<T as Algorithm>::SigningKey,
&[u8]
) -> <T as Algorithm>::Signature
fn verify_signature(
&Self,
&<T as Algorithm>::Signature,
&<T as Algorithm>::VerifyingKey,
&[u8]
) -> bool[src]
&Self,
&<T as Algorithm>::Signature,
&<T as Algorithm>::VerifyingKey,
&[u8]
) -> bool
impl<A> AlgorithmExt for A where
A: Algorithm, [src]
A: Algorithm,
fn token<T>(
&Self,
Header,
&Claims<T>,
&<A as Algorithm>::SigningKey
) -> Result<String, CreationError> where
T: Serialize, [src]
&Self,
Header,
&Claims<T>,
&<A as Algorithm>::SigningKey
) -> Result<String, CreationError> where
T: Serialize,
fn compact_token<T>(
&Self,
Header,
&Claims<T>,
&<A as Algorithm>::SigningKey
) -> Result<String, CreationError> where
T: Serialize, [src]
&Self,
Header,
&Claims<T>,
&<A as Algorithm>::SigningKey
) -> Result<String, CreationError> where
T: Serialize,
fn validate_integrity<T>(
&Self,
&UntrustedToken<'_>,
&<A as Algorithm>::VerifyingKey
) -> Result<Token<T>, ValidationError> where
T: DeserializeOwned, [src]
&Self,
&UntrustedToken<'_>,
&<A as Algorithm>::VerifyingKey
) -> Result<Token<T>, ValidationError> where
T: DeserializeOwned,
fn validate_for_signed_token<T>(
&Self,
&UntrustedToken<'_>,
&<A as Algorithm>::VerifyingKey
) -> Result<SignedToken<A, T>, ValidationError> where
T: DeserializeOwned, [src]
&Self,
&UntrustedToken<'_>,
&<A as Algorithm>::VerifyingKey
) -> Result<SignedToken<A, T>, ValidationError> where
T: DeserializeOwned,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
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]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,