pub type DerObject<'a> = BerObject<'a>;
Available on crate feature
mtls
only.Expand description
Representation of a DER-encoded (X.690) object
Note that a DER object is just a BER object, with additional constraints.
Aliased Type§
struct DerObject<'a> {
pub header: Header<'a>,
pub content: BerObjectContent<'a>,
}
Fields§
§header: Header<'a>
§content: BerObjectContent<'a>