[][src]Struct rpki::x509::Name

pub struct Name(_);

Methods

impl Name[src]

pub fn take_from<S: Source>(cons: &mut Constructed<S>) -> Result<Self, S::Err>[src]

pub fn validate_rpki(&self, strict: bool) -> Result<(), ValidationError>[src]

pub fn from_pub_key(key_info: &PublicKey) -> Self[src]

Derives a name from a public key info.

Derives a name for use as issuer or subject from the public key of the issuer, or this certificate, respectively.

This MUST be an X.500 Distinguished Name encoded as a PrintableString. There are no strong restrictions other than this because names in the RPKI are not considered important.

Here we will use a simple strategy that guarantees uniqueness of these names, by generating them based on the hash of the public key. This is in line with the recommendations in RFC6487 sections 4.4, 4.5 and 8.

pub fn encode_ref<'a>(&'a self) -> impl Values + 'a[src]

Trait Implementations

impl Clone for Name[src]

impl Debug for Name[src]

Auto Trait Implementations

impl Send for Name

impl Sync for Name

impl Unpin for Name

impl UnwindSafe for Name

impl RefUnwindSafe for Name

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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