ctdb/docs: Include ceph rados namespace support in man page
[Samba.git] / source4 / auth / kerberos / kerberos.h
blob87486eab0178c98ed1418abf49bf47644c275751
1 /*
2 Unix SMB/CIFS implementation.
3 simple kerberos5 routines for active directory
4 Copyright (C) Andrew Tridgell 2001
5 Copyright (C) Luke Howard 2002-2003
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #ifndef _AUTH_KERBEROS_H_
22 #define _AUTH_KERBEROS_H_
24 #if defined(HAVE_KRB5)
26 #include "system/kerberos.h"
27 #include "auth/auth.h"
28 #include "auth/kerberos/krb5_init_context.h"
29 #include "librpc/gen_ndr/krb5pac.h"
30 #include "lib/krb5_wrap/krb5_samba.h"
32 struct auth_user_info_dc;
33 struct cli_credentials;
35 struct ccache_container {
36 struct smb_krb5_context *smb_krb5_context;
37 krb5_ccache ccache;
40 struct keytab_container {
41 struct smb_krb5_context *smb_krb5_context;
42 krb5_keytab keytab;
43 bool password_based;
46 /* not really ASN.1, but RFC 1964 */
47 #define TOK_ID_KRB_AP_REQ ((const uint8_t *)"\x01\x00")
48 #define TOK_ID_KRB_AP_REP ((const uint8_t *)"\x02\x00")
49 #define TOK_ID_KRB_ERROR ((const uint8_t *)"\x03\x00")
50 #define TOK_ID_GSS_GETMIC ((const uint8_t *)"\x01\x01")
51 #define TOK_ID_GSS_WRAP ((const uint8_t *)"\x02\x01")
53 #define ENC_ALL_TYPES (ENC_RC4_HMAC_MD5 | \
54 ENC_HMAC_SHA1_96_AES128 | ENC_HMAC_SHA1_96_AES256)
56 #define ENC_STRONG_SALTED_TYPES (ENC_HMAC_SHA1_96_AES128 | ENC_HMAC_SHA1_96_AES256)
58 #ifndef HAVE_KRB5_SET_DEFAULT_TGS_KTYPES
59 krb5_error_code krb5_set_default_tgs_ktypes(krb5_context ctx, const krb5_enctype *enc);
60 #endif
62 #if defined(HAVE_KRB5_AUTH_CON_SETKEY) && !defined(HAVE_KRB5_AUTH_CON_SETUSERUSERKEY)
63 krb5_error_code krb5_auth_con_setuseruserkey(krb5_context context, krb5_auth_context auth_context, krb5_keyblock *keyblock);
64 #endif
66 krb5_error_code smb_krb5_princ_component(krb5_context context,
67 krb5_const_principal principal,
68 int i,
69 krb5_data *data);
71 /* Samba wrapper function for krb5 functionality. */
72 krb5_error_code kerberos_encode_pac(TALLOC_CTX *mem_ctx,
73 struct PAC_DATA *pac_data,
74 krb5_context context,
75 const krb5_keyblock *krbtgt_keyblock,
76 const krb5_keyblock *service_keyblock,
77 DATA_BLOB *pac);
78 krb5_error_code kerberos_create_pac(TALLOC_CTX *mem_ctx,
79 struct auth_user_info_dc *user_info_dc,
80 krb5_context context,
81 const krb5_keyblock *krbtgt_keyblock,
82 const krb5_keyblock *service_keyblock,
83 krb5_principal client_principal,
84 time_t tgs_authtime,
85 DATA_BLOB *pac);
87 #include "auth/kerberos/proto.h"
89 #endif /* HAVE_KRB5 */
91 #endif /* _AUTH_KERBEROS_H_ */