[−][src]Struct jwt_compact_preview::alg::Es256k
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 secp256k1 feature.
Implementations
impl<D> Es256k<D> where
D: Digest<OutputSize = U32> + Default, [src]
D: Digest<OutputSize = U32> + Default,
pub fn new(context: Secp256k1<All>) -> Self[src]
Creates a new algorithm instance.
This is a (moderately) expensive operation, so if necessary, the algorithm should
be clone()d rather than created anew.
impl Es256k[src]
pub fn generate<R: CryptoRng + RngCore>(
&self,
rng: &mut R
) -> (Es256kSigningKey, Es256kVerifyingKey)[src]
&self,
rng: &mut R
) -> (Es256kSigningKey, Es256kVerifyingKey)
Generate a new key pair.
Trait Implementations
impl<D> Algorithm for Es256k<D> where
D: Digest<OutputSize = U32> + Default, [src]
D: Digest<OutputSize = U32> + Default,
type SigningKey = Es256kSigningKey
Key used when issuing new tokens.
type VerifyingKey = Es256kVerifyingKey
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<D: Debug> Debug for Es256k<D>[src]
impl<D> Default for Es256k<D> where
D: Digest<OutputSize = U32> + Default, [src]
D: Digest<OutputSize = U32> + Default,
Auto Trait Implementations
impl<D> RefUnwindSafe for Es256k<D> where
D: RefUnwindSafe,
D: RefUnwindSafe,
impl<D> Send for Es256k<D> where
D: Send,
D: Send,
impl<D> Sync for Es256k<D> where
D: Sync,
D: Sync,
impl<D> Unpin for Es256k<D> where
D: Unpin,
D: Unpin,
impl<D> UnwindSafe for Es256k<D> where
D: UnwindSafe,
D: 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,
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>,