asn1_codecs/lib.rs
1//! Codec support for ASN.1 Types.
2
3#![allow(dead_code)]
4mod per;
5
6#[doc(inline)]
7pub use per::PerCodecData;
8
9#[doc(inline)]
10pub use per::PerCodecError;
11
12#[doc(inline)]
13pub use per::PerCodecErrorCause;
14
15#[doc(inline)]
16pub use per::aper;
17
18#[doc(inline)]
19pub use per::uper;
20
21// For now making this public, eventually when we have a proper sequence extensions support, this
22// will not be required anyways.
23pub use per::common::decode::decode_sequence_extensions_skip_bits;