#kerberos #parser #credentials #ccache #structures #store #client

himmelblau_kerberos_ccache

Library to parse ccache kerberos structures

2 releases

0.4.1 Jul 3, 2024
0.4.0 Jun 21, 2024

#682 in Authentication

Download history 5/week @ 2024-08-26 26/week @ 2024-09-16 13/week @ 2024-09-23 3/week @ 2024-09-30 1/week @ 2024-10-14 64/week @ 2024-11-04

65 downloads per month
Used in 3 crates

AGPL-3.0

285KB
6K SLoC

Types used to store Kerberos credentials in a ccache

Example

Load and save into a file:

use kerberos_ccache::CCache;
use std::fs;

let data = fs::read("./bob_tgt.ccache").expect("Unable to read file");

let ccache = CCache::parse(&data)
    .expect("Unable to parse file content")
    .1;

let data_2 = ccache.build();
fs::write("./bob_tgt2.ccache", data_2).expect("Unable to write file");

References


lib.rs:

Types used to store Kerberos credentials in a ccache

Example

Load and save into a file:

use himmelblau_kerberos_ccache::CCache;
use std::fs;

let data = fs::read("./bob_tgt.ccache").expect("Unable to read file");

let ccache = CCache::parse(&data)
    .expect("Unable to parse file content")
    .1;

let data_2 = ccache.build();
fs::write("./bob_tgt2.ccache", data_2).expect("Unable to write file");

References

Dependencies

~4MB
~83K SLoC