Struct ed25519_dalek::pkcs8::spki::SubjectPublicKeyInfo
pub struct SubjectPublicKeyInfo<Params, Key> {
pub algorithm: AlgorithmIdentifier<Params>,
pub subject_public_key: Key,
}
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<Params>
X.509 AlgorithmIdentifier
for the public key type
subject_public_key: Key
Public key data
Trait Implementations§
§impl<Params, Key> Clone for SubjectPublicKeyInfo<Params, Key>where
Params: Clone,
Key: Clone,
impl<Params, Key> Clone for SubjectPublicKeyInfo<Params, Key>where Params: Clone, Key: Clone,
§fn clone(&self) -> SubjectPublicKeyInfo<Params, Key>
fn clone(&self) -> SubjectPublicKeyInfo<Params, Key>
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<Params, Key> Debug for SubjectPublicKeyInfo<Params, Key>where
Params: Debug,
Key: Debug,
impl<Params, Key> Debug for SubjectPublicKeyInfo<Params, Key>where Params: Debug, Key: Debug,
§impl<'a, 'k, Params, Key> DecodeValue<'a> for SubjectPublicKeyInfo<Params, Key>where
'a: 'k,
Key: 'k + Decode<'a>,
Params: Choice<'a> + Encode,
impl<'a, 'k, Params, Key> DecodeValue<'a> for SubjectPublicKeyInfo<Params, Key>where 'a: 'k, Key: 'k + Decode<'a>, Params: Choice<'a> + Encode,
§fn decode_value<R>(
reader: &mut R,
header: Header
) -> Result<SubjectPublicKeyInfo<Params, Key>, Error>where
R: Reader<'a>,
fn decode_value<R>( reader: &mut R, header: Header ) -> Result<SubjectPublicKeyInfo<Params, Key>, Error>where R: Reader<'a>,
Attempt to decode this message using the provided
Reader
.§impl<'a, Params, Key> EncodeValue for SubjectPublicKeyInfo<Params, Key>where
Params: Choice<'a> + Encode,
Key: Encode,
impl<'a, Params, Key> EncodeValue for SubjectPublicKeyInfo<Params, Key>where Params: Choice<'a> + Encode, Key: Encode,
§impl OwnedToRef for SubjectPublicKeyInfo<Any, BitString>
impl OwnedToRef for SubjectPublicKeyInfo<Any, BitString>
§type Borrowed<'a> = SubjectPublicKeyInfo<AnyRef<'a>, BitStringRef<'a>>
type Borrowed<'a> = SubjectPublicKeyInfo<AnyRef<'a>, BitStringRef<'a>>
The resulting type referencing back to Self
§fn owned_to_ref(
&self
) -> <SubjectPublicKeyInfo<Any, BitString> as OwnedToRef>::Borrowed<'_>
fn owned_to_ref( &self ) -> <SubjectPublicKeyInfo<Any, BitString> as OwnedToRef>::Borrowed<'_>
Creates a new object referencing back to the self for storage
§impl<Params, Key> PartialEq<SubjectPublicKeyInfo<Params, Key>> for SubjectPublicKeyInfo<Params, Key>where
Params: PartialEq<Params>,
Key: PartialEq<Key>,
impl<Params, Key> PartialEq<SubjectPublicKeyInfo<Params, Key>> for SubjectPublicKeyInfo<Params, Key>where Params: PartialEq<Params>, Key: PartialEq<Key>,
§fn eq(&self, other: &SubjectPublicKeyInfo<Params, Key>) -> bool
fn eq(&self, other: &SubjectPublicKeyInfo<Params, Key>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§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.§impl<'a> RefToOwned<'a> for SubjectPublicKeyInfo<AnyRef<'a>, BitStringRef<'a>>
impl<'a> RefToOwned<'a> for SubjectPublicKeyInfo<AnyRef<'a>, BitStringRef<'a>>
§type Owned = SubjectPublicKeyInfo<Any, BitString>
type Owned = SubjectPublicKeyInfo<Any, BitString>
The resulting type after obtaining ownership.
§fn ref_to_owned(
&self
) -> <SubjectPublicKeyInfo<AnyRef<'a>, BitStringRef<'a>> as RefToOwned<'a>>::Owned
fn ref_to_owned( &self ) -> <SubjectPublicKeyInfo<AnyRef<'a>, BitStringRef<'a>> as RefToOwned<'a>>::Owned
Creates a new object taking ownership of the data
§impl<'a, Params, Key> TryFrom<&'a [u8]> for SubjectPublicKeyInfo<Params, Key>where
Params: Choice<'a> + Encode,
Key: Decode<'a> + Encode + FixedTag,
impl<'a, Params, Key> TryFrom<&'a [u8]> for SubjectPublicKeyInfo<Params, Key>where Params: Choice<'a> + Encode, Key: Decode<'a> + Encode + FixedTag,
§impl<'a, 'k, Params, Key> TryFrom<&SubjectPublicKeyInfo<Params, Key>> for Documentwhere
'a: 'k,
Key: 'k + Decode<'a> + Encode + FixedTag,
Params: Choice<'a> + Encode,
BitStringRef<'a>: From<&'k Key>,
Available on crate feature alloc
only.
impl<'a, 'k, Params, Key> TryFrom<&SubjectPublicKeyInfo<Params, Key>> for Documentwhere 'a: 'k, Key: 'k + Decode<'a> + Encode + FixedTag, Params: Choice<'a> + Encode, BitStringRef<'a>: From<&'k Key>,
Available on crate feature
alloc
only.source§impl TryFrom<SubjectPublicKeyInfo<AnyRef<'_>, BitStringRef<'_>>> for PublicKeyBytes
impl TryFrom<SubjectPublicKeyInfo<AnyRef<'_>, BitStringRef<'_>>> for PublicKeyBytes
source§fn try_from(
spki: SubjectPublicKeyInfo<AnyRef<'_>, BitStringRef<'_>>
) -> Result<PublicKeyBytes, Error>
fn try_from( spki: SubjectPublicKeyInfo<AnyRef<'_>, BitStringRef<'_>> ) -> Result<PublicKeyBytes, Error>
Performs the conversion.
source§impl TryFrom<SubjectPublicKeyInfo<AnyRef<'_>, BitStringRef<'_>>> for VerifyingKey
impl TryFrom<SubjectPublicKeyInfo<AnyRef<'_>, BitStringRef<'_>>> for VerifyingKey
§impl<'a, 'k, Params, Key> TryFrom<SubjectPublicKeyInfo<Params, Key>> for Documentwhere
'a: 'k,
Key: 'k + Decode<'a> + Encode + FixedTag,
Params: Choice<'a> + Encode,
BitStringRef<'a>: From<&'k Key>,
Available on crate feature alloc
only.
impl<'a, 'k, Params, Key> TryFrom<SubjectPublicKeyInfo<Params, Key>> for Documentwhere 'a: 'k, Key: 'k + Decode<'a> + Encode + FixedTag, Params: Choice<'a> + Encode, BitStringRef<'a>: From<&'k Key>,
Available on crate feature
alloc
only.§impl<'a, Params, Key> ValueOrd for SubjectPublicKeyInfo<Params, Key>where
Params: Choice<'a> + DerOrd + Encode,
Key: ValueOrd,
impl<'a, Params, Key> ValueOrd for SubjectPublicKeyInfo<Params, Key>where Params: Choice<'a> + DerOrd + Encode, Key: ValueOrd,
impl<Params, Key> Eq for SubjectPublicKeyInfo<Params, Key>where Params: Eq, Key: Eq,
impl<'a, Params, Key> Sequence<'a> for SubjectPublicKeyInfo<Params, Key>where Params: Choice<'a> + Encode, Key: Decode<'a> + Encode + FixedTag,
impl<Params, Key> StructuralEq for SubjectPublicKeyInfo<Params, Key>
impl<Params, Key> StructuralPartialEq for SubjectPublicKeyInfo<Params, Key>
Auto Trait Implementations§
impl<Params, Key> RefUnwindSafe for SubjectPublicKeyInfo<Params, Key>where Key: RefUnwindSafe, Params: RefUnwindSafe,
impl<Params, Key> Send for SubjectPublicKeyInfo<Params, Key>where Key: Send, Params: Send,
impl<Params, Key> Sync for SubjectPublicKeyInfo<Params, Key>where Key: Sync, Params: Sync,
impl<Params, Key> Unpin for SubjectPublicKeyInfo<Params, Key>where Key: Unpin, Params: Unpin,
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
§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> DecodePem for Twhere
T: DecodeOwned + PemLabel,
impl<T> DecodePem for Twhere T: DecodeOwned + PemLabel,
§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 impl Writer) -> Result<(), Error>
fn encode(&self, writer: &mut impl 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.