Enum sequoia_openpgp::types::HashAlgorithm
source · #[non_exhaustive]pub enum HashAlgorithm {
MD5,
SHA1,
RipeMD,
SHA256,
SHA384,
SHA512,
SHA224,
Private(u8),
Unknown(u8),
}Expand description
The OpenPGP hash algorithms as defined in Section 9.4 of RFC 4880.
Note: This enum cannot be exhaustively matched to allow future extensions.
Examples
Use HashAlgorithm to set the preferred hash algorithms on a signature:
use sequoia_openpgp as openpgp;
use openpgp::packet::signature::SignatureBuilder;
use openpgp::types::{HashAlgorithm, SignatureType};
let mut builder = SignatureBuilder::new(SignatureType::DirectKey)
.set_hash_algo(HashAlgorithm::SHA512);Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future 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.
Implementations§
source§impl HashAlgorithm
impl HashAlgorithm
source§impl HashAlgorithm
impl HashAlgorithm
source§impl HashAlgorithm
impl HashAlgorithm
sourcepub fn text_name(&self) -> Result<&str>
pub fn text_name(&self) -> Result<&str>
Returns the text name of this algorithm.
Section 9.4 of RFC 4880 defines a textual representation of hash algorithms. This is used in cleartext signed messages (see Section 7 of RFC 4880).
Examples
assert_eq!(HashAlgorithm::RipeMD.text_name()?, "RIPEMD160");Trait Implementations§
source§impl Clone for HashAlgorithm
impl Clone for HashAlgorithm
source§fn clone(&self) -> HashAlgorithm
fn clone(&self) -> HashAlgorithm
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for HashAlgorithm
impl Debug for HashAlgorithm
source§impl Default for HashAlgorithm
impl Default for HashAlgorithm
source§impl Display for HashAlgorithm
impl Display for HashAlgorithm
source§impl From<HashAlgorithm> for u8
impl From<HashAlgorithm> for u8
source§fn from(h: HashAlgorithm) -> u8
fn from(h: HashAlgorithm) -> u8
Converts to this type from the input type.
source§impl From<u8> for HashAlgorithm
impl From<u8> for HashAlgorithm
source§impl FromStr for HashAlgorithm
impl FromStr for HashAlgorithm
source§impl Hash for HashAlgorithm
impl Hash for HashAlgorithm
source§impl Ord for HashAlgorithm
impl Ord for HashAlgorithm
source§fn cmp(&self, other: &HashAlgorithm) -> Ordering
fn cmp(&self, other: &HashAlgorithm) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<HashAlgorithm> for HashAlgorithm
impl PartialEq<HashAlgorithm> for HashAlgorithm
source§fn eq(&self, other: &HashAlgorithm) -> bool
fn eq(&self, other: &HashAlgorithm) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<HashAlgorithm> for HashAlgorithm
impl PartialOrd<HashAlgorithm> for HashAlgorithm
source§fn partial_cmp(&self, other: &HashAlgorithm) -> Option<Ordering>
fn partial_cmp(&self, other: &HashAlgorithm) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for HashAlgorithm
impl Eq for HashAlgorithm
impl StructuralEq for HashAlgorithm
impl StructuralPartialEq for HashAlgorithm
Auto Trait Implementations§
impl RefUnwindSafe for HashAlgorithm
impl Send for HashAlgorithm
impl Sync for HashAlgorithm
impl Unpin for HashAlgorithm
impl UnwindSafe for HashAlgorithm
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