Struct x509_cert::request::CertReqInfo
source · pub struct CertReqInfo {
pub version: Version,
pub subject: Name,
pub public_key: SubjectPublicKeyInfoOwned,
pub attributes: Attributes,
}
Expand description
PKCS#10 CertificationRequestInfo
as defined in RFC 2986 Section 4.
CertificationRequestInfo ::= SEQUENCE {
version INTEGER { v1(0) } (v1,...),
subject Name,
subjectPKInfo SubjectPublicKeyInfo{{ PKInfoAlgorithms }},
attributes [0] Attributes{{ CRIAttributes }}
}
Fields§
§version: Version
Certification request version.
subject: Name
Subject name.
public_key: SubjectPublicKeyInfoOwned
Subject public key info.
attributes: Attributes
Request attributes.
Trait Implementations§
source§impl Clone for CertReqInfo
impl Clone for CertReqInfo
source§fn clone(&self) -> CertReqInfo
fn clone(&self) -> CertReqInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CertReqInfo
impl Debug for CertReqInfo
source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for CertReqInfo
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for CertReqInfo
source§impl<'__der_lifetime> EncodeValue for CertReqInfo
impl<'__der_lifetime> EncodeValue for CertReqInfo
source§impl PartialEq for CertReqInfo
impl PartialEq for CertReqInfo
source§fn eq(&self, other: &CertReqInfo) -> bool
fn eq(&self, other: &CertReqInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for CertReqInfo
impl<'__der_lifetime> Sequence<'__der_lifetime> for CertReqInfo
impl StructuralEq for CertReqInfo
impl StructuralPartialEq for CertReqInfo
Auto Trait Implementations§
impl RefUnwindSafe for CertReqInfo
impl Send for CertReqInfo
impl Sync for CertReqInfo
impl Unpin for CertReqInfo
impl UnwindSafe for CertReqInfo
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> 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.