12 releases

0.5.1 Nov 26, 2024
0.5.0 Jul 15, 2024
0.4.1 Aug 24, 2023
0.4.0 Nov 8, 2022
0.2.0 Dec 23, 2019

#107 in Encoding

Download history 6542/week @ 2024-09-21 9626/week @ 2024-09-28 10527/week @ 2024-10-05 8718/week @ 2024-10-12 9855/week @ 2024-10-19 8872/week @ 2024-10-26 9266/week @ 2024-11-02 8595/week @ 2024-11-09 8278/week @ 2024-11-16 9617/week @ 2024-11-23 10636/week @ 2024-11-30 11382/week @ 2024-12-07 11901/week @ 2024-12-14 5284/week @ 2024-12-21 5470/week @ 2024-12-28 7304/week @ 2025-01-04

32,103 downloads per month
Used in 56 crates (16 directly)

MIT/Apache

155KB
3K SLoC

Crates.io docs.rs Crates.io

Compatible with rustc 1.61. 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.4–1MB
~21K SLoC