[−]Struct openssl::x509::X509  
An X509 public key certificate.
Methods
impl X509[src] 
impl X509pub fn builder() -> Result<X509Builder, ErrorStack>[src] 
pub fn builder() -> Result<X509Builder, ErrorStack>Returns a new builder.
pub fn from_pem(pem: &[u8]) -> Result<X509, ErrorStack>[src] 
pub fn from_pem(pem: &[u8]) -> Result<X509, ErrorStack>Deserializes a PEM-encoded X509 structure.
The input should have a header of -----BEGIN CERTIFICATE-----.
This corresponds to PEM_read_bio_X509.
pub fn from_der(der: &[u8]) -> Result<X509, ErrorStack>[src] 
pub fn from_der(der: &[u8]) -> Result<X509, ErrorStack>Deserializes a DER-encoded X509 structure.
This corresponds to d2i_X509.
pub fn stack_from_pem(pem: &[u8]) -> Result<Vec<X509>, ErrorStack>[src] 
pub fn stack_from_pem(pem: &[u8]) -> Result<Vec<X509>, ErrorStack>Deserializes a list of PEM-formatted certificates.
Methods from Deref<Target = X509Ref>
pub fn subject_name(&self) -> &X509NameRef[src] 
pub fn subject_name(&self) -> &X509NameRefReturns this certificate's subject name.
This corresponds to X509_get_subject_name.
pub fn issuer_name(&self) -> &X509NameRef[src] 
pub fn issuer_name(&self) -> &X509NameRefReturns this certificate's issuer name.
This corresponds to X509_get_issuer_name.
pub fn subject_alt_names(&self) -> Option<Stack<GeneralName>>[src] 
pub fn subject_alt_names(&self) -> Option<Stack<GeneralName>>Returns this certificate's subject alternative name entries, if they exist.
This corresponds to X509_get_ext_d2i called with NID_subject_alt_name.
pub fn issuer_alt_names(&self) -> Option<Stack<GeneralName>>[src] 
pub fn issuer_alt_names(&self) -> Option<Stack<GeneralName>>Returns this certificate's issuer alternative name entries, if they exist.
This corresponds to X509_get_ext_d2i called with NID_issuer_alt_name.
pub fn public_key(&self) -> Result<PKey<Public>, ErrorStack>[src] 
pub fn public_key(&self) -> Result<PKey<Public>, ErrorStack>pub fn digest(
    &self, 
    hash_type: MessageDigest
) -> Result<DigestBytes, ErrorStack>[src] 
pub fn digest(
    &self, 
    hash_type: MessageDigest
) -> Result<DigestBytes, ErrorStack>Returns a digest of the DER representation of the certificate.
This corresponds to X509_digest.
pub fn fingerprint(
    &self, 
    hash_type: MessageDigest
) -> Result<Vec<u8>, ErrorStack>[src] 
pub fn fingerprint(
    &self, 
    hash_type: MessageDigest
) -> Result<Vec<u8>, ErrorStack>: renamed to digest
pub fn not_after(&self) -> &Asn1TimeRef[src] 
pub fn not_after(&self) -> &Asn1TimeRefReturns the certificate's Not After validity period.
pub fn not_before(&self) -> &Asn1TimeRef[src] 
pub fn not_before(&self) -> &Asn1TimeRefReturns the certificate's Not Before validity period.
pub fn signature(&self) -> &Asn1BitStringRef[src] 
pub fn signature(&self) -> &Asn1BitStringRefReturns the certificate's signature
pub fn signature_algorithm(&self) -> &X509AlgorithmRef[src] 
pub fn signature_algorithm(&self) -> &X509AlgorithmRefReturns the certificate's signature algorithm.
pub fn ocsp_responders(&self) -> Result<Stack<OpensslString>, ErrorStack>[src] 
pub fn ocsp_responders(&self) -> Result<Stack<OpensslString>, ErrorStack>Returns the list of OCSP responder URLs specified in the certificate's Authority Information Access field.
pub fn issued(&self, subject: &X509Ref) -> X509VerifyResult[src] 
pub fn issued(&self, subject: &X509Ref) -> X509VerifyResultChecks that this certificate issued subject.
pub fn serial_number(&self) -> &Asn1IntegerRef[src] 
pub fn serial_number(&self) -> &Asn1IntegerRefReturns this certificate's serial number.
This corresponds to X509_get_serialNumber.
pub fn to_pem(&self) -> Result<Vec<u8>, ErrorStack>[src] 
pub fn to_pem(&self) -> Result<Vec<u8>, ErrorStack>Serializes the certificate into a PEM-encoded X509 structure.
The output will have a header of -----BEGIN CERTIFICATE-----.
This corresponds to PEM_write_bio_X509.
pub fn to_der(&self) -> Result<Vec<u8>, ErrorStack>[src] 
pub fn to_der(&self) -> Result<Vec<u8>, ErrorStack>Serializes the certificate into a DER-encoded X509 structure.
This corresponds to i2d_X509.
Trait Implementations
impl Stackable for X509[src] 
impl Stackable for X509type StackType = stack_st_X509
The C stack type for this element. Read more
impl Clone for X509[src] 
impl Clone for X509fn clone(&self) -> X509[src] 
fn clone(&self) -> X509Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src] 
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Drop for X509
impl Drop for X509impl Sync for X509[src] 
impl Sync for X509impl AsRef<X509Ref> for X509
impl AsRef<X509Ref> for X509impl Send for X509[src] 
impl Send for X509impl Deref for X509
impl Deref for X509type Target = X509Ref
The resulting type after dereferencing.
fn deref(&self) -> &X509Ref
fn deref(&self) -> &X509RefDereferences the value.
impl DerefMut for X509
impl DerefMut for X509impl Borrow<X509Ref> for X509
impl Borrow<X509Ref> for X509impl ForeignType for X509
impl ForeignType for X509Blanket Implementations
impl<T> From for T[src] 
impl<T> From for Timpl<T, U> Into for T where
    U: From<T>, [src] 
impl<T, U> Into for T where
    U: From<T>, impl<T> ToOwned for T where
    T: Clone, [src] 
impl<T> ToOwned for T where
    T: Clone, type Owned = T
fn to_owned(&self) -> T[src] 
fn to_owned(&self) -> TCreates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)[src] 
fn clone_into(&self, target: &mut T)🔬 This is a nightly-only experimental API.  (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom for T where
    T: From<U>, [src] 
impl<T, U> TryFrom for T where
    T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src] 
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> Borrow for T where
    T: ?Sized, [src] 
impl<T> Borrow for T where
    T: ?Sized, impl<T> BorrowMut for T where
    T: ?Sized, [src] 
impl<T> BorrowMut for T where
    T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src] 
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
    U: TryFrom<T>, [src] 
impl<T, U> TryInto for T where
    U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src] 
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>try_from)Performs the conversion.
impl<T> Any for T where
    T: 'static + ?Sized, [src] 
impl<T> Any for T where
    T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src] 
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API.  (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more