[][src]Struct picky_asn1_x509::algorithm_identifier::DigestInfo

pub struct DigestInfo {
    pub oid: AlgorithmIdentifier,
    pub digest: OctetStringAsn1,
}

PKCS #1: RSA Cryptography Specifications Version 2.2

Section 9.2

The type DigestInfo has the syntax:

   DigestInfo ::= SEQUENCE {
       digestAlgorithm AlgorithmIdentifier,
       digest OCTET STRING
   }

Fields

oid: AlgorithmIdentifierdigest: OctetStringAsn1

Trait Implementations

impl Clone for DigestInfo[src]

impl Debug for DigestInfo[src]

impl<'de> Deserialize<'de> for DigestInfo[src]

impl PartialEq<DigestInfo> for DigestInfo[src]

impl Serialize for DigestInfo[src]

impl StructuralPartialEq for DigestInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.