2 releases
0.4.1 | Jul 3, 2024 |
---|---|
0.4.0 | Jun 21, 2024 |
#916 in Parser implementations
Used in cerbero-lib
23KB
526 lines
Kerbeiros
Kerberos client
Concepts
- KDC (Key Distribution Center): Service that distributes the tickets. The host that provides this server is also called KDC.
- TGS (Ticket Granting Server): Ticket used to authenticate the user against a specified service.
- TGT (Ticket Granting Ticket): Ticket used to retrieve the TGS's from the KDC.
Examples
Asking for a TGT:
use kerbeiros::*;
use ascii::AsciiString;
use std::net::*;
// Prepare the arguments
let realm = AsciiString::from_ascii("CONTOSO.COM").unwrap();
let kdc_address = IpAddr::V4(Ipv4Addr::new(192, 168, 0, 1));
let username = AsciiString::from_ascii("Bob").unwrap();
let user_key = Key::Password("S3cr3t".to_string());
// Request the TGT
let tgt_requester = TgtRequester::new(realm, kdc_address);
let credential = tgt_requester.request(&username, Some(&user_key)).unwrap();
// Save the ticket into a Windows format file
credential.save_into_krb_cred_file("bob_tgt.krb").unwrap();
// Save the ticket into a Linux format file
credential.save_into_ccache_file("bob_tgt.ccache").unwrap();
Development
Code style
Follow the rustfmt code style.
To format code:
cargo fmt
Test
To run tests:
cargo test
References
lib.rs
:
Types used to store Kerberos credentials in a keytab
Example
Load and save into a file:
use himmelblau_kerberos_keytab::Keytab;
use std::fs;
let data = fs::read("./user.keytab").expect("Unable to read file");
let keytab = Keytab::parse(&data)
.expect("Unable to parse file content")
.1;
let data_2 = keytab.build();
fs::write("./user2.keytab", data_2).expect("Unable to write file");
References
Dependencies
~1MB
~19K SLoC