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

Side by Side Diff: nss/lib/freebl/arcfive.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/freebl/alg2268.c ('k') | nss/lib/freebl/blapi.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 /* 1 /*
2 * arcfive.c - stubs for RC5 - NOT a working implementation! 2 * arcfive.c - stubs for RC5 - NOT a working implementation!
3 * 3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public 4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this 5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /* $Id$ */
8 7
9 #ifdef FREEBL_NO_DEPEND 8 #ifdef FREEBL_NO_DEPEND
10 #include "stubs.h" 9 #include "stubs.h"
11 #endif 10 #endif
12 11
13 #include "blapi.h" 12 #include "blapi.h"
14 #include "prerror.h" 13 #include "prerror.h"
15 14
16 /******************************************/ 15 /******************************************/
17 /* 16 /*
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 */ 79 */
81 SECStatus 80 SECStatus
82 RC5_Decrypt(RC5Context *cx, unsigned char *output, unsigned int *outputLen, 81 RC5_Decrypt(RC5Context *cx, unsigned char *output, unsigned int *outputLen,
83 unsigned int maxOutputLen, 82 unsigned int maxOutputLen,
84 const unsigned char *input, unsigned int inputLen) 83 const unsigned char *input, unsigned int inputLen)
85 { 84 {
86 PORT_SetError(PR_NOT_IMPLEMENTED_ERROR); 85 PORT_SetError(PR_NOT_IMPLEMENTED_ERROR);
87 return SECFailure; 86 return SECFailure;
88 } 87 }
89 88
OLDNEW
« no previous file with comments | « nss/lib/freebl/alg2268.c ('k') | nss/lib/freebl/blapi.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698