awol2005ex_kerberos_ccache

Crates.ioawol2005ex_kerberos_ccache
lib.rsawol2005ex_kerberos_ccache
version0.4.2
created_at2025-10-28 02:52:55.828501+00
updated_at2025-10-28 02:52:55.828501+00
descriptionLibrary to parse ccache kerberos structures
homepage
repositoryhttps://github.com/awol2005ex/kerbeiros/tree/awol2005ex-br-20251028
max_upload_size
id1904013
size155,859
(awol2005ex)

documentation

README

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

Commit count: 0

cargo fmt