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

Side by Side Diff: nss/lib/freebl/mpi/mpi-priv.h

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/mpi/mpi-config.h ('k') | nss/lib/freebl/mpi/mplogic.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 * mpi-priv.h - Private header file for MPI 2 * mpi-priv.h - Private header file for MPI
3 * Arbitrary precision integer arithmetic library 3 * Arbitrary precision integer arithmetic library
4 * 4 *
5 * NOTE WELL: the content of this header file is NOT part of the "public" 5 * NOTE WELL: the content of this header file is NOT part of the "public"
6 * API for the MPI library, and may change at any time. 6 * API for the MPI library, and may change at any time.
7 * Application programs that use libmpi should NOT include this header file. 7 * Application programs that use libmpi should NOT include this header file.
8 * 8 *
9 * This Source Code Form is subject to the terms of the Mozilla Public 9 * This Source Code Form is subject to the terms of the Mozilla Public
10 * License, v. 2.0. If a copy of the MPL was not distributed with this 10 * License, v. 2.0. If a copy of the MPL was not distributed with this
11 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 11 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
12 /* $Id$ */
13 #ifndef _MPI_PRIV_H_ 12 #ifndef _MPI_PRIV_H_
14 #define _MPI_PRIV_H_ 1 13 #define _MPI_PRIV_H_ 1
15 14
16 #include "mpi.h" 15 #include "mpi.h"
17 #include <stdlib.h> 16 #include <stdlib.h>
18 #include <string.h> 17 #include <string.h>
19 #include <ctype.h> 18 #include <ctype.h>
20 19
21 #if MP_DEBUG 20 #if MP_DEBUG
22 #include <stdio.h> 21 #include <stdio.h>
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 * mp_modexp uses this information to make sure that private key information 275 * mp_modexp uses this information to make sure that private key information
277 * isn't being leaked through the cache. 276 * isn't being leaked through the cache.
278 * 277 *
279 * see mpcpucache.c for the implementation. 278 * see mpcpucache.c for the implementation.
280 */ 279 */
281 unsigned long s_mpi_getProcessorLineSize(); 280 unsigned long s_mpi_getProcessorLineSize();
282 281
283 /* }}} */ 282 /* }}} */
284 #endif 283 #endif
285 284
OLDNEW
« no previous file with comments | « nss/lib/freebl/mpi/mpi-config.h ('k') | nss/lib/freebl/mpi/mplogic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698