[][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<'a>(&'a self) -> impl Values + 'a[src]

Trait Implementations

impl Clone for Name[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Name[src]

Auto Trait Implementations

impl Send for Name

impl Sync for Name

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.