auth-krb: Move pac related util functions in a single place.
[kai/samba.git] / libcli / auth / krb5_wrap.h
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
6    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2005
7    Copyright (C) Guenther Deschner 2005-2009
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 */
22
23 #include "system/kerberos.h"
24
25 #ifdef HAVE_KRB5_KEYBLOCK_KEYVALUE /* Heimdal */
26 #define KRB5_KEY_TYPE(k)        ((k)->keytype)
27 #define KRB5_KEY_LENGTH(k)      ((k)->keyvalue.length)
28 #define KRB5_KEY_DATA(k)        ((k)->keyvalue.data)
29 #define KRB5_KEY_DATA_CAST      void
30 #else /* MIT */
31 #define KRB5_KEY_TYPE(k)        ((k)->enctype)
32 #define KRB5_KEY_LENGTH(k)      ((k)->length)
33 #define KRB5_KEY_DATA(k)        ((k)->contents)
34 #define KRB5_KEY_DATA_CAST      krb5_octet
35 #endif /* HAVE_KRB5_KEYBLOCK_KEYVALUE */
36
37 int create_kerberos_key_from_string_direct(krb5_context context,
38                                                   krb5_principal host_princ,
39                                                   krb5_data *password,
40                                                   krb5_keyblock *key,
41                                            krb5_enctype enctype);
42 void kerberos_free_data_contents(krb5_context context, krb5_data *pdata);
43 krb5_error_code smb_krb5_kt_free_entry(krb5_context context, krb5_keytab_entry *kt_entry);
44
45  krb5_error_code smb_krb5_parse_name(krb5_context context,
46                                 const char *name, /* in unix charset */
47                                      krb5_principal *principal);
48 krb5_error_code smb_krb5_unparse_name(TALLOC_CTX *mem_ctx,
49                                       krb5_context context,
50                                       krb5_const_principal principal,
51                                       char **unix_name);
52  krb5_error_code smb_krb5_parse_name_norealm(krb5_context context, 
53                                             const char *name, 
54                                              krb5_principal *principal);
55  bool smb_krb5_principal_compare_any_realm(krb5_context context, 
56                                           krb5_const_principal princ1, 
57                                            krb5_const_principal princ2);
58 char *gssapi_error_string(TALLOC_CTX *mem_ctx, 
59                           OM_uint32 maj_stat, OM_uint32 min_stat, 
60                           const gss_OID mech);
61 char *smb_get_krb5_error_message(krb5_context context, krb5_error_code code, TALLOC_CTX *mem_ctx);
62