Struct spki::SubjectPublicKeyInfo [−][src]
pub struct SubjectPublicKeyInfo<'a> {
pub algorithm: AlgorithmIdentifier<'a>,
pub subject_public_key: &'a [u8],
}Expand description
X.509 SubjectPublicKeyInfo (SPKI) as defined in RFC 5280 Section 4.1.2.7.
ASN.1 structure containing an AlgorithmIdentifier and public key
data in an algorithm specific format.
SubjectPublicKeyInfo ::= SEQUENCE {
algorithm AlgorithmIdentifier,
subjectPublicKey BIT STRING }Fields
algorithm: AlgorithmIdentifier<'a>X.509 AlgorithmIdentifier for the public key type
subject_public_key: &'a [u8]Public key data
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.