veridian_kernel/net/kerberos/mod.rs
1//! Kerberos v5 Protocol Implementation (RFC 4120)
2//!
3//! Provides Kerberos authentication with AS-REQ/AS-REP, TGS-REQ/TGS-REP
4//! message construction and parsing, ticket caching, and key derivation
5//! stubs for AES-CTS-HMAC-SHA1.
6
7#![allow(dead_code)]
8
9pub mod ccache;
10pub mod protocol;