1 #ifndef _HEADER_smb_krb5_h
2 #define _HEADER_smb_krb5_h
4 #define KRB5_PRIVATE 1 /* this file uses PRIVATE interfaces! */
5 /* this file uses DEPRECATED interfaces! */
7 #if defined(HAVE_KRB5_DEPRECATED_WITH_IDENTIFIER)
8 #define KRB5_DEPRECATED 1
10 #define KRB5_DEPRECATED
17 #ifndef KRB5_ADDR_NETBIOS
18 #define KRB5_ADDR_NETBIOS 0x14
21 #ifndef KRB5KRB_ERR_RESPONSE_TOO_BIG
22 #define KRB5KRB_ERR_RESPONSE_TOO_BIG (-1765328332L)
25 /* Heimdal uses a slightly different name */
26 #if defined(HAVE_ENCTYPE_ARCFOUR_HMAC_MD5)
27 #define ENCTYPE_ARCFOUR_HMAC ENCTYPE_ARCFOUR_HMAC_MD5
30 /* The older versions of heimdal that don't have this
31 define don't seem to use it anyway. I'm told they
32 always use a subkey */
33 #ifndef HAVE_AP_OPTS_USE_SUBKEY
34 #define AP_OPTS_USE_SUBKEY 0
39 #if defined(HAVE_MAGIC_IN_KRB5_ADDRESS) && defined(HAVE_ADDRTYPE_IN_KRB5_ADDRESS) /* MIT */
41 #elif defined(HAVE_KRB5_ADDRESSES) /* Heimdal */
42 krb5_addresses
*addrs
;
44 #error UNKNOWN_KRB5_ADDRESS_TYPE
45 #endif /* defined(HAVE_MAGIC_IN_KRB5_ADDRESS) && defined(HAVE_ADDRTYPE_IN_KRB5_ADDRESS) */
48 #ifdef HAVE_KRB5_KEYBLOCK_KEYVALUE /* Heimdal */
49 #define KRB5_KEY_TYPE(k) ((k)->keytype)
50 #define KRB5_KEY_LENGTH(k) ((k)->keyvalue.length)
51 #define KRB5_KEY_DATA(k) ((k)->keyvalue.data)
52 #define KRB5_KEY_DATA_CAST void
54 #define KRB5_KEY_TYPE(k) ((k)->enctype)
55 #define KRB5_KEY_LENGTH(k) ((k)->length)
56 #define KRB5_KEY_DATA(k) ((k)->contents)
57 #define KRB5_KEY_DATA_CAST krb5_octet
58 #endif /* HAVE_KRB5_KEYBLOCK_KEYVALUE */
60 #ifdef HAVE_KRB5_KEYTAB_ENTRY_KEY /* MIT */
61 #define KRB5_KT_KEY(k) (&(k)->key)
62 #elif HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK /* Heimdal */
63 #define KRB5_KT_KEY(k) (&(k)->keyblock)
65 #error krb5_keytab_entry has no key or keyblock member
66 #endif /* HAVE_KRB5_KEYTAB_ENTRY_KEY */
68 #endif /* HAVE_KRB5 */
70 #include "krb5_protos.h"
72 #endif /* _HEADER_smb_krb5_h */