Struct openssl::x509::extension::SubjectAlternativeName [−][src]
An extension that allows additional identities to be bound to the subject of the certificate.
Implementations
impl SubjectAlternativeName
[src]
pub fn new() -> SubjectAlternativeName
[src]
Construct a new SubjectAlternativeName
extension.
pub fn critical(&mut self) -> &mut SubjectAlternativeName
[src]
Sets the critical
flag to true
. The extension will be critical.
pub fn email(&mut self, email: &str) -> &mut SubjectAlternativeName
[src]
Sets the email
flag.
pub fn uri(&mut self, uri: &str) -> &mut SubjectAlternativeName
[src]
Sets the uri
flag.
pub fn dns(&mut self, dns: &str) -> &mut SubjectAlternativeName
[src]
Sets the dns
flag.
pub fn rid(&mut self, rid: &str) -> &mut SubjectAlternativeName
[src]
Sets the rid
flag.
pub fn ip(&mut self, ip: &str) -> &mut SubjectAlternativeName
[src]
Sets the ip
flag.
pub fn dir_name(&mut self, dir_name: &str) -> &mut SubjectAlternativeName
[src]
Sets the dirName
flag.
pub fn other_name(&mut self, other_name: &str) -> &mut SubjectAlternativeName
[src]
Sets the otherName
flag.
pub fn build(
&self,
ctx: &X509v3Context<'_>
) -> Result<X509Extension, ErrorStack>
[src]
&self,
ctx: &X509v3Context<'_>
) -> Result<X509Extension, ErrorStack>
Return a SubjectAlternativeName
extension as an X509Extension
.
Auto Trait Implementations
impl RefUnwindSafe for SubjectAlternativeName
impl Send for SubjectAlternativeName
impl Sync for SubjectAlternativeName
impl Unpin for SubjectAlternativeName
impl UnwindSafe for SubjectAlternativeName
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,