A parser for Basic Encoding Rules (BER [[X.690]]) and Distinguished Encoding Rules(DER [[X.690]]), implemented with the nom parser combinator framework.
The code is available on Github and is part of the Rusticata project.
There are two different approaches for parsing DER objects: reading the objects recursively as long as the tags are known, or specifying a description of the expected objects (generally from the ASN.1 description).
The first parsing method can be done using the parse_ber
and
parse_der
methods.
However, it cannot fully parse all objects, especially those containing IMPLICIT, OPTIONAL, or
DEFINED BY items.
```rust use derparser::parseder;
let bytes = [ 0x30, 0x0a, 0x02, 0x03, 0x01, 0x00, 0x01, 0x02, 0x03, 0x01, 0x00, 0x00, ];
let parsed = parse_der(&bytes); ```
The second (and preferred) parsing method is to specify the expected objects recursively. The
following macros can be used:
parse_der_sequence_defined
and similar functions,
parse_der_struct
, etc.
For example, to read a sequence containing two integers:
```rust use der_parser::ber::*; use nom::{IResult,Err,ErrorKind};
fn localparseseq(i:&[u8]) -> IResult<&[u8],BerObject> { parsedersequencedefined!(i, parseberinteger, parseberinteger ) } let bytes = [ 0x30, 0x0a, 0x02, 0x03, 0x01, 0x00, 0x01, 0x02, 0x03, 0x01, 0x00, 0x00, ]; let parsed = localparse_seq(&bytes); ```
All functions return an IResult
object from nom
: the parsed
BerObject
, an Incomplete
value, or an error.
parse_der
.BerObject
and DerObject
are the same objects (type alias). The only difference is the
verification of constraints during parsing.BerObject::as_u32
(knowning that this method will
return an error if the integer is too large), BerObject::as_u64
,
or use the bigint
feature of this crate and use
BerObject::as_bigint
.[[X.690]] ASN.1 encoding rules: Specification of Basic Encoding Rules (BER), Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER).
Specification of basic notation." Basic Encoding Rules (BER), Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER)."
ber_read_element_content
parse_der_u32
and parse_der_u64
to quickly parse integersOid::from_vec
, Oid::from
does the sameBitStringObject
to wrap BitString objectsparse_der
DerObject::as_u64
DerObject::as_oid_val
parse_der_struct!
variant to check tagparse_der_application!
parse_der_tagged!
to parse [x] EXPLICIT
or [x] IMPLICIT
tagged valuesparse_der_struct!
tag_of_der_content()
to DerObjectContent::tag
parse_der_defined
because it allows using macrosDerObject::new_int
to DerObject::from_int_slice
Oid::to_hex
to Oid::to_string
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.