Enum parsec_interface::operations::psa_algorithm::AsymmetricSignature [−][src]
pub enum AsymmetricSignature { RsaPkcs1v15Sign { hash_alg: SignHash, }, RsaPkcs1v15SignRaw, RsaPss { hash_alg: SignHash, }, Ecdsa { hash_alg: SignHash, }, EcdsaAny, DeterministicEcdsa { hash_alg: SignHash, }, }
Expand description
Enumeration of asymmetric signing algorithms supported.
Variants
RSA PKCS#1 v1.5 signature with hashing.
Fields of RsaPkcs1v15Sign
hash_alg: SignHash
A hash algorithm to use.
Raw PKCS#1 v1.5 signature.
RSA PSS signature with hashing.
Fields of RsaPss
hash_alg: SignHash
A hash algorithm to use.
ECDSA signature with hashing.
Fields of Ecdsa
hash_alg: SignHash
A hash algorithm to use.
ECDSA signature without hashing.
Deterministic ECDSA signature with hashing.
Fields of DeterministicEcdsa
hash_alg: SignHash
A hash algorithm to use.
Implementations
Check if the alg given for a cryptographic operation is permitted to be used with this algorithm as a policy
Example
use psa_crypto::types::algorithm::{AsymmetricSignature, SignHash, Hash}; assert!(AsymmetricSignature::RsaPkcs1v15Sign { hash_alg: SignHash::Any } .is_alg_permitted(AsymmetricSignature::RsaPkcs1v15Sign { hash_alg: SignHash::Specific(Hash::Sha1) }) ); assert!(!AsymmetricSignature::RsaPkcs1v15Sign { hash_alg: SignHash::Specific(Hash::Sha256) } .is_alg_permitted(AsymmetricSignature::RsaPkcs1v15Sign { hash_alg: SignHash::Specific(Hash::Sha1) }) );
Check if this is a RSA algorithm
Check if this is an ECC algorithm
Determines if the given hash length is compatible with the asymmetric signature scheme
Trait Implementations
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<AsymmetricSignature, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<AsymmetricSignature, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Performs the conversion.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for AsymmetricSignature
impl Send for AsymmetricSignature
impl Sync for AsymmetricSignature
impl Unpin for AsymmetricSignature
impl UnwindSafe for AsymmetricSignature
Blanket Implementations
Mutably borrows from an owned value. Read more