2 releases
0.4.1 | Jul 3, 2024 |
---|---|
0.4.0 | Jun 21, 2024 |
#682 in Authentication
65 downloads per month
Used in 3 crates
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