[][src]Enum rcgen::KeyIdMethod

#[non_exhaustive]pub enum KeyIdMethod {
    Sha256,
    Sha384,
    Sha512,
}

Method to generate key identifiers from public keys.

This allows choice over methods to generate key identifiers as specified in RFC 7093 section 2.

Variants (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

RFC 7093 method 1

Sha384

RFC 7093 method 2

Sha512

RFC 7093 method 3

Trait Implementations

impl Clone for KeyIdMethod[src]

impl Debug for KeyIdMethod[src]

impl Eq for KeyIdMethod[src]

impl Hash for KeyIdMethod[src]

impl PartialEq<KeyIdMethod> for KeyIdMethod[src]

impl StructuralEq for KeyIdMethod[src]

impl StructuralPartialEq for KeyIdMethod[src]

Auto Trait Implementations

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> 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, 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.