cerbero-lib 0.0.20

Kerberos protocol attacker library
Documentation
//! This module provide functionalities to create/parse kerberos structs

mod kdc_req;

mod krb_cred;

mod krb_user;
pub use krb_user::KrbUser;

mod principal_name;
pub use principal_name::{new_nt_enterprise, new_nt_principal, new_nt_srv_inst, new_principal_or_srv_inst};

mod pa_data;

mod pac;
pub use pac::new_signed_pac;

mod build_req;
pub use build_req::{build_as_req, build_tgs_req, S4u};

mod decrypters;
pub use decrypters::{extract_krb_cred_from_as_rep, extract_ticket_from_tgs_rep};

mod ticket;
pub use ticket::craft_ticket_info;