10 releases

0.4.1 Aug 24, 2023
0.4.0 Nov 8, 2022
0.3.1 May 20, 2022
0.3.0 Feb 2, 2022
0.2.0 Dec 23, 2019

#112 in Encoding

Download history 5062/week @ 2023-12-11 5413/week @ 2023-12-18 2899/week @ 2023-12-25 5506/week @ 2024-01-01 8967/week @ 2024-01-08 9613/week @ 2024-01-15 13788/week @ 2024-01-22 12051/week @ 2024-01-29 12846/week @ 2024-02-05 9900/week @ 2024-02-12 7982/week @ 2024-02-19 9286/week @ 2024-02-26 7141/week @ 2024-03-04 8858/week @ 2024-03-11 7928/week @ 2024-03-18 6768/week @ 2024-03-25

30,974 downloads per month
Used in 35 crates (10 directly)

MIT/Apache

155KB
3K SLoC

Crates.io docs.rs Crates.io

Compatible with rustc 1.60. Minimal rustc version bumps happen only with minor number bumps in this project.

picky-asn1-der

Portions of project serde_asn1_der are held by Keziah Biermann, 2019 as part of this project.

This crate implements an ASN.1-DER subset for serde.

The following types have built-in support:

  • bool: The ASN.1-BOOLEAN-type
  • u8, u16, u32, u64, u128, usize: The ASN.1-INTEGER-type
  • (): The ASN.1-NULL-type
  • &[u8], Vec<u8>: The ASN.1-OctetString-type
  • &str, String: The ASN.1-UTF8String-type

More advanced types are supported through wrappers:

  • Integer (as big integer)
  • Bit String
  • Object Identifier
  • Utf8 String
  • Numeric String
  • Printable String
  • IA5 String
  • Generalized Time
  • UTC Time
  • Application Tags from 0 to 15
  • Context Tags from 0 to 15

Everything sequence-like combined out of these types is also supported out of the box.

Check out doc.rs for tested code examples.

Dependencies

~0.5–1.1MB
~25K SLoC