Struct openssl::x509::X509Ref [−]
pub struct X509Ref(_);
Reference to X509
.
Methods
impl X509Ref
[src]
impl X509Ref
pub fn subject_name(&self) -> &X509NameRef
[src]
pub fn subject_name(&self) -> &X509NameRef
Returns this certificate's subject name.
This corresponds to X509_get_subject_name
.
pub fn issuer_name(&self) -> &X509NameRef
[src]
pub fn issuer_name(&self) -> &X509NameRef
Returns 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) -> &Asn1TimeRef
Returns the certificate's Not After validity period.
pub fn not_before(&self) -> &Asn1TimeRef
[src]
pub fn not_before(&self) -> &Asn1TimeRef
Returns the certificate's Not Before validity period.
pub fn signature(&self) -> &Asn1BitStringRef
[src]
pub fn signature(&self) -> &Asn1BitStringRef
Returns the certificate's signature
pub fn signature_algorithm(&self) -> &X509AlgorithmRef
[src]
pub fn signature_algorithm(&self) -> &X509AlgorithmRef
Returns 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) -> X509VerifyResult
Checks that this certificate issued subject
.
pub fn serial_number(&self) -> &Asn1IntegerRef
[src]
pub fn serial_number(&self) -> &Asn1IntegerRef
Returns 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 Borrow<X509Ref> for X509
impl Borrow<X509Ref> for X509
impl AsRef<X509Ref> for X509
impl AsRef<X509Ref> for X509
impl ForeignTypeRef for X509Ref
impl ForeignTypeRef for X509Ref
type CType = X509
The raw C type.
ⓘImportant traits for &'a mut Runsafe fn from_ptr<'a>(ptr: *mut Self::CType) -> &'a Self
[src]
unsafe fn from_ptr<'a>(ptr: *mut Self::CType) -> &'a Self
Constructs a shared instance of this type from its raw type.
ⓘImportant traits for &'a mut Runsafe fn from_ptr_mut<'a>(ptr: *mut Self::CType) -> &'a mut Self
[src]
unsafe fn from_ptr_mut<'a>(ptr: *mut Self::CType) -> &'a mut Self
Constructs a mutable reference of this type from its raw type.
fn as_ptr(&self) -> *mut Self::CType
[src]
fn as_ptr(&self) -> *mut Self::CType
Returns a raw pointer to the wrapped value.
impl Send for X509Ref
[src]
impl Send for X509Ref
impl Sync for X509Ref
[src]
impl Sync for X509Ref
impl ToOwned for X509Ref
[src]
impl ToOwned for X509Ref
type Owned = X509
fn to_owned(&self) -> X509
[src]
fn to_owned(&self) -> X509
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut Self::Owned)
[src]
fn clone_into(&self, target: &mut Self::Owned)
🔬 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 AsRef<X509Ref> for X509Ref
[src]
impl AsRef<X509Ref> for X509Ref