Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nlnetlabs/bcder
Handling of BER, CER, and DER encoded data in Rust.
https://github.com/nlnetlabs/bcder
asn1 ber cer der parser rpki rust
Last synced: 2 months ago
JSON representation
Handling of BER, CER, and DER encoded data in Rust.
- Host: GitHub
- URL: https://github.com/nlnetlabs/bcder
- Owner: NLnetLabs
- License: bsd-3-clause
- Created: 2018-07-27T12:06:05.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-01-10T13:08:01.000Z (about 1 year ago)
- Last Synced: 2024-10-31T11:26:12.418Z (3 months ago)
- Topics: asn1, ber, cer, der, parser, rpki, rust
- Language: Rust
- Homepage:
- Size: 341 KB
- Stars: 18
- Watchers: 12
- Forks: 11
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# bcder – BER, CER, and DER Encoding and Decoding for Rust
This crate provides decoding and encoding for Basic Encoding Rules
(BER) of the ASN.1 standard as well as the more strict variants
Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER).
It provides the basic machinery as well as implementation for the most
important universal types of ASN.1.## Usage
Add the following dependency to your `Cargo.toml`:
```
[dependencies]
bcder = "^0.1"
```A guide introducing ASN.1, BER, and how to use this crate is part of the
source as the [`ber::guide`] module.[`bcder::guide`]: https://docs.rs/bcder/0.1/bcder/guide/index.html
## Contributing
If you have comments, proposed changes, or would like to contribute,
please open an issue.## License
_bcder_ is distributed under the terms of the BSD-3-clause license. See
LICENSE for details.