Enum parsec_interface::operations::psa_algorithm::SignHash
source · [−]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.
Any
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
Trait Implementations
sourceimpl<'de> Deserialize<'de> for SignHash
impl<'de> Deserialize<'de> for SignHash
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<SignHash, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
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
sourceimpl PartialEq<SignHash> for SignHash
impl PartialEq<SignHash> for SignHash
sourceimpl Serialize for SignHash
impl Serialize for SignHash
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
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
impl Copy for SignHash
impl Eq for SignHash
impl StructuralEq for SignHash
impl StructuralPartialEq for SignHash
Auto Trait Implementations
impl RefUnwindSafe for SignHash
impl Send for SignHash
impl Sync for SignHash
impl Unpin for SignHash
impl UnwindSafe for SignHash
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more