#asn1-der #kerberos #parser #structures #decoding #structs #protocols

kerberos_asn1

Parse/Build Kerberos ASN1 DER To/From Rust structs

11 releases

0.2.1 Dec 23, 2020
0.2.0 May 31, 2020
0.1.0 May 22, 2020
0.0.8 May 13, 2020

#280 in Authentication

Download history 141/week @ 2024-01-11 110/week @ 2024-01-18 115/week @ 2024-01-25 64/week @ 2024-02-01 77/week @ 2024-02-08 55/week @ 2024-02-15 84/week @ 2024-02-22 79/week @ 2024-02-29 83/week @ 2024-03-07 53/week @ 2024-03-14 53/week @ 2024-03-21 96/week @ 2024-03-28 79/week @ 2024-04-04 103/week @ 2024-04-11 85/week @ 2024-04-18 80/week @ 2024-04-25

383 downloads per month
Used in 5 crates (4 directly)

AGPL-3.0

170KB
3.5K SLoC

Kerberos ASN1

This library defines the ASN1 structures used by the Kerberos protocol as Rust structs. Based in the red_asn1 library.

Each type defined in this library provides a method parse to parse an array of bytes and create the type, and a method build to create an array of bytes from the type and its values.

Examples

Decoding a string of Kerberos:

use kerberos_asn1::KerberosString;
use red_asn1::Asn1Object;

let raw_string = &[
                0x1b, 0x0e, 0x4b, 0x49, 0x4e, 0x47, 0x44, 0x4f, 0x4d, 0x2e,
                0x48, 0x45, 0x41, 0x52, 0x54, 0x53,
            ];
let (rest_raw, kerberos_string) = KerberosString::parse(raw_string).unwrap();

assert_eq!("KINGDOM.HEARTS", kerberos_string);  

References

Dependencies

~4.5MB
~89K SLoC