Expand description
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
Modules§
Structs§
- Represent addresses of Kerberos actors.
- To store an array of credentials.
- String used by ccache.
- Represents a credential stored in ccache.
- Type of Header.
- Header of CCache
- Represents the session key.
- Name of some Kerberos entity.
- Holds the differents timestamps handled by Kerberos.
Enums§
- Type of error in kerbeiros library.
- The
Err
enum indicates the parser was not successful
Type Aliases§
- Container that encapsules different types of preauthentication data structures.
- Result to wrap kerbeiros error.
- Holds the result of parsing functions