pub type Certificate = CertificateInner<Rfc5280>;
Expand description
X.509 certificates are defined in RFC 5280 Section 4.1.
Aliased Type§
struct Certificate {
pub tbs_certificate: TbsCertificateInner,
pub signature_algorithm: AlgorithmIdentifier<Any>,
pub signature: BitString,
}
Fields§
§tbs_certificate: TbsCertificateInner
§signature_algorithm: AlgorithmIdentifier<Any>
§signature: BitString
Trait Implementations
Source§impl<P: Clone + Profile> Clone for CertificateInner<P>
impl<P: Clone + Profile> Clone for CertificateInner<P>
Source§fn clone(&self) -> CertificateInner<P>
fn clone(&self) -> CertificateInner<P>
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 more