OLD | NEW |
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 #ifndef NSSCKFWC_H | 5 #ifndef NSSCKFWC_H |
6 #define NSSCKFWC_H | 6 #define NSSCKFWC_H |
7 | 7 |
8 #ifdef DEBUG | |
9 static const char NSSCKFWC_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
10 #endif /* DEBUG */ | |
11 | |
12 /* | 8 /* |
13 * nssckfwc.h | 9 * nssckfwc.h |
14 * | 10 * |
15 * This file prototypes all of the NSS Cryptoki Framework "wrapper" | 11 * This file prototypes all of the NSS Cryptoki Framework "wrapper" |
16 * which implement the PKCS#11 API. Technically, these are public | 12 * which implement the PKCS#11 API. Technically, these are public |
17 * routines (with capital "NSS" prefixes), since they are called | 13 * routines (with capital "NSS" prefixes), since they are called |
18 * from (generated) code within a Module using the Framework. | 14 * from (generated) code within a Module using the Framework. |
19 * However, they should not be called except from those generated | 15 * However, they should not be called except from those generated |
20 * calls. Hence, the prototypes have been split out into this file. | 16 * calls. Hence, the prototypes have been split out into this file. |
21 */ | 17 */ |
(...skipping 986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1008 * | 1004 * |
1009 */ | 1005 */ |
1010 NSS_EXTERN CK_RV | 1006 NSS_EXTERN CK_RV |
1011 NSSCKFWC_CancelFunction | 1007 NSSCKFWC_CancelFunction |
1012 ( | 1008 ( |
1013 NSSCKFWInstance *fwInstance, | 1009 NSSCKFWInstance *fwInstance, |
1014 CK_SESSION_HANDLE hSession | 1010 CK_SESSION_HANDLE hSession |
1015 ); | 1011 ); |
1016 | 1012 |
1017 #endif /* NSSCKFWC_H */ | 1013 #endif /* NSSCKFWC_H */ |
OLD | NEW |