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§
Source§impl<'de> Deserialize<'de> for SignHash
impl<'de> Deserialize<'de> for SignHash
Source§fn 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
Source§impl Serialize for SignHash
impl Serialize for SignHash
Source§fn 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 StructuralPartialEq for SignHash
Auto Trait Implementations§
impl Freeze for SignHash
impl RefUnwindSafe for SignHash
impl Send for SignHash
impl Sync for SignHash
impl Unpin for SignHash
impl UnwindSafe for SignHash
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
Mutably borrows from an owned value. Read more