| 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 * ***** BEGIN LICENSE BLOCK ***** | 9 * ***** BEGIN LICENSE BLOCK ***** |
| 10 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 10 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 * in which case the provisions of the GPL or the LGPL are applicable instead | 35 * in which case the provisions of the GPL or the LGPL are applicable instead |
| 36 * of those above. If you wish to allow use of your version of this file only | 36 * of those above. If you wish to allow use of your version of this file only |
| 37 * under the terms of either the GPL or the LGPL, and not to allow others to | 37 * under the terms of either the GPL or the LGPL, and not to allow others to |
| 38 * use your version of this file under the terms of the MPL, indicate your | 38 * use your version of this file under the terms of the MPL, indicate your |
| 39 * decision by deleting the provisions above and replace them with the notice | 39 * decision by deleting the provisions above and replace them with the notice |
| 40 * and other provisions required by the GPL or the LGPL. If you do not delete | 40 * and other provisions required by the GPL or the LGPL. If you do not delete |
| 41 * the provisions above, a recipient may use your version of this file under | 41 * the provisions above, a recipient may use your version of this file under |
| 42 * the terms of any one of the MPL, the GPL or the LGPL. | 42 * the terms of any one of the MPL, the GPL or the LGPL. |
| 43 * | 43 * |
| 44 * ***** END LICENSE BLOCK ***** */ | 44 * ***** END LICENSE BLOCK ***** */ |
| 45 /* $Id: mpi-priv.h,v 1.21 2009/03/19 02:26:48 julien.pierre.boogz%sun.com Exp $
*/ | 45 /* $Id: mpi-priv.h,v 1.23 2010/05/02 22:36:41 nelson%bolyard.com Exp $ */ |
| 46 #ifndef _MPI_PRIV_H_ | 46 #ifndef _MPI_PRIV_H_ |
| 47 #define _MPI_PRIV_H_ 1 | 47 #define _MPI_PRIV_H_ 1 |
| 48 | 48 |
| 49 #include "mpi.h" | 49 #include "mpi.h" |
| 50 #include <stdlib.h> | 50 #include <stdlib.h> |
| 51 #include <string.h> | 51 #include <string.h> |
| 52 #include <ctype.h> | 52 #include <ctype.h> |
| 53 | 53 |
| 54 #if MP_DEBUG | 54 #if MP_DEBUG |
| 55 #include <stdio.h> | 55 #include <stdio.h> |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 * mp_modexp uses this information to make sure that private key information | 310 * mp_modexp uses this information to make sure that private key information |
| 311 * isn't being leaked through the cache. | 311 * isn't being leaked through the cache. |
| 312 * | 312 * |
| 313 * see mpcpucache.c for the implementation. | 313 * see mpcpucache.c for the implementation. |
| 314 */ | 314 */ |
| 315 unsigned long s_mpi_getProcessorLineSize(); | 315 unsigned long s_mpi_getProcessorLineSize(); |
| 316 | 316 |
| 317 /* }}} */ | 317 /* }}} */ |
| 318 #endif | 318 #endif |
| 319 | 319 |
| OLD | NEW |