Type Definition asn1_rs::PrivateExplicit
source · [−]pub type PrivateExplicit<T, E, const TAG: u32> = TaggedValue<T, E, Explicit, { Class::PRIVATE }, TAG>;
Expand description
A helper object to parse [PRIVATE n] EXPLICIT T
A helper object implementing FromBer
and FromDer
, to
parse explicit private-tagged values.
Examples
To parse a [PRIVATE 0] EXPLICIT INTEGER
object:
use asn1_rs::{Error, FromBer, Integer, PrivateExplicit, TaggedValue};
let bytes = &[0xe0, 0x03, 0x2, 0x1, 0x2];
// If tagged object is present (and has expected tag), parsing succeeds:
let (_, tagged) = PrivateExplicit::<Integer, Error, 0>::from_ber(bytes).unwrap();
assert_eq!(tagged, TaggedValue::explicit(Integer::from(2)));