Enum parsec_interface::operations::psa_algorithm::SignHash [−][src]
pub enum SignHash { Specific(Hash), Any, }
Expand description
Enumeration of hash algorithms used in “hash-and-sign” algorithms.
Variants
Specific(Hash)
A specific hash algorithm to choose.
In a hash-and-sign algorithm policy, allow any hash algorithm. This value must not be used to build an algorithm specification to perform an operation. It is only valid to build policies, for signature algorithms.
Implementations
Check if the alg given for a cryptographic operation is permitted to be used with this algorithm as a policy
Trait Implementations
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<SignHash, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<SignHash, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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 SignHash
impl UnwindSafe for SignHash
Blanket Implementations
Mutably borrows from an owned value. Read more