blob: 8c9e51e5154657a564f9d98817b407da1e498e6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _TEST_CCAPI_UTIL_H_
#define _TEST_CCAPI_UTIL_H_
#include <Kerberos/CredentialsCache.h>
#include "test_ccapi_globals.h"
#include "test_ccapi_log.h"
cc_int32 destroy_all_ccaches(cc_context_t context);
cc_int32 new_v5_creds_union(cc_credentials_union *out_union, const char *realm);
void release_v5_creds_union(cc_credentials_union *creds_union);
int compare_v5_creds_unions(const cc_credentials_union *a, const cc_credentials_union *b);
#endif /* _TEST_CCAPI_UTIL_H_ */
|