der 0.1.0

Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules (DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! ASN.1 types.
//!
//! Includes built-in ASN.1 types and helper types for modeling ASN.1 concepts.

pub(crate) mod any;
pub(crate) mod bit_string;
pub(crate) mod boolean;
pub(crate) mod integer;
pub(crate) mod null;
pub(crate) mod octet_string;
#[cfg(feature = "oid")]
pub(crate) mod oid;
pub(crate) mod optional;
pub mod sequence;