Type Alias ed25519_dalek::pkcs8::spki::AlgorithmIdentifierWithOid
pub type AlgorithmIdentifierWithOid = AlgorithmIdentifier<ObjectIdentifier>;
Available on crate feature
pkcs8
only.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
.