Struct spki::AlgorithmIdentifier
source · pub struct AlgorithmIdentifier<'a> {
pub oid: ObjectIdentifier,
pub parameters: Option<AnyRef<'a>>,
}
Expand description
X.509 AlgorithmIdentifier
as defined in RFC 5280 Section 4.1.1.2.
AlgorithmIdentifier ::= SEQUENCE {
algorithm OBJECT IDENTIFIER,
parameters ANY DEFINED BY algorithm OPTIONAL }
Fields§
§oid: ObjectIdentifier
Algorithm OID, i.e. the algorithm
field in the AlgorithmIdentifier
ASN.1 schema.
parameters: Option<AnyRef<'a>>
Algorithm parameters
.
Implementations§
source§impl<'a> AlgorithmIdentifier<'a>
impl<'a> AlgorithmIdentifier<'a>
sourcepub fn assert_algorithm_oid(
&self,
expected_oid: ObjectIdentifier
) -> Result<ObjectIdentifier>
pub fn assert_algorithm_oid( &self, expected_oid: ObjectIdentifier ) -> Result<ObjectIdentifier>
Assert the algorithm
OID is an expected value.
sourcepub fn assert_parameters_oid(
&self,
expected_oid: ObjectIdentifier
) -> Result<ObjectIdentifier>
pub fn assert_parameters_oid( &self, expected_oid: ObjectIdentifier ) -> Result<ObjectIdentifier>
Assert parameters
is an OID and has the expected value.
sourcepub fn assert_oids(
&self,
algorithm: ObjectIdentifier,
parameters: ObjectIdentifier
) -> Result<()>
pub fn assert_oids( &self, algorithm: ObjectIdentifier, parameters: ObjectIdentifier ) -> Result<()>
Assert the values of the algorithm
and parameters
OIDs.
sourcepub fn parameters_any(&self) -> Result<AnyRef<'a>>
pub fn parameters_any(&self) -> Result<AnyRef<'a>>
Get the parameters
field as an AnyRef
.
Returns an error if parameters
are None
.
sourcepub fn parameters_oid(&self) -> Result<ObjectIdentifier>
pub fn parameters_oid(&self) -> Result<ObjectIdentifier>
Get the parameters
field as an ObjectIdentifier
.
Returns an error if it is absent or not an OID.
sourcepub fn oids(&self) -> Result<(ObjectIdentifier, Option<ObjectIdentifier>)>
pub fn oids(&self) -> Result<(ObjectIdentifier, Option<ObjectIdentifier>)>
Convert to a pair of ObjectIdentifier
s.
This method is helpful for decomposing in match statements. Note in
particular that NULL
parameters are treated the same as missing
parameters.
Returns an error if parameters are present but not an OID.
Trait Implementations§
source§impl<'a> Clone for AlgorithmIdentifier<'a>
impl<'a> Clone for AlgorithmIdentifier<'a>
source§fn clone(&self) -> AlgorithmIdentifier<'a>
fn clone(&self) -> AlgorithmIdentifier<'a>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<'a> Debug for AlgorithmIdentifier<'a>
impl<'a> Debug for AlgorithmIdentifier<'a>
source§impl<'a> DecodeValue<'a> for AlgorithmIdentifier<'a>
impl<'a> DecodeValue<'a> for AlgorithmIdentifier<'a>
source§impl<'a> Ord for AlgorithmIdentifier<'a>
impl<'a> Ord for AlgorithmIdentifier<'a>
source§fn cmp(&self, other: &AlgorithmIdentifier<'a>) -> Ordering
fn cmp(&self, other: &AlgorithmIdentifier<'a>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
source§impl<'a> PartialEq<AlgorithmIdentifier<'a>> for AlgorithmIdentifier<'a>
impl<'a> PartialEq<AlgorithmIdentifier<'a>> for AlgorithmIdentifier<'a>
source§fn eq(&self, other: &AlgorithmIdentifier<'a>) -> bool
fn eq(&self, other: &AlgorithmIdentifier<'a>) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl<'a> PartialOrd<AlgorithmIdentifier<'a>> for AlgorithmIdentifier<'a>
impl<'a> PartialOrd<AlgorithmIdentifier<'a>> for AlgorithmIdentifier<'a>
source§fn partial_cmp(&self, other: &AlgorithmIdentifier<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &AlgorithmIdentifier<'a>) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl<'a> Sequence<'a> for AlgorithmIdentifier<'a>
impl<'a> Sequence<'a> for AlgorithmIdentifier<'a>
source§impl<'a> TryFrom<&'a [u8]> for AlgorithmIdentifier<'a>
impl<'a> TryFrom<&'a [u8]> for AlgorithmIdentifier<'a>
source§impl ValueOrd for AlgorithmIdentifier<'_>
impl ValueOrd for AlgorithmIdentifier<'_>
impl<'a> Copy for AlgorithmIdentifier<'a>
impl<'a> Eq for AlgorithmIdentifier<'a>
impl<'a> StructuralEq for AlgorithmIdentifier<'a>
impl<'a> StructuralPartialEq for AlgorithmIdentifier<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for AlgorithmIdentifier<'a>
impl<'a> Send for AlgorithmIdentifier<'a>
impl<'a> Sync for AlgorithmIdentifier<'a>
impl<'a> Unpin for AlgorithmIdentifier<'a>
impl<'a> UnwindSafe for AlgorithmIdentifier<'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
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> 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 dyn Writer) -> Result<(), Error>
fn encode(&self, writer: &mut dyn Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Writer
.