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 #ifdef DEBUG | |
6 static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
7 #endif /* DEBUG */ | |
8 | |
9 /* | 5 /* |
10 * wrap.c | 6 * wrap.c |
11 * | 7 * |
12 * This file contains the routines that actually implement the cryptoki | 8 * This file contains the routines that actually implement the cryptoki |
13 * API, using the internal APIs of the NSS Cryptoki Framework. There is | 9 * API, using the internal APIs of the NSS Cryptoki Framework. There is |
14 * one routine here for every cryptoki routine. For linking reasons | 10 * one routine here for every cryptoki routine. For linking reasons |
15 * the actual entry points passed back with C_GetFunctionList have to | 11 * the actual entry points passed back with C_GetFunctionList have to |
16 * exist in one of the Module's source files; however, those are merely | 12 * exist in one of the Module's source files; however, those are merely |
17 * simple wrappers that call these routines. The intelligence of the | 13 * simple wrappers that call these routines. The intelligence of the |
18 * implementations is here. | 14 * implementations is here. |
(...skipping 5648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5667 */ | 5663 */ |
5668 NSS_IMPLEMENT CK_RV | 5664 NSS_IMPLEMENT CK_RV |
5669 NSSCKFWC_CancelFunction | 5665 NSSCKFWC_CancelFunction |
5670 ( | 5666 ( |
5671 NSSCKFWInstance *fwInstance, | 5667 NSSCKFWInstance *fwInstance, |
5672 CK_SESSION_HANDLE hSession | 5668 CK_SESSION_HANDLE hSession |
5673 ) | 5669 ) |
5674 { | 5670 { |
5675 return CKR_FUNCTION_NOT_PARALLEL; | 5671 return CKR_FUNCTION_NOT_PARALLEL; |
5676 } | 5672 } |
OLD | NEW |