[][src]Enum sequoia_openpgp::KeyID

pub enum KeyID {
    V4([u8; 8]),
    Invalid(Box<[u8]>),
    // some variants omitted
}

A short identifier for certificates and keys.

A KeyID is a fingerprint fragment. It identifies a public key, but is easy to forge. For more details about how a KeyID is generated, see Section 12.2 of RFC 4880.

Note: This enum cannot be exhaustively matched to allow future extensions.

Variants

Lower 8 byte SHA-1 hash.

Invalid(Box<[u8]>)

Used for holding keyids that we don't understand. For instance, we don't grok v3 keyids. And, it is possible that the Issuer subpacket contains the wrong number of bytes.

Implementations

impl KeyID[src]

pub fn new(data: u64) -> KeyID[src]

Converts a u64 to a KeyID.

pub fn as_u64(&self) -> Result<u64>[src]

Converts the KeyID to a u64 if possible.

pub fn from_bytes(raw: &[u8]) -> KeyID[src]

Reads a binary key ID.

pub fn as_bytes(&self) -> &[u8][src]

Returns a reference to the raw KeyID.

pub fn wildcard() -> Self[src]

Returns the wildcard KeyID.

pub fn is_wildcard(&self) -> bool[src]

Returns true if this is a wild card ID.

pub fn to_hex(&self) -> String[src]

Converts this key ID to its canonical hexadecimal representation.

This representation is always uppercase and without spaces and is suitable for stable key identifiers.

The output of this function is exactly the same as formatting this object with the :X format specifier.

use openpgp::KeyID;

let keyid = "fb3751f1587daef1".parse::<KeyID>().unwrap();

assert_eq!("FB3751F1587DAEF1", keyid.to_hex());
assert_eq!(format!("{:X}", keyid), keyid.to_hex());

pub fn from_hex(s: &str) -> Result<Self, Error>[src]

Parses the hexadecimal representation of an OpenPGP key ID.

This function is the reverse of to_hex. It also accepts other variants of the key ID notation including lower-case letters, spaces and optional leading 0x.

use openpgp::KeyID;

let keyid = KeyID::from_hex("0xfb3751f1587daef1").unwrap();

assert_eq!("FB3751F1587DAEF1", keyid.to_hex());

Trait Implementations

impl Clone for KeyID[src]

impl Debug for KeyID[src]

impl Display for KeyID[src]

impl Eq for KeyID[src]

impl<'_> From<&'_ Fingerprint> for KeyID[src]

impl<'_> From<&'_ KeyHandle> for KeyID[src]

impl<'_> From<&'_ KeyID> for KeyHandle[src]

impl From<[u8; 8]> for KeyID[src]

impl From<Fingerprint> for KeyID[src]

impl From<KeyHandle> for KeyID[src]

impl From<KeyID> for Vec<u8>[src]

impl From<KeyID> for KeyHandle[src]

impl From<u64> for KeyID[src]

impl FromStr for KeyID[src]

type Err = Error

The associated error which can be returned from parsing.

impl Hash for KeyID[src]

impl LowerHex for KeyID[src]

impl Marshal for KeyID[src]

impl MarshalInto for KeyID[src]

impl Ord for KeyID[src]

impl PartialEq<KeyID> for KeyID[src]

impl PartialOrd<KeyID> for KeyID[src]

impl Serialize for KeyID[src]

impl SerializeInto for KeyID[src]

impl StructuralEq for KeyID[src]

impl StructuralPartialEq for KeyID[src]

impl UpperHex for KeyID[src]

Auto Trait Implementations

impl RefUnwindSafe for KeyID

impl Send for KeyID

impl Sync for KeyID

impl Unpin for KeyID

impl UnwindSafe for KeyID

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DynClone for T where
    T: Clone
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.