[−][src]Struct jwt_compact_preview::alg::Hs512
HS512 signing algorithm.
See RFC 7518 for the algorithm specification.
Trait Implementations
impl Algorithm for Hs512[src]
type SigningKey = Hs512Key
Key used when issuing new tokens.
type VerifyingKey = Hs512Key
Key used when verifying tokens. May coincide with SigningKey for symmetric algorithms (e.g., HS*). Read more
type Signature = Output<Hmac<Sha512>>
Signature produced by the algorithm.
fn name(&self) -> Cow<'static, str>[src]
fn sign(
&self,
signing_key: &Self::SigningKey,
message: &[u8]
) -> Self::Signature[src]
&self,
signing_key: &Self::SigningKey,
message: &[u8]
) -> Self::Signature
fn verify_signature(
&self,
signature: &Self::Signature,
verifying_key: &Self::VerifyingKey,
message: &[u8]
) -> bool[src]
&self,
signature: &Self::Signature,
verifying_key: &Self::VerifyingKey,
message: &[u8]
) -> bool
impl Clone for Hs512[src]
impl Copy for Hs512[src]
impl Debug for Hs512[src]
impl Eq for Hs512[src]
impl Hash for Hs512[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<Hs512> for Hs512[src]
impl StructuralEq for Hs512[src]
impl StructuralPartialEq for Hs512[src]
Auto Trait Implementations
impl RefUnwindSafe for Hs512
impl Send for Hs512
impl Sync for Hs512
impl Unpin for Hs512
impl UnwindSafe for Hs512
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> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
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>,