Skip to main content

SubjectPublicKeyInfo

Type Alias SubjectPublicKeyInfo 

Source
pub type SubjectPublicKeyInfo<'a> = SubjectPublicKeyInfo<'a>;

Aliased Type§

pub struct SubjectPublicKeyInfo<'a> {
    pub algorithm: AlgorithmIdentifier<'a>,
    pub subject_public_key: BitString<'a>,
    pub raw: &'a [u8],
}

Fields§

§algorithm: AlgorithmIdentifier<'a>§subject_public_key: BitString<'a>§raw: &'a [u8]

A raw unparsed PKIX, ASN.1 DER form (see RFC 5280, Section 4.1).

Note: use the Self::parsed() function to parse this object.