Enum trust_dns_proto::rr::rdata::sshfp::FingerprintType
source · pub enum FingerprintType {
Reserved,
SHA1,
SHA256,
Unassigned(u8),
}
Expand description
3.1.2. Fingerprint Type Specification
The fingerprint type octet describes the message-digest algorithm
used to calculate the fingerprint of the public key. The following
values are assigned:
Value Fingerprint type
----- ----------------
0 reserved
1 SHA-1
Reserving other types requires IETF consensus [4].
For interoperability reasons, as few fingerprint types as possible
should be reserved. The only reason to reserve additional types is
to increase security.
The fingerprint type values have been updated in RFC 6594.
Variants§
Trait Implementations§
source§impl Clone for FingerprintType
impl Clone for FingerprintType
source§fn clone(&self) -> FingerprintType
fn clone(&self) -> FingerprintType
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 FingerprintType
impl Debug for FingerprintType
source§impl From<FingerprintType> for u8
impl From<FingerprintType> for u8
source§fn from(fingerprint_type: FingerprintType) -> Self
fn from(fingerprint_type: FingerprintType) -> Self
Converts to this type from the input type.