Enum ssh_key::Fingerprint
source · #[non_exhaustive]
pub enum Fingerprint {
Sha256([u8; 32]),
Sha512([u8; 64]),
}Expand description
SSH public key fingerprints.
Fingerprints have an associated key fingerprint algorithm, i.e. a hash function which is used to compute the fingerprint.
Parsing/serializing fingerprint strings
The FromStr and Display impls on Fingerprint can be used to
parse and serialize fingerprints from the string format.
Example
SHA256:Nh0Me49Zh9fDw/VYUfq43IJmI1T+XrjiYONPND8GzaM
serde support
When the serde feature of this crate is enabled, this type receives impls
of Deserialize and Serialize.
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.
Sha256([u8; 32])
Fingerprints computed using SHA-256.
Sha512([u8; 64])
Fingerprints computed using SHA-512.
Implementations§
Trait Implementations§
source§impl AsRef<[u8]> for Fingerprint
impl AsRef<[u8]> for Fingerprint
source§impl Clone for Fingerprint
impl Clone for Fingerprint
source§fn clone(&self) -> Fingerprint
fn clone(&self) -> Fingerprint
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 Fingerprint
impl Debug for Fingerprint
source§impl<'de> Deserialize<'de> for Fingerprint
Available on crate features alloc and serde only.
impl<'de> Deserialize<'de> for Fingerprint
Available on crate features
alloc and serde only.source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for Fingerprint
impl Display for Fingerprint
source§impl FromStr for Fingerprint
impl FromStr for Fingerprint
source§impl Ord for Fingerprint
impl Ord for Fingerprint
source§fn cmp(&self, other: &Fingerprint) -> Ordering
fn cmp(&self, other: &Fingerprint) -> 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<Fingerprint> for Fingerprint
impl PartialEq<Fingerprint> for Fingerprint
source§fn eq(&self, other: &Fingerprint) -> bool
fn eq(&self, other: &Fingerprint) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<Fingerprint> for Fingerprint
impl PartialOrd<Fingerprint> for Fingerprint
source§fn partial_cmp(&self, other: &Fingerprint) -> Option<Ordering>
fn partial_cmp(&self, other: &Fingerprint) -> 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 moresource§impl Serialize for Fingerprint
Available on crate features alloc and serde only.
impl Serialize for Fingerprint
Available on crate features
alloc and serde only.