[−][src]Struct jwt_compact_preview::alg::Es256
Algorithm implementing elliptic curve digital signatures (ECDSA) on the secp256k1 curve.
The algorithm does not fix the choice of the message digest algorithm; instead, it is provided as a type parameter. SHA-256 is the default parameter value, but it can be set to any cryptographically secure hash function with 32-byte output (e.g., SHA3-256).
This type is available if the crate is built with the k256 feature.
Implementations
impl<R: CryptoRng + RngCore> Es256<R>[src]
impl<R: CryptoRng + RngCore> Es256<R>[src]
pub fn generate(&mut self) -> (Es256SigningKey, Es256VerifyingKey)[src]
Generate a new key pair.
Trait Implementations
impl<R: CryptoRng + RngCore> Algorithm for Es256<R>[src]
type SigningKey = Es256SigningKey
Key used when issuing new tokens.
type VerifyingKey = Es256VerifyingKey
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,
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<R: Debug + CryptoRng + RngCore> Debug for Es256<R>[src]
Auto Trait Implementations
impl<R> RefUnwindSafe for Es256<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
impl<R> Send for Es256<R> where
R: Send,
R: Send,
impl<R> Sync for Es256<R> where
R: Sync,
R: Sync,
impl<R> Unpin for Es256<R> where
R: Unpin,
R: Unpin,
impl<R> UnwindSafe for Es256<R> where
R: UnwindSafe,
R: UnwindSafe,
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>,