[−][src]Struct jwt_compact_preview::alg::Ed25519
Integrity algorithm using digital signatures on the Ed25519 elliptic curve.
The name of the algorithm is specified as EdDSA as per the IANA registry.
Use with_specific_name() to switch to non-standard Ed25519.
This type is available if the crate is built with the ed25519-compact feature.
Implementations
impl Ed25519[src]
pub fn with_specific_name() -> Renamed<Self>[src]
Creates an algorithm instance with the algorithm name specified as Ed25519.
This is a non-standard name, but it is used in some apps.
pub fn generate<R: CryptoRng + RngCore>(
&self,
rng: &mut R
) -> (Ed25519SigningKey, Ed25519VerifyingKey)[src]
&self,
rng: &mut R
) -> (Ed25519SigningKey, Ed25519VerifyingKey)
Generate a new key pair.
Trait Implementations
impl Algorithm for Ed25519[src]
type SigningKey = Ed25519SigningKey
Key used when issuing new tokens.
type VerifyingKey = Ed25519VerifyingKey
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 Clone for Ed25519[src]
impl Copy for Ed25519[src]
impl Debug for Ed25519[src]
impl Eq for Ed25519[src]
impl Hash for Ed25519[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<Ed25519> for Ed25519[src]
impl StructuralEq for Ed25519[src]
impl StructuralPartialEq for Ed25519[src]
Auto Trait Implementations
impl RefUnwindSafe for Ed25519
impl Send for Ed25519
impl Sync for Ed25519
impl Unpin for Ed25519
impl UnwindSafe for Ed25519
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>,