]> git.saurik.com Git - apple/security.git/blob - SecurityTests/clxutils/clAppUtils/crlUtils.h
Security-57031.10.10.tar.gz
[apple/security.git] / SecurityTests / clxutils / clAppUtils / crlUtils.h
1 /*
2 * crlUtils.cpp - CRL CL/TP/DL utilities.
3 */
4
5 #ifndef _CRL_UTILS_H_
6 #define _CRL_UTILS_H_
7
8 #include <Security/cssmtype.h>
9
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13
14 /*
15 * Add a CRL to an existing DL/DB.
16 */
17 #define MAX_CRL_ATTRS 8
18
19 CSSM_RETURN crlAddCrlToDb(
20 CSSM_DL_DB_HANDLE dlDbHand,
21 CSSM_CL_HANDLE clHand,
22 const CSSM_DATA *crl);
23
24 #ifdef __cplusplus
25 }
26 #endif
27
28 #endif /* _CRL_UTILS_H_ */