Enum mas_jose::jwa::AsymmetricSigningKey

source ·
#[non_exhaustive]
pub enum AsymmetricSigningKey { Rs256(Rs256SigningKey), Rs384(Rs384SigningKey), Rs512(Rs512SigningKey), Ps256(Ps256SigningKey), Ps384(Ps384SigningKey), Ps512(Ps512SigningKey), Es256(Es256SigningKey), Es384(Es384SigningKey), Es256K(Es256KSigningKey), }
Expand description

An enum of all supported asymmetric signature algorithms verifying keys

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.

Implementations§

source§

impl AsymmetricSigningKey

source

pub fn rs256(key: RsaPrivateKey) -> Self

Create a new signing key with the RS256 algorithm from the given RSA private key.

source

pub fn rs384(key: RsaPrivateKey) -> Self

Create a new signing key with the RS384 algorithm from the given RSA private key.

source

pub fn rs512(key: RsaPrivateKey) -> Self

Create a new signing key with the RS512 algorithm from the given RSA private key.

source

pub fn ps256(key: RsaPrivateKey) -> Self

Create a new signing key with the PS256 algorithm from the given RSA private key.

source

pub fn ps384(key: RsaPrivateKey) -> Self

Create a new signing key with the PS384 algorithm from the given RSA private key.

source

pub fn ps512(key: RsaPrivateKey) -> Self

Create a new signing key with the PS512 algorithm from the given RSA private key.

source

pub fn es256(key: SecretKey<NistP256>) -> Self

Create a new signing key with the ES256 algorithm from the given ECDSA private key.

source

pub fn es384(key: SecretKey<NistP384>) -> Self

Create a new signing key with the ES384 algorithm from the given ECDSA private key.

source

pub fn es256k(key: SecretKey<Secp256k1>) -> Self

Create a new signing key with the ES256K algorithm from the given ECDSA private key.

source

pub fn from_jwk_and_alg( params: &JsonWebKeyPrivateParameters, alg: &JsonWebSignatureAlg, ) -> Result<Self, AsymmetricKeyFromJwkError>

Create a new signing key for the given algorithm from the given private JWK parameters.

§Errors

Returns an error if the key parameters are not suitable for the given algorithm.

Trait Implementations§

source§

impl From<SigningKey<NistP256>> for AsymmetricSigningKey

source§

fn from(key: Es256SigningKey) -> Self

Converts to this type from the input type.
source§

impl From<SigningKey<NistP384>> for AsymmetricSigningKey

source§

fn from(key: Es384SigningKey) -> Self

Converts to this type from the input type.
source§

impl From<SigningKey<Secp256k1>> for AsymmetricSigningKey

source§

fn from(key: Es256KSigningKey) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V