Struct spki::SubjectPublicKeyInfo
source · 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§
source§impl<'a> Clone for SubjectPublicKeyInfo<'a>
impl<'a> Clone for SubjectPublicKeyInfo<'a>
source§fn clone(&self) -> SubjectPublicKeyInfo<'a>
fn clone(&self) -> SubjectPublicKeyInfo<'a>
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<'a> Debug for SubjectPublicKeyInfo<'a>
impl<'a> Debug for SubjectPublicKeyInfo<'a>
source§impl<'a> Decodable<'a> for SubjectPublicKeyInfo<'a>
impl<'a> Decodable<'a> for SubjectPublicKeyInfo<'a>
source§impl<'a> PartialEq for SubjectPublicKeyInfo<'a>
impl<'a> PartialEq for SubjectPublicKeyInfo<'a>
source§fn eq(&self, other: &SubjectPublicKeyInfo<'a>) -> bool
fn eq(&self, other: &SubjectPublicKeyInfo<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'a> Sequence<'a> for SubjectPublicKeyInfo<'a>
impl<'a> Sequence<'a> for SubjectPublicKeyInfo<'a>
source§impl<'a> TryFrom<&'a [u8]> for SubjectPublicKeyInfo<'a>
impl<'a> TryFrom<&'a [u8]> for SubjectPublicKeyInfo<'a>
source§impl TryFrom<&SubjectPublicKeyInfo<'_>> for PublicKeyDocument
impl TryFrom<&SubjectPublicKeyInfo<'_>> for PublicKeyDocument
source§fn try_from(spki: &SubjectPublicKeyInfo<'_>) -> Result<PublicKeyDocument>
fn try_from(spki: &SubjectPublicKeyInfo<'_>) -> Result<PublicKeyDocument>
Performs the conversion.
source§impl TryFrom<SubjectPublicKeyInfo<'_>> for PublicKeyDocument
impl TryFrom<SubjectPublicKeyInfo<'_>> for PublicKeyDocument
source§fn try_from(spki: SubjectPublicKeyInfo<'_>) -> Result<PublicKeyDocument>
fn try_from(spki: SubjectPublicKeyInfo<'_>) -> Result<PublicKeyDocument>
Performs the conversion.
impl<'a> Copy for SubjectPublicKeyInfo<'a>
impl<'a> Eq for SubjectPublicKeyInfo<'a>
impl<'a> StructuralEq for SubjectPublicKeyInfo<'a>
impl<'a> StructuralPartialEq for SubjectPublicKeyInfo<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for SubjectPublicKeyInfo<'a>
impl<'a> Send for SubjectPublicKeyInfo<'a>
impl<'a> Sync for SubjectPublicKeyInfo<'a>
impl<'a> Unpin for SubjectPublicKeyInfo<'a>
impl<'a> UnwindSafe for SubjectPublicKeyInfo<'a>
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<T> Encodable for Twhere
T: EncodeValue + Tagged,
impl<T> Encodable 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, encoder: &mut Encoder<'_>) -> Result<(), Error>
fn encode(&self, encoder: &mut Encoder<'_>) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Encoder
.
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.