Struct ed25519_dalek::pkcs8::spki::SubjectPublicKeyInfo
pub struct SubjectPublicKeyInfo<'a> {
pub algorithm: AlgorithmIdentifier<'a>,
pub subject_public_key: &'a [u8],
}
Available on crate feature
pkcs8
only.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<'a>
X.509 AlgorithmIdentifier
for the public key type
subject_public_key: &'a [u8]
Public key data
Trait Implementations§
§impl<'a> Clone for SubjectPublicKeyInfo<'a>
impl<'a> Clone for SubjectPublicKeyInfo<'a>
§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 more§impl<'a> Debug for SubjectPublicKeyInfo<'a>
impl<'a> Debug for SubjectPublicKeyInfo<'a>
§impl<'a> DecodeValue<'a> for SubjectPublicKeyInfo<'a>
impl<'a> DecodeValue<'a> for SubjectPublicKeyInfo<'a>
§fn decode_value<R>(
reader: &mut R,
header: Header
) -> Result<SubjectPublicKeyInfo<'a>, Error>where
R: Reader<'a>,
fn decode_value<R>(
reader: &mut R,
header: Header
) -> Result<SubjectPublicKeyInfo<'a>, Error>where
R: Reader<'a>,
Attempt to decode this message using the provided
Reader
.§impl<'a> PartialEq<SubjectPublicKeyInfo<'a>> for SubjectPublicKeyInfo<'a>
impl<'a> PartialEq<SubjectPublicKeyInfo<'a>> for SubjectPublicKeyInfo<'a>
§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 ==
.§impl<'a> Sequence<'a> for SubjectPublicKeyInfo<'a>
impl<'a> Sequence<'a> for SubjectPublicKeyInfo<'a>
§impl<'a> TryFrom<&'a [u8]> for SubjectPublicKeyInfo<'a>
impl<'a> TryFrom<&'a [u8]> for SubjectPublicKeyInfo<'a>
§impl TryFrom<&SubjectPublicKeyInfo<'_>> for Document
Available on crate feature alloc
only.
impl TryFrom<&SubjectPublicKeyInfo<'_>> for Document
Available on crate feature
alloc
only.§impl TryFrom<SubjectPublicKeyInfo<'_>> for Document
Available on crate feature alloc
only.
impl TryFrom<SubjectPublicKeyInfo<'_>> for Document
Available on crate feature
alloc
only.source§impl TryFrom<SubjectPublicKeyInfo<'_>> for PublicKeyBytes
impl TryFrom<SubjectPublicKeyInfo<'_>> for PublicKeyBytes
source§fn try_from(spki: SubjectPublicKeyInfo<'_>) -> Result<PublicKeyBytes, Error>
fn try_from(spki: SubjectPublicKeyInfo<'_>) -> Result<PublicKeyBytes, Error>
Performs the conversion.
source§impl TryFrom<SubjectPublicKeyInfo<'_>> for VerifyingKey
impl TryFrom<SubjectPublicKeyInfo<'_>> for VerifyingKey
§impl ValueOrd for SubjectPublicKeyInfo<'_>
impl ValueOrd for SubjectPublicKeyInfo<'_>
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§
§impl<'a, T> Choice<'a> for Twhere
T: Decode<'a> + FixedTag,
impl<'a, T> Choice<'a> for Twhere
T: Decode<'a> + FixedTag,
§fn can_decode(tag: Tag) -> bool
fn can_decode(tag: Tag) -> bool
Is the provided
Tag
decodable as a variant of this CHOICE
?§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
§impl<T> DerOrd for Twhere
T: EncodeValue + ValueOrd + Tagged,
impl<T> DerOrd for Twhere
T: EncodeValue + ValueOrd + Tagged,
§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
§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.
§fn encode(&self, writer: &mut dyn Writer) -> Result<(), Error>
fn encode(&self, writer: &mut dyn Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Writer
.
§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.