[−][src]Struct x509_parser::x509::X509Certificate
An X.509 v3 Certificate.
X.509 v3 certificates are defined in RFC5280, section
4.1. This object uses the same structure for content, so for ex the subject can be accessed
using the path x509.tbs_certificate.subject
.
X509Certificate
also contains convenience methods to access the most common fields (subject,
issuer, etc.).
A X509Certificate
is a zero-copy view over a buffer, so the lifetime is the same as the
buffer containing the binary representation.
fn display_x509_info(x509: &X509Certificate<'_>) { let subject = &x509.tbs_certificate.subject; let issuer = &x509.tbs_certificate.issuer; println!("X.509 Subject: {}", subject); println!("X.509 Issuer: {}", issuer); println!("X.509 serial: {}", x509.tbs_certificate.raw_serial_as_string()); }
Fields
tbs_certificate: TbsCertificate<'a>
signature_algorithm: AlgorithmIdentifier<'a>
signature_value: BitStringObject<'a>
Implementations
impl<'a> X509Certificate<'a>
[src]
pub fn version(&self) -> X509Version
[src]
Get the version of the encoded certificate
pub fn subject(&self) -> &X509Name
[src]
Get the certificate subject.
pub fn issuer(&self) -> &X509Name
[src]
Get the certificate issuer.
pub fn validity(&self) -> &Validity
[src]
Get the certificate validity.
pub fn extensions(&self) -> &HashMap<Oid, X509Extension>
[src]
Get the certificate extensions.
impl<'a> X509Certificate<'a>
[src]
pub fn verify_signature(
&self,
public_key: Option<&SubjectPublicKeyInfo>
) -> Result<(), X509Error>
[src]
&self,
public_key: Option<&SubjectPublicKeyInfo>
) -> Result<(), X509Error>
feature="verify"
only.Verify the cryptographic signature of this certificate
public_key
is the public key of the signer. For a self-signed certificate,
(for ex. a public root certificate authority), this is the key from the certificate,
so you can use None
.
For a leaf certificate, this is the public key of the certificate that signed it. It is usually an intermediate authority.
Trait Implementations
impl<'a> Debug for X509Certificate<'a>
[src]
impl<'a> PartialEq<X509Certificate<'a>> for X509Certificate<'a>
[src]
fn eq(&self, other: &X509Certificate<'a>) -> bool
[src]
fn ne(&self, other: &X509Certificate<'a>) -> bool
[src]
impl<'a> StructuralPartialEq for X509Certificate<'a>
[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for X509Certificate<'a>
impl<'a> Send for X509Certificate<'a>
impl<'a> Sync for X509Certificate<'a>
impl<'a> Unpin for X509Certificate<'a>
impl<'a> UnwindSafe for X509Certificate<'a>
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,
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.
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>,