Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(561)

Side by Side Diff: nss/lib/ckfw/wrap.c

Issue 16285003: Remove CVS keywords from NSS source files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « nss/lib/ckfw/token.c ('k') | nss/lib/cryptohi/cryptohi.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « nss/lib/ckfw/token.c ('k') | nss/lib/cryptohi/cryptohi.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698