source: branches/samba-3.5.x/source3/include/smb_krb5.h

Last change on this file was 414, checked in by Herwig Bauernfeind, 15 years ago

Samba 3.5.0: Initial import

File size: 2.0 KB
Line 
1#ifndef _HEADER_smb_krb5_h
2#define _HEADER_smb_krb5_h
3
4#define KRB5_PRIVATE 1 /* this file uses PRIVATE interfaces! */
5/* this file uses DEPRECATED interfaces! */
6
7#if defined(HAVE_KRB5_DEPRECATED_WITH_IDENTIFIER)
8#define KRB5_DEPRECATED 1
9#else
10#define KRB5_DEPRECATED
11#endif
12
13#if HAVE_KRB5_H
14#include <krb5.h>
15#endif
16
17#ifndef KRB5_ADDR_NETBIOS
18#define KRB5_ADDR_NETBIOS 0x14
19#endif
20
21#ifndef KRB5KRB_ERR_RESPONSE_TOO_BIG
22#define KRB5KRB_ERR_RESPONSE_TOO_BIG (-1765328332L)
23#endif
24
25/* Heimdal uses a slightly different name */
26#if defined(HAVE_ENCTYPE_ARCFOUR_HMAC_MD5)
27#define ENCTYPE_ARCFOUR_HMAC ENCTYPE_ARCFOUR_HMAC_MD5
28#endif
29
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
35#endif
36
37#ifdef HAVE_KRB5
38typedef struct {
39#if defined(HAVE_MAGIC_IN_KRB5_ADDRESS) && defined(HAVE_ADDRTYPE_IN_KRB5_ADDRESS) /* MIT */
40 krb5_address **addrs;
41#elif defined(HAVE_KRB5_ADDRESSES) /* Heimdal */
42 krb5_addresses *addrs;
43#else
44#error UNKNOWN_KRB5_ADDRESS_TYPE
45#endif /* defined(HAVE_MAGIC_IN_KRB5_ADDRESS) && defined(HAVE_ADDRTYPE_IN_KRB5_ADDRESS) */
46} smb_krb5_addresses;
47
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
53#else /* MIT */
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 */
59
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)
64#else
65#error krb5_keytab_entry has no key or keyblock member
66#endif /* HAVE_KRB5_KEYTAB_ENTRY_KEY */
67
68#endif /* HAVE_KRB5 */
69
70#include "krb5_protos.h"
71
72#endif /* _HEADER_smb_krb5_h */
Note: See TracBrowser for help on using the repository browser.