1 //! Basic Encoding Rules (BER) objects and parser
2 
3 use crate::ber::{BerObject, BerTag};
4 
5 mod parser;
6 pub use crate::der::parser::*;
7 
8 /// DER tag (same as BER tag)
9 pub type DerTag = BerTag;
10 
11 /// Representation of a DER-encoded (X.690) object
12 ///
13 /// Note that a DER object is just a BER object, with additional constraints.
14 pub type DerObject<'a> = BerObject<'a>;
15