Xuyi Wang / wolfSSL

Dependents:   OS

Committer:
sPymbed
Date:
Tue Nov 19 14:32:16 2019 +0000
Revision:
16:048e5e270a58
Parent:
15:117db924cf7c
working ssl

Who changed what in which revision?

UserRevisionLine numberNew contents of line
wolfSSL 15:117db924cf7c 1 /* mpi_superclass.h
wolfSSL 15:117db924cf7c 2 *
wolfSSL 15:117db924cf7c 3 * Copyright (C) 2006-2017 wolfSSL Inc.
wolfSSL 15:117db924cf7c 4 *
wolfSSL 15:117db924cf7c 5 * This file is part of wolfSSL.
wolfSSL 15:117db924cf7c 6 *
wolfSSL 15:117db924cf7c 7 * wolfSSL is free software; you can redistribute it and/or modify
wolfSSL 15:117db924cf7c 8 * it under the terms of the GNU General Public License as published by
wolfSSL 15:117db924cf7c 9 * the Free Software Foundation; either version 2 of the License, or
wolfSSL 15:117db924cf7c 10 * (at your option) any later version.
wolfSSL 15:117db924cf7c 11 *
wolfSSL 15:117db924cf7c 12 * wolfSSL is distributed in the hope that it will be useful,
wolfSSL 15:117db924cf7c 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wolfSSL 15:117db924cf7c 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wolfSSL 15:117db924cf7c 15 * GNU General Public License for more details.
wolfSSL 15:117db924cf7c 16 *
wolfSSL 15:117db924cf7c 17 * You should have received a copy of the GNU General Public License
wolfSSL 15:117db924cf7c 18 * along with this program; if not, write to the Free Software
wolfSSL 15:117db924cf7c 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
wolfSSL 15:117db924cf7c 20 */
wolfSSL 15:117db924cf7c 21
wolfSSL 15:117db924cf7c 22
wolfSSL 15:117db924cf7c 23
wolfSSL 15:117db924cf7c 24 /* super class file for PK algos */
wolfSSL 15:117db924cf7c 25
wolfSSL 15:117db924cf7c 26 /* default ... include all MPI */
wolfSSL 15:117db924cf7c 27 #define LTM_ALL
wolfSSL 15:117db924cf7c 28
wolfSSL 15:117db924cf7c 29 /* RSA only (does not support DH/DSA/ECC) */
wolfSSL 15:117db924cf7c 30 /* #define SC_RSA_1 */
wolfSSL 15:117db924cf7c 31
wolfSSL 15:117db924cf7c 32 /* For reference.... On an Athlon64 optimizing for speed...
wolfSSL 15:117db924cf7c 33
wolfSSL 15:117db924cf7c 34 LTM's mpi.o with all functions [striped] is 142KiB in size.
wolfSSL 15:117db924cf7c 35
wolfSSL 15:117db924cf7c 36 */
wolfSSL 15:117db924cf7c 37
wolfSSL 15:117db924cf7c 38 /* Works for RSA only, mpi.o is 68KiB */
wolfSSL 15:117db924cf7c 39 #ifdef SC_RSA_1
wolfSSL 15:117db924cf7c 40 #define BN_MP_SHRINK_C
wolfSSL 15:117db924cf7c 41 #define BN_MP_LCM_C
wolfSSL 15:117db924cf7c 42 #define BN_MP_PRIME_RANDOM_EX_C
wolfSSL 15:117db924cf7c 43 #define BN_MP_INVMOD_C
wolfSSL 15:117db924cf7c 44 #define BN_MP_GCD_C
wolfSSL 15:117db924cf7c 45 #define BN_MP_MOD_C
wolfSSL 15:117db924cf7c 46 #define BN_MP_MULMOD_C
wolfSSL 15:117db924cf7c 47 #define BN_MP_ADDMOD_C
wolfSSL 15:117db924cf7c 48 #define BN_MP_EXPTMOD_C
wolfSSL 15:117db924cf7c 49 #define BN_MP_SET_INT_C
wolfSSL 15:117db924cf7c 50 #define BN_MP_INIT_MULTI_C
wolfSSL 15:117db924cf7c 51 #define BN_MP_CLEAR_MULTI_C
wolfSSL 15:117db924cf7c 52 #define BN_MP_UNSIGNED_BIN_SIZE_C
wolfSSL 15:117db924cf7c 53 #define BN_MP_TO_UNSIGNED_BIN_C
wolfSSL 15:117db924cf7c 54 #define BN_MP_MOD_D_C
wolfSSL 15:117db924cf7c 55 #define BN_MP_PRIME_RABIN_MILLER_TRIALS_C
wolfSSL 15:117db924cf7c 56 #define BN_REVERSE_C
wolfSSL 15:117db924cf7c 57 #define BN_PRIME_TAB_C
wolfSSL 15:117db924cf7c 58
wolfSSL 15:117db924cf7c 59 /* other modifiers */
wolfSSL 15:117db924cf7c 60 #define BN_MP_DIV_SMALL /* Slower division, not critical */
wolfSSL 15:117db924cf7c 61
wolfSSL 15:117db924cf7c 62 /* here we are on the last pass so we turn things off. The functions classes are still there
wolfSSL 15:117db924cf7c 63 * but we remove them specifically from the build. This also invokes tweaks in functions
wolfSSL 15:117db924cf7c 64 * like removing support for even moduli, etc...
wolfSSL 15:117db924cf7c 65 */
wolfSSL 15:117db924cf7c 66 #ifdef LTM_LAST
wolfSSL 15:117db924cf7c 67 #undef BN_MP_TOOM_MUL_C
wolfSSL 15:117db924cf7c 68 #undef BN_MP_TOOM_SQR_C
wolfSSL 15:117db924cf7c 69 #undef BN_MP_KARATSUBA_MUL_C
wolfSSL 15:117db924cf7c 70 #undef BN_MP_KARATSUBA_SQR_C
wolfSSL 15:117db924cf7c 71 #undef BN_MP_REDUCE_C
wolfSSL 15:117db924cf7c 72 #undef BN_MP_REDUCE_SETUP_C
wolfSSL 15:117db924cf7c 73 #undef BN_MP_DR_IS_MODULUS_C
wolfSSL 15:117db924cf7c 74 #undef BN_MP_DR_SETUP_C
wolfSSL 15:117db924cf7c 75 #undef BN_MP_DR_REDUCE_C
wolfSSL 15:117db924cf7c 76 #undef BN_MP_REDUCE_IS_2K_C
wolfSSL 15:117db924cf7c 77 #undef BN_MP_REDUCE_2K_SETUP_C
wolfSSL 15:117db924cf7c 78 #undef BN_MP_REDUCE_2K_C
wolfSSL 15:117db924cf7c 79 #undef BN_S_MP_EXPTMOD_C
wolfSSL 15:117db924cf7c 80 #undef BN_MP_DIV_3_C
wolfSSL 15:117db924cf7c 81 #undef BN_S_MP_MUL_HIGH_DIGS_C
wolfSSL 15:117db924cf7c 82 #undef BN_FAST_S_MP_MUL_HIGH_DIGS_C
wolfSSL 15:117db924cf7c 83 #undef BN_FAST_MP_INVMOD_C
wolfSSL 15:117db924cf7c 84
wolfSSL 15:117db924cf7c 85 /* To safely undefine these you have to make sure your RSA key won't exceed the Comba threshold
wolfSSL 15:117db924cf7c 86 * which is roughly 255 digits [7140 bits for 32-bit machines, 15300 bits for 64-bit machines]
wolfSSL 15:117db924cf7c 87 * which means roughly speaking you can handle up to 2536-bit RSA keys with these defined without
wolfSSL 15:117db924cf7c 88 * trouble.
wolfSSL 15:117db924cf7c 89 */
wolfSSL 15:117db924cf7c 90 #undef BN_S_MP_MUL_DIGS_C
wolfSSL 15:117db924cf7c 91 #undef BN_S_MP_SQR_C
wolfSSL 15:117db924cf7c 92 #undef BN_MP_MONTGOMERY_REDUCE_C
wolfSSL 15:117db924cf7c 93 #endif
wolfSSL 15:117db924cf7c 94
wolfSSL 15:117db924cf7c 95 #endif
wolfSSL 15:117db924cf7c 96
wolfSSL 15:117db924cf7c 97