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
|
/*
* $Source$
* $Author$
* $Id$
*
* Copyright 1989 by the Massachusetts Institute of Technology.
*
* For copying and distribution information, please see the file
* <krb5/mit-copyright.h>.
*
* Credentials cache definitions.
*/
#include <krb5/copyright.h>
#ifndef __KRB5_CCACHE__
#define __KRB5_CCACHE__
typedef krb5_pointer krb5_cc_cursor; /* cursor for sequential lookup */
typedef struct _krb5_ccache {
struct _krb5_cc_ops *ops;
void *data;
} *krb5_ccache;
typedef struct _krb5_cc_ops {
char *prefix;
char *(*get_name) PROTOTYPE((krb5_ccache));
krb5_error_code (*resolve) PROTOTYPE((krb5_ccache, char *));
krb5_error_code (*gen_new) PROTOTYPE((krb5_ccache));
krb5_error_code (*init) PROTOTYPE((krb5_ccache, krb5_principal));
krb5_error_code (*destroy) PROTOTYPE((krb5_ccache));
krb5_error_code (*close) PROTOTYPE((krb5_ccache));
krb5_error_code (*store) PROTOTYPE((krb5_ccache, krb5_creds *));
krb5_error_code (*retrieve) PROTOTYPE((krb5_ccache, krb5_flags,
krb5_creds *, krb5_creds *));
krb5_error_code (*get_princ) PROTOTYPE((krb5_ccache,
krb5_principal *));
krb5_error_code (*get_first) PROTOTYPE((krb5_ccache,
krb5_cc_cursor *));
krb5_error_code (*get_next) PROTOTYPE((krb5_ccache, krb5_cc_cursor *,
krb5_creds *));
krb5_error_code (*end_get) PROTOTYPE((krb5_ccache, krb5_cc_cursor *));
krb5_error_code (*remove_cred) PROTOTYPE((krb5_ccache, krb5_flags,
krb5_creds *));
krb5_error_code (*set_flags) PROTOTYPE((krb5_ccache, krb5_flags));
} krb5_cc_ops;
/* for retrieve_cred */
#define KRB5_TC_MATCH_TIMES 0x00000001
#define KRB5_TC_MATCH_IS_SKEY 0x00000002
#define KRB5_TC_MATCH_FLAGS 0x00000004
#define KRB5_TC_MATCH_TIMES_EXACT 0x00000008
#define KRB5_TC_MATCH_FLAGS_EXACT 0x00000010
#endif /* __KRB5_CCACHE__ */
|