pub struct AlgorithmIdentifier {
pub algorithm: ObjectIdentifier,
pub parameters: Option<Any>,
}Expand description
Algorithm identifier with optional parameters
Fields§
§algorithm: ObjectIdentifierAlgorithm OID
parameters: Option<Any>Optional parameters (usually NULL for hash algorithms)
Implementations§
Source§impl AlgorithmIdentifier
impl AlgorithmIdentifier
Sourcepub fn to_hash_algorithm(&self) -> Option<HashAlgorithm>
pub fn to_hash_algorithm(&self) -> Option<HashAlgorithm>
Try to convert to a HashAlgorithm enum
Trait Implementations§
Source§impl Clone for AlgorithmIdentifier
impl Clone for AlgorithmIdentifier
Source§fn clone(&self) -> AlgorithmIdentifier
fn clone(&self) -> AlgorithmIdentifier
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 Debug for AlgorithmIdentifier
impl Debug for AlgorithmIdentifier
Source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for AlgorithmIdentifier
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for AlgorithmIdentifier
Source§impl<'__der_lifetime> EncodeValue for AlgorithmIdentifier
impl<'__der_lifetime> EncodeValue for AlgorithmIdentifier
Source§impl From<HashAlgorithm> for AlgorithmIdentifier
impl From<HashAlgorithm> for AlgorithmIdentifier
Source§fn from(algo: HashAlgorithm) -> Self
fn from(algo: HashAlgorithm) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AlgorithmIdentifier
impl PartialEq for AlgorithmIdentifier
impl Eq for AlgorithmIdentifier
impl<'__der_lifetime> Sequence<'__der_lifetime> for AlgorithmIdentifier
impl StructuralPartialEq for AlgorithmIdentifier
Auto Trait Implementations§
impl Freeze for AlgorithmIdentifier
impl RefUnwindSafe for AlgorithmIdentifier
impl Send for AlgorithmIdentifier
impl Sync for AlgorithmIdentifier
impl Unpin for AlgorithmIdentifier
impl UnsafeUnpin for AlgorithmIdentifier
impl UnwindSafe for AlgorithmIdentifier
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> 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.