1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
use super::*;
use ::krb5_sys::*;
#[link(name = "gssapi_krb5")]
extern "C" {
pub static GSS_KRB5_NT_PRINCIPAL_NAME: *const gss_OID_desc;
}
#[link(name = "gssapi_krb5")]
extern "C" {
pub static gss_mech_krb5: *const gss_OID_desc;
pub static gss_mech_krb5_old: *const gss_OID_desc;
pub static gss_mech_krb5_wrong: *const gss_OID_desc;
pub static gss_mech_iakerb: *const gss_OID_desc;
pub static gss_mech_set_krb5: *const gss_OID_set_desc;
pub static gss_mech_set_krb5_old: *const gss_OID_set_desc;
pub static gss_mech_set_krb5_both: *const gss_OID_set_desc;
pub static gss_nt_krb5_name: *const gss_OID_desc;
pub static gss_nt_krb5_principal: *const gss_OID_desc;
pub static krb5_gss_oid_array: *const gss_OID_desc;
}
#[repr(C)]
pub struct gss_krb5_lucid_key {
type_: OM_uint32,
length: OM_uint32,
data: *mut c_void,
}
pub type gss_krb5_lucid_key_t = gss_krb5_lucid_key;
#[repr(C)]
pub struct gss_krb5_rfc1964_keydata {
sign_alg: OM_uint32,
seal_alg: OM_uint32,
ctx_key: gss_krb5_lucid_key_t,
}
pub type gss_krb5_rfc1964_keydata_t = gss_krb5_rfc1964_keydata;
#[repr(C)]
pub struct gss_krb5_cfx_keydata {
have_acceptor_subkey: OM_uint32,
ctx_key: gss_krb5_lucid_key_t,
acceptor_subkey: gss_krb5_lucid_key_t,
}
pub type gss_krb5_cfx_keydata_t = gss_krb5_cfx_keydata;
#[repr(C)]
pub struct gss_krb5_lucid_context_v1 {
version: OM_uint32,
initiate: OM_uint32,
endtime: OM_uint32,
send_seq: u64,
recv_seq: u64,
protocol: OM_uint32,
rfc1964_kd: gss_krb5_rfc1964_keydata_t,
cfx_kd: gss_krb5_cfx_keydata_t,
}
pub type gss_krb5_lucid_context_v1_t = gss_krb5_lucid_context_v1;
#[repr(C)]
pub struct gss_krb5_lucid_context_version {
version: OM_uint32,
}
pub type gss_krb5_lucid_context_version_t = gss_krb5_lucid_context_version;
#[link(name = "gssapi_krb5")]
extern "C" {
pub fn krb5_gss_register_acceptor_identity(arg: *const c_char) -> OM_uint32;
pub fn gss_krb5_get_tkt_flags(minor: *mut OM_uint32,
context_handle: gss_ctx_id_t,
ticket_flags: *mut krb5_flags) -> OM_uint32;
pub fn gss_krb5_copy_ccache(minor: *mut OM_uint32,
cred_handle: gss_cred_id_t,
out_ccache: krb5_ccache) -> OM_uint32;
pub fn gss_krb5_ccache_name(minor: *mut OM_uint32,
name: *const c_char,
out_name: *mut *const c_char) -> OM_uint32;
pub fn gss_krb5_set_allowable_enctypes(minor: OM_uint32,
cred: gss_cred_id_t,
num_ktypes: OM_uint32,
ktypes: *mut krb5_enctype) -> OM_uint32;
pub fn gss_krb5_export_lucid_sec_context(minor: OM_uint32,
context_handle: *mut gss_ctx_id_t,
version: OM_uint32,
kctx: *mut *mut c_void) -> OM_uint32;
pub fn gss_krb5_free_lucid_sec_context(minor: *mut OM_uint32,
kctx: *mut c_void) -> OM_uint32;
pub fn gsskrb5_extract_authz_data_from_sec_context(minor: *mut OM_uint32,
context_handle: gss_ctx_id_t,
ad_type: c_int,
ad_data: gss_buffer_t) -> OM_uint32;
pub fn gss_krb5_set_cred_rcache(minor: *mut OM_uint32,
cred: gss_cred_id_t,
rcache: krb5_rcache) -> OM_uint32;
pub fn gsskrb5_extract_authtime_from_sec_context(minor: *mut OM_uint32,
ctx_handle: gss_ctx_id_t,
timestamp_out: *mut krb5_timestamp) -> OM_uint32;
pub fn gss_krb5_import_cred(minor: *mut OM_uint32,
id: krb5_ccache,
keytab_principal: krb5_principal,
keytab: krb5_keytab,
cred: *mut gss_cred_id_t) -> OM_uint32;
}