78 releases
| new 0.28.7 | Jan 22, 2026 |
|---|---|
| 0.28.2 | Dec 23, 2025 |
| 0.28.1 | Nov 19, 2025 |
| 0.27.0 | Jun 27, 2025 |
| 0.3.1 | Jul 19, 2021 |
#1262 in Encoding
678 downloads per month
Used in 6 crates
1MB
25K
SLoC
Structure of Management Information
rasn-smi is an implementation of the ASN.1 data types from the IETF RFCs
1155 and 2578 on the Structure of Management Information the rasn
codec framework. These definitions are both transport layer agnostic,
and encoding rule agnostic.
// Replace with your data.
let data: &[u8] = &[];
// Decode object from BER.
let object: rasn_smi::v2::ObjectSyntax = rasn::ber::decode(&data).unwrap();
// Encode it back into DER
let data = rasn::der::encode(&object).unwrap();
Dependencies
~6MB
~119K SLoC