pub struct CertReq {
pub info: CertReqInfo,
pub algorithm: AlgorithmIdentifierOwned,
pub signature: BitString,
}
Expand description
PKCS#10 CertificationRequest
as defined in RFC 2986 Section 4.
CertificationRequest ::= SEQUENCE {
certificationRequestInfo CertificationRequestInfo,
signatureAlgorithm AlgorithmIdentifier{{ SignatureAlgorithms }},
signature BIT STRING
}
Fields§
§info: CertReqInfo
Certification request information.
algorithm: AlgorithmIdentifierOwned
Signature algorithm identifier.
signature: BitString
Signature.
Trait Implementations§
source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for CertReq
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for CertReq
source§impl<'__der_lifetime> EncodeValue for CertReq
impl<'__der_lifetime> EncodeValue for CertReq
source§impl PartialEq for CertReq
impl PartialEq for CertReq
impl Eq for CertReq
impl<'__der_lifetime> Sequence<'__der_lifetime> for CertReq
impl StructuralEq for CertReq
impl StructuralPartialEq for CertReq
Auto Trait Implementations§
impl RefUnwindSafe for CertReq
impl Send for CertReq
impl Sync for CertReq
impl Unpin for CertReq
impl UnwindSafe for CertReq
Blanket Implementations§
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
source§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
source§impl<T> DecodePem for Twhere
T: DecodeOwned + PemLabel,
impl<T> DecodePem for Twhere
T: DecodeOwned + PemLabel,
source§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
source§fn encoded_len(&self) -> Result<Length, Error>
fn encoded_len(&self) -> Result<Length, Error>
Compute the length of this value in bytes when encoded as ASN.1 DER.
source§fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Writer
.
source§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.