pub struct SubjectAlternativeName { /* private fields */ }
Expand description

An extension that allows additional identities to be bound to the subject of the certificate.

Implementations§

source§

impl SubjectAlternativeName

source

pub fn new() -> SubjectAlternativeName

Construct a new SubjectAlternativeName extension.

source

pub fn critical(&mut self) -> &mut SubjectAlternativeName

Sets the critical flag to true. The extension will be critical.

source

pub fn email(&mut self, email: &str) -> &mut SubjectAlternativeName

Sets the email flag.

source

pub fn uri(&mut self, uri: &str) -> &mut SubjectAlternativeName

Sets the uri flag.

source

pub fn dns(&mut self, dns: &str) -> &mut SubjectAlternativeName

Sets the dns flag.

source

pub fn rid(&mut self, rid: &str) -> &mut SubjectAlternativeName

Sets the rid flag.

source

pub fn ip(&mut self, ip: &str) -> &mut SubjectAlternativeName

Sets the ip flag.

source

pub fn dir_name(&mut self, _dir_name: &str) -> &mut SubjectAlternativeName

👎Deprecated: dir_name is deprecated and always panics. Please file a bug if you have a use case for this.

Sets the dirName flag.

Not currently actually supported, always panics.

source

pub fn other_name(&mut self, _other_name: &str) -> &mut SubjectAlternativeName

👎Deprecated: other_name is deprecated and always panics. Please use other_name2.

Sets the otherName flag.

Not currently actually supported, always panics. Please use other_name2

source

pub fn other_name2( &mut self, oid: Asn1Object, content: &[u8] ) -> &mut SubjectAlternativeName

Sets the otherName flag.

content must be a valid der encoded ASN1_TYPE

If you want to add just a ia5string use other_name_ia5string

source

pub fn build( &self, _ctx: &X509v3Context<'_> ) -> Result<X509Extension, ErrorStack>

Return a SubjectAlternativeName extension as an X509Extension.

Trait Implementations§

source§

impl Default for SubjectAlternativeName

source§

fn default() -> SubjectAlternativeName

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.