Compatible with rustc 1.85. Minimal rustc version bumps happen only with minor number bumps in this project.
picky-krb
Provides implementation for types defined in RFC 4120.
Serializing and deserializing Kerberos structures
Use picky_asn1_der::from_bytes for deserialization from binary, for example:
use AsRep;
let as_rep: AsRep = from_bytes.unwrap;
And picky_asn1_der::to_vec for serialization to binary, for example:
use TgsReq;
let tgs_req: TgsReq = from_bytes.unwrap;
let tgs_req_encoded = to_vec.unwrap;