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
impl SignatureAlgorithm
Sourcepub fn from_oid_and_digest_algorithm(
oid: &Oid,
digest_algorithm: DigestAlgorithm,
) -> Result<Self, Error>
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.
Sourcepub fn from_digest_algorithm(digest_algorithm: DigestAlgorithm) -> Self
pub fn from_digest_algorithm(digest_algorithm: DigestAlgorithm) -> Self
Creates an instance with the noSignature mechanism and DigestAlgorithm
Sourcepub fn resolve_verification_algorithm(
&self,
key_algorithm: KeyAlgorithm,
) -> Result<&'static dyn VerificationAlgorithm, Error>
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.
Sourcepub fn digest_algorithm(&self) -> Option<DigestAlgorithm>
pub fn digest_algorithm(&self) -> Option<DigestAlgorithm>
Resolve the DigestAlgorithm for this signature algorithm.
Trait Implementations§
Source§impl Clone for SignatureAlgorithm
impl Clone for SignatureAlgorithm
Source§fn clone(&self) -> SignatureAlgorithm
fn clone(&self) -> SignatureAlgorithm
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for SignatureAlgorithm
impl Debug for SignatureAlgorithm
Source§impl Display for SignatureAlgorithm
impl Display for SignatureAlgorithm
Source§impl From<SignatureAlgorithm> for AlgorithmIdentifier
impl From<SignatureAlgorithm> for AlgorithmIdentifier
Source§fn from(alg: SignatureAlgorithm) -> Self
fn from(alg: SignatureAlgorithm) -> Self
Source§impl From<SignatureAlgorithm> for Oid
impl From<SignatureAlgorithm> for Oid
Source§fn from(alg: SignatureAlgorithm) -> Self
fn from(alg: SignatureAlgorithm) -> Self
Source§impl PartialEq for SignatureAlgorithm
impl PartialEq for SignatureAlgorithm
Source§impl TryFrom<&AlgorithmIdentifier> for SignatureAlgorithm
impl TryFrom<&AlgorithmIdentifier> for SignatureAlgorithm
Source§type Error = X509CertificateError
type Error = X509CertificateError
Source§impl TryFrom<&Oid> for SignatureAlgorithm
impl TryFrom<&Oid> for SignatureAlgorithm
impl Copy for SignatureAlgorithm
impl Eq for SignatureAlgorithm
impl StructuralPartialEq for SignatureAlgorithm
Auto Trait Implementations§
impl Freeze for SignatureAlgorithm
impl RefUnwindSafe for SignatureAlgorithm
impl Send for SignatureAlgorithm
impl Sync for SignatureAlgorithm
impl Unpin for SignatureAlgorithm
impl UnwindSafe for SignatureAlgorithm
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)