Type Alias ed25519_dalek::pkcs8::spki::AlgorithmIdentifierRef
pub type AlgorithmIdentifierRef<'a> = AlgorithmIdentifier<AnyRef<'a>>;
Available on crate feature
pkcs8
only.Expand description
AlgorithmIdentifier
reference which has AnyRef
parameters.
Aliased Type§
struct AlgorithmIdentifierRef<'a> {
pub oid: ObjectIdentifier,
pub parameters: Option<AnyRef<'a>>,
}
Fields§
§oid: ObjectIdentifier
Algorithm OID, i.e. the algorithm
field in the AlgorithmIdentifier
ASN.1 schema.
parameters: Option<AnyRef<'a>>
Algorithm parameters
.