[−][src]Enum sequoia_openpgp::constants::HashAlgorithm
The OpenPGP hash algorithms as defined in Section 9.4 of RFC 4880.
Variants
MD5
Rivest et.al. message digest 5.
SHA1
NIST Secure Hash Algorithm (deprecated)
RipeMD
RIPEMD-160
SHA256
256-bit version of SHA2
SHA384
384-bit version of SHA2
SHA512
512-bit version of SHA2
SHA224
224-bit version of SHA2
Private(u8)
Private hash algorithm identifier.
Unknown(u8)
Unknown hash algorithm identifier.
Methods
impl HashAlgorithm
[src]
pub fn is_supported(self) -> bool
[src]
Whether Sequoia supports this algorithm.
pub fn context(self) -> Result<Box<dyn Hash>>
[src]
Creates a new Nettle hash context for this algorith. Fails if Sequoia
does not support this algorithm. See is_supported
.
pub fn oid(self) -> Result<&'static [u8]>
[src]
Returns the ASN.1 OID of this hash algorithm.
Trait Implementations
impl From<u8> for HashAlgorithm
[src]
impl From<HashAlgorithm> for u8
[src]
fn from(h: HashAlgorithm) -> u8
[src]
impl Eq for HashAlgorithm
[src]
impl PartialOrd<HashAlgorithm> for HashAlgorithm
[src]
fn partial_cmp(&self, other: &HashAlgorithm) -> Option<Ordering>
[src]
fn lt(&self, other: &HashAlgorithm) -> bool
[src]
fn le(&self, other: &HashAlgorithm) -> bool
[src]
fn gt(&self, other: &HashAlgorithm) -> bool
[src]
fn ge(&self, other: &HashAlgorithm) -> bool
[src]
impl Copy for HashAlgorithm
[src]
impl PartialEq<HashAlgorithm> for HashAlgorithm
[src]
fn eq(&self, other: &HashAlgorithm) -> bool
[src]
fn ne(&self, other: &HashAlgorithm) -> bool
[src]
impl Clone for HashAlgorithm
[src]
fn clone(&self) -> HashAlgorithm
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Ord for HashAlgorithm
[src]
fn cmp(&self, other: &HashAlgorithm) -> Ordering
[src]
fn max(self, other: Self) -> Self
1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
Compares and returns the minimum of two values. Read more
impl Display for HashAlgorithm
[src]
impl Hash for HashAlgorithm
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Debug for HashAlgorithm
[src]
impl FromStr for HashAlgorithm
[src]
type Err = ()
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Self, ()>
[src]
impl Arbitrary for HashAlgorithm
[src]
Auto Trait Implementations
impl Send for HashAlgorithm
impl Sync for HashAlgorithm
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,