Enum x509_parser::extensions::GeneralName
source · pub enum GeneralName<'a> {
OtherName(Oid<'a>, &'a [u8]),
RFC822Name(&'a str),
DNSName(&'a str),
X400Address(Any<'a>),
DirectoryName(X509Name<'a>),
EDIPartyName(Any<'a>),
URI(&'a str),
IPAddress(&'a [u8]),
RegisteredID(Oid<'a>),
}
Expand description
Represents a GeneralName as defined in RFC5280. There is no support X.400 addresses and EDIPartyName.
String formats are not validated.
Variants§
OtherName(Oid<'a>, &'a [u8])
RFC822Name(&'a str)
More or less an e-mail, the format is not checked.
DNSName(&'a str)
A hostname, format is not checked.
X400Address(Any<'a>)
X400Address,
DirectoryName(X509Name<'a>)
RFC5280 defines several string types, we always try to parse as utf-8 which is more or less a superset of the string types.
EDIPartyName(Any<'a>)
EDIPartyName
URI(&'a str)
An uniform resource identifier. The format is not checked.
IPAddress(&'a [u8])
An ip address, provided as encoded.
RegisteredID(Oid<'a>)
Trait Implementations§
source§impl CheckDerConstraints for GeneralName<'_>
impl CheckDerConstraints for GeneralName<'_>
source§impl<'a> Clone for GeneralName<'a>
impl<'a> Clone for GeneralName<'a>
source§fn clone(&self) -> GeneralName<'a>
fn clone(&self) -> GeneralName<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a> Debug for GeneralName<'a>
impl<'a> Debug for GeneralName<'a>
source§impl<'a> Display for GeneralName<'a>
impl<'a> Display for GeneralName<'a>
source§impl<'a> FromDer<'a, X509Error> for GeneralName<'a>
impl<'a> FromDer<'a, X509Error> for GeneralName<'a>
source§fn from_der(i: &'a [u8]) -> X509Result<'a, Self>
fn from_der(i: &'a [u8]) -> X509Result<'a, Self>
Attempt to parse input bytes into a DER object (enforcing constraints)
source§impl<'a> PartialEq for GeneralName<'a>
impl<'a> PartialEq for GeneralName<'a>
source§fn eq(&self, other: &GeneralName<'a>) -> bool
fn eq(&self, other: &GeneralName<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'a> TryFrom<Any<'a>> for GeneralName<'a>
impl<'a> TryFrom<Any<'a>> for GeneralName<'a>
impl<'a> StructuralPartialEq for GeneralName<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for GeneralName<'a>
impl<'a> Send for GeneralName<'a>
impl<'a> Sync for GeneralName<'a>
impl<'a> Unpin for GeneralName<'a>
impl<'a> UnwindSafe for GeneralName<'a>
Blanket Implementations§
source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more