OLD | NEW |
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 Loading... |
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 |
OLD | NEW |