pub struct X509CertificationRequest<'a> {
    pub certification_request_info: X509CertificationRequestInfo<'a>,
    pub signature_algorithm: AlgorithmIdentifier<'a>,
    pub signature_value: BitString<'a>,
}
Expand description

Certification Signing Request (CSR)

Fields

certification_request_info: X509CertificationRequestInfo<'a>signature_algorithm: AlgorithmIdentifier<'a>signature_value: BitString<'a>

Implementations

Verify the cryptographic signature of this certification request

Uses the public key contained in the CSR, which must be the one of the entity requesting the certification for this verification to succeed.

Trait Implementations

Formats the value using the given formatter. Read more

CertificationRequest ::= SEQUENCE {
    certificationRequestInfo CertificationRequestInfo,
    signatureAlgorithm AlgorithmIdentifier{{ SignatureAlgorithms }},
    signature          BIT STRING
}

Attempt to parse input bytes into a DER object (enforcing constraints)

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.