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

Side by Side Diff: nss/lib/freebl/rijndael.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/rijndael.h ('k') | nss/lib/freebl/rsa.c » ('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 /* $Id$ */
5 4
6 #ifdef FREEBL_NO_DEPEND 5 #ifdef FREEBL_NO_DEPEND
7 #include "stubs.h" 6 #include "stubs.h"
8 #endif 7 #endif
9 8
10 #include "prinit.h" 9 #include "prinit.h"
11 #include "prerr.h" 10 #include "prerr.h"
12 #include "secerr.h" 11 #include "secerr.h"
13 12
14 #include "prtypes.h" 13 #include "prtypes.h"
(...skipping 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after
1262 return SECFailure; 1261 return SECFailure;
1263 } 1262 }
1264 if (maxOutputLen < inputLen) { 1263 if (maxOutputLen < inputLen) {
1265 PORT_SetError(SEC_ERROR_OUTPUT_LEN); 1264 PORT_SetError(SEC_ERROR_OUTPUT_LEN);
1266 return SECFailure; 1265 return SECFailure;
1267 } 1266 }
1268 *outputLen = inputLen; 1267 *outputLen = inputLen;
1269 return (*cx->worker)(cx->worker_cx, output, outputLen, maxOutputLen, 1268 return (*cx->worker)(cx->worker_cx, output, outputLen, maxOutputLen,
1270 input, inputLen, blocksize); 1269 input, inputLen, blocksize);
1271 } 1270 }
OLDNEW
« no previous file with comments | « nss/lib/freebl/rijndael.h ('k') | nss/lib/freebl/rsa.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698