pub struct SubjectPublicKeyInfo<Params, Key> {
pub algorithm: AlgorithmIdentifier<Params>,
pub subject_public_key: Key,
}Expand description
X.509 SubjectPublicKeyInfo (SPKI) as defined in RFC 5280 § 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<Params>X.509 AlgorithmIdentifier for the public key type
subject_public_key: KeyPublic key data
Implementations§
Source§impl SubjectPublicKeyInfo<Any, BitString>
impl SubjectPublicKeyInfo<Any, BitString>
Sourcepub fn from_key<T>(source: T) -> Result<Self>where
T: EncodePublicKey,
Available on crate feature alloc only.
pub fn from_key<T>(source: T) -> Result<Self>where
T: EncodePublicKey,
alloc only.Create a SubjectPublicKeyInfoOwned from any object that implements
EncodePublicKey.
Source§impl<'a, Params, Key> SubjectPublicKeyInfo<Params, Key>
impl<'a, Params, Key> SubjectPublicKeyInfo<Params, Key>
Sourcepub fn fingerprint_base64(&self) -> Result<String>
Available on crate features fingerprint and alloc and base64 only.
pub fn fingerprint_base64(&self) -> Result<String>
fingerprint and alloc and base64 only.Calculate the SHA-256 fingerprint of this SubjectPublicKeyInfo and
encode it as a Base64 string.
See RFC7469 § 2.1.1 for more information.
Sourcepub fn fingerprint_bytes(&self) -> Result<FingerprintBytes>
Available on crate feature fingerprint only.
pub fn fingerprint_bytes(&self) -> Result<FingerprintBytes>
fingerprint only.Calculate the SHA-256 fingerprint of this SubjectPublicKeyInfo as
a raw byte array.
See RFC7469 § 2.1.1 for more information.
Trait Implementations§
Source§impl<'arbitrary, Params: Arbitrary<'arbitrary>, Key: Arbitrary<'arbitrary>> Arbitrary<'arbitrary> for SubjectPublicKeyInfo<Params, Key>
impl<'arbitrary, Params: Arbitrary<'arbitrary>, Key: Arbitrary<'arbitrary>> Arbitrary<'arbitrary> for SubjectPublicKeyInfo<Params, Key>
Source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self from the given unstructured data. Read moreSource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self from the entirety of the given
unstructured data. Read moreSource§fn size_hint(depth: usize) -> (usize, Option<usize>)
fn size_hint(depth: usize) -> (usize, Option<usize>)
Get a size hint for how many bytes out of an
Unstructured this type
needs to construct itself. Read moreSource§fn try_size_hint(
depth: usize,
) -> Result<(usize, Option<usize>), MaxRecursionReached>
fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>
Get a size hint for how many bytes out of an
Unstructured this type
needs to construct itself. Read moreSource§impl<Params: Clone, Key: Clone> Clone for SubjectPublicKeyInfo<Params, Key>
impl<Params: Clone, Key: Clone> Clone for SubjectPublicKeyInfo<Params, Key>
Source§fn clone(&self) -> SubjectPublicKeyInfo<Params, Key>
fn clone(&self) -> SubjectPublicKeyInfo<Params, Key>
Returns a duplicate 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: 'k, 'k, Params, Key> DecodeValue<'a> for SubjectPublicKeyInfo<Params, Key>
impl<'a: 'k, 'k, Params, Key> DecodeValue<'a> for SubjectPublicKeyInfo<Params, Key>
Source§impl<'a, Params, Key> EncodeValue for SubjectPublicKeyInfo<Params, Key>
impl<'a, Params, Key> EncodeValue for SubjectPublicKeyInfo<Params, Key>
Source§impl<Params: PartialEq, Key: PartialEq> PartialEq for SubjectPublicKeyInfo<Params, Key>
impl<Params: PartialEq, Key: PartialEq> PartialEq for SubjectPublicKeyInfo<Params, Key>
Source§fn eq(&self, other: &SubjectPublicKeyInfo<Params, Key>) -> bool
fn eq(&self, other: &SubjectPublicKeyInfo<Params, Key>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<Params, Key> PemLabel for SubjectPublicKeyInfo<Params, Key>
Available on crate feature pem only.
impl<Params, Key> PemLabel for SubjectPublicKeyInfo<Params, Key>
Available on crate feature
pem only.Source§impl<'a, Params, Key> TryFrom<&'a [u8]> for SubjectPublicKeyInfo<Params, Key>
impl<'a, Params, Key> TryFrom<&'a [u8]> for SubjectPublicKeyInfo<Params, Key>
Source§impl<'a: 'k, 'k, Params, Key> TryFrom<&SubjectPublicKeyInfo<Params, Key>> for Document
Available on crate feature alloc only.
impl<'a: 'k, 'k, Params, Key> TryFrom<&SubjectPublicKeyInfo<Params, Key>> for Document
Available on crate feature
alloc only.Source§impl<'a: 'k, 'k, Params, Key> TryFrom<SubjectPublicKeyInfo<Params, Key>> for Document
Available on crate feature alloc only.
impl<'a: 'k, 'k, Params, Key> TryFrom<SubjectPublicKeyInfo<Params, Key>> for Document
Available on crate feature
alloc only.Source§impl<'a, Params, Key> ValueOrd for SubjectPublicKeyInfo<Params, Key>
impl<'a, Params, Key> ValueOrd for SubjectPublicKeyInfo<Params, Key>
impl<Params: Eq, Key: Eq> Eq for SubjectPublicKeyInfo<Params, Key>
impl<'a, Params, Key> Sequence<'a> for SubjectPublicKeyInfo<Params, Key>
impl<Params, Key> StructuralPartialEq for SubjectPublicKeyInfo<Params, Key>
Auto Trait Implementations§
impl<Params, Key> Freeze for SubjectPublicKeyInfo<Params, Key>
impl<Params, Key> RefUnwindSafe for SubjectPublicKeyInfo<Params, Key>where
Key: RefUnwindSafe,
Params: RefUnwindSafe,
impl<Params, Key> Send for SubjectPublicKeyInfo<Params, Key>
impl<Params, Key> Sync for SubjectPublicKeyInfo<Params, Key>
impl<Params, Key> Unpin for SubjectPublicKeyInfo<Params, Key>
impl<Params, Key> UnwindSafe for SubjectPublicKeyInfo<Params, Key>where
Key: UnwindSafe,
Params: UnwindSafe,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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> DecodePem for Twhere
T: DecodeOwned + PemLabel,
impl<T> DecodePem for Twhere
T: DecodeOwned + PemLabel,
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.