synta 0.2.4

ASN.1 parser, decoder, and encoder library with DER/BER support and C FFI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! DER (Distinguished Encoding Rules) support
//!
//! DER is a deterministic subset of BER used in cryptography and security applications.
//! It requires:
//! - Definite length (no indefinite length)
//! - Shortest length encoding
//! - Primitive encoding for strings
//! - Sorted SET elements

pub mod decoder;
pub mod encoder;

pub use decoder::Decoder;
pub use encoder::Encoder;