pub enum SignatureAlgorithm {
    RsaSha1,
    RsaSha256,
    RsaSha384,
    RsaSha512,
    EcdsaSha256,
    EcdsaSha384,
    Ed25519,
    NoSignature(DigestAlgorithm),
}
Expand description

An algorithm used to digitally sign content.

Instances can be converted to/from Oid via From/Into.

Similarly, instances can be converted to/from an ASN.1 AlgorithmIdentifier.

It is also possible to obtain a signature::VerificationAlgorithm from an instance. This type can perform actual cryptographic verification that was signed with this algorithm.

Variants§

§

RsaSha1

SHA-1 with RSA encryption.

Corresponds to OID 1.2.840.113549.1.1.5.

§

RsaSha256

SHA-256 with RSA encryption.

Corresponds to OID 1.2.840.113549.1.1.11.

§

RsaSha384

SHA-384 with RSA encryption.

Corresponds to OID 1.2.840.113549.1.1.12.

§

RsaSha512

SHA-512 with RSA encryption.

Corresponds to OID 1.2.840.113549.1.1.13.

§

EcdsaSha256

ECDSA with SHA-256.

Corresponds to OID 1.2.840.10045.4.3.2.

§

EcdsaSha384

ECDSA with SHA-384.

Corresponds to OID 1.2.840.10045.4.3.3.

§

Ed25519

ED25519

Corresponds to OID 1.3.101.112.

§

NoSignature(DigestAlgorithm)

No signature with digest algorithm

Corresponds to OID 1.3.6.1.5.5.7.6.2

Implementations§

source§

impl SignatureAlgorithm

source

pub fn from_oid_and_digest_algorithm( oid: &Oid, digest_algorithm: DigestAlgorithm ) -> Result<Self, Error>

Attempt to resolve an instance from an OID, known KeyAlgorithm, and optional DigestAlgorithm.

Signature algorithm OIDs in the wild are typically either:

a) an OID that denotes the key algorithm and corresponding digest format (what this enumeration represents) b) an OID that denotes just the key algorithm.

What this function does is attempt to construct an instance from any OID. If the OID defines a key + digest algorithm, we get a SignatureAlgorithm from that. If we get a key algorithm we combine with the provided DigestAlgorithm to resolve an appropriate SignatureAlgorithm.

source

pub fn from_digest_algorithm(digest_algorithm: DigestAlgorithm) -> Self

Creates an instance with the noSignature mechanism and DigestAlgorithm

source

pub fn resolve_verification_algorithm( &self, key_algorithm: KeyAlgorithm ) -> Result<&'static dyn VerificationAlgorithm, Error>

Attempt to resolve the verification algorithm using info about the signing key algorithm.

Only specific combinations of methods are supported. e.g. you can only use RSA verification with RSA signing keys. Same for ECDSA and ED25519.

source

pub fn digest_algorithm(&self) -> Option<DigestAlgorithm>

Resolve the DigestAlgorithm for this signature algorithm.

Trait Implementations§

source§

impl Clone for SignatureAlgorithm

source§

fn clone(&self) -> SignatureAlgorithm

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SignatureAlgorithm

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for SignatureAlgorithm

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<SignatureAlgorithm> for AlgorithmIdentifier

source§

fn from(alg: SignatureAlgorithm) -> Self

Converts to this type from the input type.
source§

impl From<SignatureAlgorithm> for Oid

source§

fn from(alg: SignatureAlgorithm) -> Self

Converts to this type from the input type.
source§

impl PartialEq for SignatureAlgorithm

source§

fn eq(&self, other: &SignatureAlgorithm) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<&AlgorithmIdentifier> for SignatureAlgorithm

§

type Error = X509CertificateError

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

fn try_from(v: &AlgorithmIdentifier) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<&Oid> for SignatureAlgorithm

§

type Error = X509CertificateError

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

fn try_from(v: &Oid) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl Copy for SignatureAlgorithm

source§

impl Eq for SignatureAlgorithm

source§

impl StructuralEq for SignatureAlgorithm

source§

impl StructuralPartialEq for SignatureAlgorithm

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.