pub type AlgorithmIdentifierWithOid = AlgorithmIdentifier<ObjectIdentifier>;
Expand description

AlgorithmIdentifier with ObjectIdentifier parameters.

Aliased Type§

struct AlgorithmIdentifierWithOid {
    pub oid: ObjectIdentifier,
    pub parameters: Option<ObjectIdentifier>,
}

Fields§

§oid: ObjectIdentifier

Algorithm OID, i.e. the algorithm field in the AlgorithmIdentifier ASN.1 schema.

§parameters: Option<ObjectIdentifier>

Algorithm parameters.