comparison libtommath/tommath.h @ 1692:1051e4eea25a

Update LibTomMath to 1.2.0 (#84) * update C files * update other files * update headers * update makefiles * remove mp_set/get_double() * use ltm 1.2.0 API * update ltm_desc * use bundled tommath if system-tommath is too old * XMALLOC etc. were changed to MP_MALLOC etc.
author Steffen Jaeckel <s@jaeckel.eu>
date Tue, 26 May 2020 17:36:47 +0200
parents f52919ffd3b1
children
comparison
equal deleted inserted replaced
1691:2d3745d58843 1692:1051e4eea25a
1 /* LibTomMath, multiple-precision integer library -- Tom St Denis 1 /* LibTomMath, multiple-precision integer library -- Tom St Denis */
2 * 2 /* SPDX-License-Identifier: Unlicense */
3 * LibTomMath is a library that provides multiple-precision 3
4 * integer arithmetic as well as number theoretic functionality.
5 *
6 * The library was designed directly after the MPI library by
7 * Michael Fromberger but has been written from scratch with
8 * additional optimizations in place.
9 *
10 * SPDX-License-Identifier: Unlicense
11 */
12 #ifndef BN_H_ 4 #ifndef BN_H_
13 #define BN_H_ 5 #define BN_H_
14 6
15 #include <stdio.h>
16 #include <stdlib.h>
17 #include <stdint.h> 7 #include <stdint.h>
8 #include <stddef.h>
18 #include <limits.h> 9 #include <limits.h>
19 10
20 #include "tommath_class.h" 11 #ifdef LTM_NO_FILE
12 # warning LTM_NO_FILE has been deprecated, use MP_NO_FILE.
13 # define MP_NO_FILE
14 #endif
15
16 #ifndef MP_NO_FILE
17 # include <stdio.h>
18 #endif
19
20 #ifdef MP_8BIT
21 # ifdef _MSC_VER
22 # pragma message("8-bit (MP_8BIT) support is deprecated and will be dropped completely in the next version.")
23 # else
24 # warning "8-bit (MP_8BIT) support is deprecated and will be dropped completely in the next version."
25 # endif
26 #endif
21 27
22 #ifdef __cplusplus 28 #ifdef __cplusplus
23 extern "C" { 29 extern "C" {
24 #endif 30 #endif
25 31
26 /* MS Visual C++ doesn't have a 128bit type for words, so fall back to 32bit MPI's (where words are 64bit) */ 32 /* MS Visual C++ doesn't have a 128bit type for words, so fall back to 32bit MPI's (where words are 64bit) */
27 #if defined(_MSC_VER) || defined(__LLP64__) || defined(__e2k__) || defined(__LCC__) 33 #if (defined(_MSC_VER) || defined(__LLP64__) || defined(__e2k__) || defined(__LCC__)) && !defined(MP_64BIT)
28 # define MP_32BIT 34 # define MP_32BIT
29 #endif 35 #endif
30 36
31 /* detect 64-bit mode if possible */ 37 /* detect 64-bit mode if possible */
32 #if defined(__x86_64__) || defined(_M_X64) || defined(_M_AMD64) || \ 38 #if defined(__x86_64__) || defined(_M_X64) || defined(_M_AMD64) || \
33 defined(__powerpc64__) || defined(__ppc64__) || defined(__PPC64__) || \ 39 defined(__powerpc64__) || defined(__ppc64__) || defined(__PPC64__) || \
34 defined(__s390x__) || defined(__arch64__) || defined(__aarch64__) || \ 40 defined(__s390x__) || defined(__arch64__) || defined(__aarch64__) || \
35 defined(__sparcv9) || defined(__sparc_v9__) || defined(__sparc64__) || \ 41 defined(__sparcv9) || defined(__sparc_v9__) || defined(__sparc64__) || \
36 defined(__ia64) || defined(__ia64__) || defined(__itanium__) || defined(_M_IA64) || \ 42 defined(__ia64) || defined(__ia64__) || defined(__itanium__) || defined(_M_IA64) || \
37 defined(__LP64__) || defined(_LP64) || defined(__64BIT__) 43 defined(__LP64__) || defined(_LP64) || defined(__64BIT__)
38 # if !(defined(MP_32BIT) || defined(MP_16BIT) || defined(MP_8BIT)) 44 # if !(defined(MP_64BIT) || defined(MP_32BIT) || defined(MP_16BIT) || defined(MP_8BIT))
39 # if defined(__GNUC__) 45 # if defined(__GNUC__) && !defined(__hppa)
40 /* we support 128bit integers only via: __attribute__((mode(TI))) */ 46 /* we support 128bit integers only via: __attribute__((mode(TI))) */
41 # define MP_64BIT 47 # define MP_64BIT
42 # else 48 # else
43 /* otherwise we fall back to MP_32BIT even on 64bit platforms */ 49 /* otherwise we fall back to MP_32BIT even on 64bit platforms */
44 # define MP_32BIT 50 # define MP_32BIT
45 # endif 51 # endif
46 # endif 52 # endif
47 #endif 53 #endif
48 54
55 #ifdef MP_DIGIT_BIT
56 # error Defining MP_DIGIT_BIT is disallowed, use MP_8/16/31/32/64BIT
57 #endif
58
49 /* some default configurations. 59 /* some default configurations.
50 * 60 *
51 * A "mp_digit" must be able to hold DIGIT_BIT + 1 bits 61 * A "mp_digit" must be able to hold MP_DIGIT_BIT + 1 bits
52 * A "mp_word" must be able to hold 2*DIGIT_BIT + 1 bits 62 * A "mp_word" must be able to hold 2*MP_DIGIT_BIT + 1 bits
53 * 63 *
54 * At the very least a mp_digit must be able to hold 7 bits 64 * At the very least a mp_digit must be able to hold 7 bits
55 * [any size beyond that is ok provided it doesn't overflow the data type] 65 * [any size beyond that is ok provided it doesn't overflow the data type]
56 */ 66 */
67
57 #ifdef MP_8BIT 68 #ifdef MP_8BIT
58 typedef uint8_t mp_digit; 69 typedef uint8_t mp_digit;
59 typedef uint16_t mp_word; 70 typedef uint16_t private_mp_word;
60 # define MP_SIZEOF_MP_DIGIT 1 71 # define MP_DIGIT_BIT 7
61 # ifdef DIGIT_BIT
62 # error You must not define DIGIT_BIT when using MP_8BIT
63 # endif
64 #elif defined(MP_16BIT) 72 #elif defined(MP_16BIT)
65 typedef uint16_t mp_digit; 73 typedef uint16_t mp_digit;
66 typedef uint32_t mp_word; 74 typedef uint32_t private_mp_word;
67 # define MP_SIZEOF_MP_DIGIT 2 75 # define MP_DIGIT_BIT 15
68 # ifdef DIGIT_BIT
69 # error You must not define DIGIT_BIT when using MP_16BIT
70 # endif
71 #elif defined(MP_64BIT) 76 #elif defined(MP_64BIT)
72 /* for GCC only on supported platforms */ 77 /* for GCC only on supported platforms */
73 typedef uint64_t mp_digit; 78 typedef uint64_t mp_digit;
74 typedef unsigned long mp_word __attribute__((mode(TI))); 79 #if defined(__GNUC__)
75 # define DIGIT_BIT 60 80 typedef unsigned long private_mp_word __attribute__((mode(TI)));
81 #endif
82 # define MP_DIGIT_BIT 60
76 #else 83 #else
77 /* this is the default case, 28-bit digits */
78
79 /* this is to make porting into LibTomCrypt easier :-) */
80 typedef uint32_t mp_digit; 84 typedef uint32_t mp_digit;
81 typedef uint64_t mp_word; 85 typedef uint64_t private_mp_word;
82
83 # ifdef MP_31BIT 86 # ifdef MP_31BIT
84 /* this is an extension that uses 31-bit digits */ 87 /*
85 # define DIGIT_BIT 31 88 * This is an extension that uses 31-bit digits.
89 * Please be aware that not all functions support this size, especially s_mp_mul_digs_fast
90 * will be reduced to work on small numbers only:
91 * Up to 8 limbs, 248 bits instead of up to 512 limbs, 15872 bits with MP_28BIT.
92 */
93 # define MP_DIGIT_BIT 31
86 # else 94 # else
87 /* default case is 28-bit digits, defines MP_28BIT as a handy macro to test */ 95 /* default case is 28-bit digits, defines MP_28BIT as a handy macro to test */
88 # define DIGIT_BIT 28 96 # define MP_DIGIT_BIT 28
89 # define MP_28BIT 97 # define MP_28BIT
90 # endif 98 # endif
91 #endif 99 #endif
92 100
93 /* otherwise the bits per digit is calculated automatically from the size of a mp_digit */ 101 /* mp_word is a private type */
94 #ifndef DIGIT_BIT 102 #define mp_word MP_DEPRECATED_PRAGMA("mp_word has been made private") private_mp_word
95 # define DIGIT_BIT (((CHAR_BIT * MP_SIZEOF_MP_DIGIT) - 1)) /* bits per digit */ 103
96 typedef uint_least32_t mp_min_u32; 104 #define MP_SIZEOF_MP_DIGIT (MP_DEPRECATED_PRAGMA("MP_SIZEOF_MP_DIGIT has been deprecated, use sizeof (mp_digit)") sizeof (mp_digit))
105
106 #define MP_MASK ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
107 #define MP_DIGIT_MAX MP_MASK
108
109 /* Primality generation flags */
110 #define MP_PRIME_BBS 0x0001 /* BBS style prime */
111 #define MP_PRIME_SAFE 0x0002 /* Safe prime (p-1)/2 == prime */
112 #define MP_PRIME_2MSB_ON 0x0008 /* force 2nd MSB to 1 */
113
114 #define LTM_PRIME_BBS (MP_DEPRECATED_PRAGMA("LTM_PRIME_BBS has been deprecated, use MP_PRIME_BBS") MP_PRIME_BBS)
115 #define LTM_PRIME_SAFE (MP_DEPRECATED_PRAGMA("LTM_PRIME_SAFE has been deprecated, use MP_PRIME_SAFE") MP_PRIME_SAFE)
116 #define LTM_PRIME_2MSB_ON (MP_DEPRECATED_PRAGMA("LTM_PRIME_2MSB_ON has been deprecated, use MP_PRIME_2MSB_ON") MP_PRIME_2MSB_ON)
117
118 #ifdef MP_USE_ENUMS
119 typedef enum {
120 MP_ZPOS = 0, /* positive */
121 MP_NEG = 1 /* negative */
122 } mp_sign;
123 typedef enum {
124 MP_LT = -1, /* less than */
125 MP_EQ = 0, /* equal */
126 MP_GT = 1 /* greater than */
127 } mp_ord;
128 typedef enum {
129 MP_NO = 0,
130 MP_YES = 1
131 } mp_bool;
132 typedef enum {
133 MP_OKAY = 0, /* no error */
134 MP_ERR = -1, /* unknown error */
135 MP_MEM = -2, /* out of mem */
136 MP_VAL = -3, /* invalid input */
137 MP_ITER = -4, /* maximum iterations reached */
138 MP_BUF = -5 /* buffer overflow, supplied buffer too small */
139 } mp_err;
140 typedef enum {
141 MP_LSB_FIRST = -1,
142 MP_MSB_FIRST = 1
143 } mp_order;
144 typedef enum {
145 MP_LITTLE_ENDIAN = -1,
146 MP_NATIVE_ENDIAN = 0,
147 MP_BIG_ENDIAN = 1
148 } mp_endian;
97 #else 149 #else
98 typedef mp_digit mp_min_u32; 150 typedef int mp_sign;
99 #endif 151 #define MP_ZPOS 0 /* positive integer */
100 152 #define MP_NEG 1 /* negative */
101 #define MP_DIGIT_BIT DIGIT_BIT 153 typedef int mp_ord;
102 #define MP_MASK ((((mp_digit)1)<<((mp_digit)DIGIT_BIT))-((mp_digit)1))
103 #define MP_DIGIT_MAX MP_MASK
104
105 /* equalities */
106 #define MP_LT -1 /* less than */ 154 #define MP_LT -1 /* less than */
107 #define MP_EQ 0 /* equal to */ 155 #define MP_EQ 0 /* equal to */
108 #define MP_GT 1 /* greater than */ 156 #define MP_GT 1 /* greater than */
109 157 typedef int mp_bool;
110 #define MP_ZPOS 0 /* positive integer */ 158 #define MP_YES 1
111 #define MP_NEG 1 /* negative */ 159 #define MP_NO 0
112 160 typedef int mp_err;
113 #define MP_OKAY 0 /* ok result */ 161 #define MP_OKAY 0 /* no error */
162 #define MP_ERR -1 /* unknown error */
114 #define MP_MEM -2 /* out of mem */ 163 #define MP_MEM -2 /* out of mem */
115 #define MP_VAL -3 /* invalid input */ 164 #define MP_VAL -3 /* invalid input */
116 #define MP_RANGE MP_VAL 165 #define MP_RANGE (MP_DEPRECATED_PRAGMA("MP_RANGE has been deprecated in favor of MP_VAL") MP_VAL)
117 #define MP_ITER -4 /* Max. iterations reached */ 166 #define MP_ITER -4 /* maximum iterations reached */
118 167 #define MP_BUF -5 /* buffer overflow, supplied buffer too small */
119 #define MP_YES 1 /* yes response */ 168 typedef int mp_order;
120 #define MP_NO 0 /* no response */ 169 #define MP_LSB_FIRST -1
121 170 #define MP_MSB_FIRST 1
122 /* Primality generation flags */ 171 typedef int mp_endian;
123 #define LTM_PRIME_BBS 0x0001 /* BBS style prime */ 172 #define MP_LITTLE_ENDIAN -1
124 #define LTM_PRIME_SAFE 0x0002 /* Safe prime (p-1)/2 == prime */ 173 #define MP_NATIVE_ENDIAN 0
125 #define LTM_PRIME_2MSB_ON 0x0008 /* force 2nd MSB to 1 */ 174 #define MP_BIG_ENDIAN 1
126 175 #endif
127 typedef int mp_err; 176
128 177 /* tunable cutoffs */
129 /* you'll have to tune these... */ 178
130 extern int KARATSUBA_MUL_CUTOFF, 179 #ifndef MP_FIXED_CUTOFFS
131 KARATSUBA_SQR_CUTOFF, 180 extern int
132 TOOM_MUL_CUTOFF, 181 KARATSUBA_MUL_CUTOFF,
133 TOOM_SQR_CUTOFF; 182 KARATSUBA_SQR_CUTOFF,
183 TOOM_MUL_CUTOFF,
184 TOOM_SQR_CUTOFF;
185 #endif
134 186
135 /* define this to use lower memory usage routines (exptmods mostly) */ 187 /* define this to use lower memory usage routines (exptmods mostly) */
136 /* #define MP_LOW_MEM */ 188 /* #define MP_LOW_MEM */
137 189
138 /* default precision */ 190 /* default precision */
139 #ifndef MP_PREC 191 #ifndef MP_PREC
140 # ifndef MP_LOW_MEM 192 # ifndef MP_LOW_MEM
141 # define MP_PREC 32 /* default digits of precision */ 193 # define PRIVATE_MP_PREC 32 /* default digits of precision */
194 # elif defined(MP_8BIT)
195 # define PRIVATE_MP_PREC 16 /* default digits of precision */
142 # else 196 # else
143 # define MP_PREC 8 /* default digits of precision */ 197 # define PRIVATE_MP_PREC 8 /* default digits of precision */
144 # endif 198 # endif
199 # define MP_PREC (MP_DEPRECATED_PRAGMA("MP_PREC is an internal macro") PRIVATE_MP_PREC)
145 #endif 200 #endif
146 201
147 /* size of comba arrays, should be at least 2 * 2**(BITS_PER_WORD - BITS_PER_DIGIT*2) */ 202 /* size of comba arrays, should be at least 2 * 2**(BITS_PER_WORD - BITS_PER_DIGIT*2) */
148 #define MP_WARRAY (1u << (((sizeof(mp_word) * CHAR_BIT) - (2 * DIGIT_BIT)) + 1)) 203 #define PRIVATE_MP_WARRAY (int)(1uLL << (((CHAR_BIT * sizeof(private_mp_word)) - (2 * MP_DIGIT_BIT)) + 1))
204 #define MP_WARRAY (MP_DEPRECATED_PRAGMA("MP_WARRAY is an internal macro") PRIVATE_MP_WARRAY)
205
206 #if defined(__GNUC__) && __GNUC__ >= 4
207 # define MP_NULL_TERMINATED __attribute__((sentinel))
208 #else
209 # define MP_NULL_TERMINATED
210 #endif
211
212 /*
213 * MP_WUR - warn unused result
214 * ---------------------------
215 *
216 * The result of functions annotated with MP_WUR must be
217 * checked and cannot be ignored.
218 *
219 * Most functions in libtommath return an error code.
220 * This error code must be checked in order to prevent crashes or invalid
221 * results.
222 *
223 * If you still want to avoid the error checks for quick and dirty programs
224 * without robustness guarantees, you can `#define MP_WUR` before including
225 * tommath.h, disabling the warnings.
226 */
227 #ifndef MP_WUR
228 # if defined(__GNUC__) && __GNUC__ >= 4
229 # define MP_WUR __attribute__((warn_unused_result))
230 # else
231 # define MP_WUR
232 # endif
233 #endif
234
235 #if defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__ >= 405)
236 # define MP_DEPRECATED(x) __attribute__((deprecated("replaced by " #x)))
237 # define PRIVATE_MP_DEPRECATED_PRAGMA(s) _Pragma(#s)
238 # define MP_DEPRECATED_PRAGMA(s) PRIVATE_MP_DEPRECATED_PRAGMA(GCC warning s)
239 #elif defined(_MSC_VER) && _MSC_VER >= 1500
240 # define MP_DEPRECATED(x) __declspec(deprecated("replaced by " #x))
241 # define MP_DEPRECATED_PRAGMA(s) __pragma(message(s))
242 #else
243 # define MP_DEPRECATED(s)
244 # define MP_DEPRECATED_PRAGMA(s)
245 #endif
246
247 #define DIGIT_BIT (MP_DEPRECATED_PRAGMA("DIGIT_BIT macro is deprecated, MP_DIGIT_BIT instead") MP_DIGIT_BIT)
248 #define USED(m) (MP_DEPRECATED_PRAGMA("USED macro is deprecated, use z->used instead") (m)->used)
249 #define DIGIT(m, k) (MP_DEPRECATED_PRAGMA("DIGIT macro is deprecated, use z->dp instead") (m)->dp[(k)])
250 #define SIGN(m) (MP_DEPRECATED_PRAGMA("SIGN macro is deprecated, use z->sign instead") (m)->sign)
149 251
150 /* the infamous mp_int structure */ 252 /* the infamous mp_int structure */
151 typedef struct { 253 typedef struct {
152 int used, alloc, sign; 254 int used, alloc;
255 mp_sign sign;
153 mp_digit *dp; 256 mp_digit *dp;
154 } mp_int; 257 } mp_int;
155 258
156 /* callback for mp_prime_random, should fill dst with random bytes and return how many read [upto len] */ 259 /* callback for mp_prime_random, should fill dst with random bytes and return how many read [upto len] */
157 typedef int ltm_prime_callback(unsigned char *dst, int len, void *dat); 260 typedef int private_mp_prime_callback(unsigned char *dst, int len, void *dat);
158 261 typedef private_mp_prime_callback MP_DEPRECATED(mp_rand_source) ltm_prime_callback;
159
160 #define USED(m) ((m)->used)
161 #define DIGIT(m, k) ((m)->dp[(k)])
162 #define SIGN(m) ((m)->sign)
163 262
164 /* error code to char* string */ 263 /* error code to char* string */
165 const char *mp_error_to_string(int code); 264 const char *mp_error_to_string(mp_err code) MP_WUR;
166 265
167 /* ---> init and deinit bignum functions <--- */ 266 /* ---> init and deinit bignum functions <--- */
168 /* init a bignum */ 267 /* init a bignum */
169 int mp_init(mp_int *a); 268 mp_err mp_init(mp_int *a) MP_WUR;
170 269
171 /* free a bignum */ 270 /* free a bignum */
172 void mp_clear(mp_int *a); 271 void mp_clear(mp_int *a);
173 272
174 /* init a null terminated series of arguments */ 273 /* init a null terminated series of arguments */
175 int mp_init_multi(mp_int *mp, ...); 274 mp_err mp_init_multi(mp_int *mp, ...) MP_NULL_TERMINATED MP_WUR;
176 275
177 /* clear a null terminated series of arguments */ 276 /* clear a null terminated series of arguments */
178 void mp_clear_multi(mp_int *mp, ...); 277 void mp_clear_multi(mp_int *mp, ...) MP_NULL_TERMINATED;
179 278
180 /* exchange two ints */ 279 /* exchange two ints */
181 void mp_exch(mp_int *a, mp_int *b); 280 void mp_exch(mp_int *a, mp_int *b);
182 281
183 /* shrink ram required for a bignum */ 282 /* shrink ram required for a bignum */
184 int mp_shrink(mp_int *a); 283 mp_err mp_shrink(mp_int *a) MP_WUR;
185 284
186 /* grow an int to a given size */ 285 /* grow an int to a given size */
187 int mp_grow(mp_int *a, int size); 286 mp_err mp_grow(mp_int *a, int size) MP_WUR;
188 287
189 /* init to a given number of digits */ 288 /* init to a given number of digits */
190 int mp_init_size(mp_int *a, int size); 289 mp_err mp_init_size(mp_int *a, int size) MP_WUR;
191 290
192 /* ---> Basic Manipulations <--- */ 291 /* ---> Basic Manipulations <--- */
193 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO) 292 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
194 #define mp_iseven(a) ((((a)->used == 0) || (((a)->dp[0] & 1u) == 0u)) ? MP_YES : MP_NO) 293 mp_bool mp_iseven(const mp_int *a) MP_WUR;
195 #define mp_isodd(a) ((((a)->used > 0) && (((a)->dp[0] & 1u) == 1u)) ? MP_YES : MP_NO) 294 mp_bool mp_isodd(const mp_int *a) MP_WUR;
196 #define mp_isneg(a) (((a)->sign != MP_ZPOS) ? MP_YES : MP_NO) 295 #define mp_isneg(a) (((a)->sign != MP_ZPOS) ? MP_YES : MP_NO)
197 296
198 /* set to zero */ 297 /* set to zero */
199 void mp_zero(mp_int *a); 298 void mp_zero(mp_int *a);
200 299
201 /* set to a digit */ 300 /* get and set doubles */
301 double mp_get_double(const mp_int *a) MP_WUR;
302 mp_err mp_set_double(mp_int *a, double b) MP_WUR;
303
304 /* get integer, set integer and init with integer (int32_t) */
305 int32_t mp_get_i32(const mp_int *a) MP_WUR;
306 void mp_set_i32(mp_int *a, int32_t b);
307 mp_err mp_init_i32(mp_int *a, int32_t b) MP_WUR;
308
309 /* get integer, set integer and init with integer, behaves like two complement for negative numbers (uint32_t) */
310 #define mp_get_u32(a) ((uint32_t)mp_get_i32(a))
311 void mp_set_u32(mp_int *a, uint32_t b);
312 mp_err mp_init_u32(mp_int *a, uint32_t b) MP_WUR;
313
314 /* get integer, set integer and init with integer (int64_t) */
315 int64_t mp_get_i64(const mp_int *a) MP_WUR;
316 void mp_set_i64(mp_int *a, int64_t b);
317 mp_err mp_init_i64(mp_int *a, int64_t b) MP_WUR;
318
319 /* get integer, set integer and init with integer, behaves like two complement for negative numbers (uint64_t) */
320 #define mp_get_u64(a) ((uint64_t)mp_get_i64(a))
321 void mp_set_u64(mp_int *a, uint64_t b);
322 mp_err mp_init_u64(mp_int *a, uint64_t b) MP_WUR;
323
324 /* get magnitude */
325 uint32_t mp_get_mag_u32(const mp_int *a) MP_WUR;
326 uint64_t mp_get_mag_u64(const mp_int *a) MP_WUR;
327 unsigned long mp_get_mag_ul(const mp_int *a) MP_WUR;
328 unsigned long long mp_get_mag_ull(const mp_int *a) MP_WUR;
329
330 /* get integer, set integer (long) */
331 long mp_get_l(const mp_int *a) MP_WUR;
332 void mp_set_l(mp_int *a, long b);
333 mp_err mp_init_l(mp_int *a, long b) MP_WUR;
334
335 /* get integer, set integer (unsigned long) */
336 #define mp_get_ul(a) ((unsigned long)mp_get_l(a))
337 void mp_set_ul(mp_int *a, unsigned long b);
338 mp_err mp_init_ul(mp_int *a, unsigned long b) MP_WUR;
339
340 /* get integer, set integer (long long) */
341 long long mp_get_ll(const mp_int *a) MP_WUR;
342 void mp_set_ll(mp_int *a, long long b);
343 mp_err mp_init_ll(mp_int *a, long long b) MP_WUR;
344
345 /* get integer, set integer (unsigned long long) */
346 #define mp_get_ull(a) ((unsigned long long)mp_get_ll(a))
347 void mp_set_ull(mp_int *a, unsigned long long b);
348 mp_err mp_init_ull(mp_int *a, unsigned long long b) MP_WUR;
349
350 /* set to single unsigned digit, up to MP_DIGIT_MAX */
202 void mp_set(mp_int *a, mp_digit b); 351 void mp_set(mp_int *a, mp_digit b);
203 352 mp_err mp_init_set(mp_int *a, mp_digit b) MP_WUR;
204 /* set a 32-bit const */ 353
205 int mp_set_int(mp_int *a, unsigned long b); 354 /* get integer, set integer and init with integer (deprecated) */
206 355 MP_DEPRECATED(mp_get_mag_u32/mp_get_u32) unsigned long mp_get_int(const mp_int *a) MP_WUR;
207 /* set a platform dependent unsigned long value */ 356 MP_DEPRECATED(mp_get_mag_ul/mp_get_ul) unsigned long mp_get_long(const mp_int *a) MP_WUR;
208 int mp_set_long(mp_int *a, unsigned long b); 357 MP_DEPRECATED(mp_get_mag_ull/mp_get_ull) unsigned long long mp_get_long_long(const mp_int *a) MP_WUR;
209 358 MP_DEPRECATED(mp_set_ul) mp_err mp_set_int(mp_int *a, unsigned long b);
210 /* set a platform dependent unsigned long long value */ 359 MP_DEPRECATED(mp_set_ul) mp_err mp_set_long(mp_int *a, unsigned long b);
211 int mp_set_long_long(mp_int *a, unsigned long long b); 360 MP_DEPRECATED(mp_set_ull) mp_err mp_set_long_long(mp_int *a, unsigned long long b);
212 361 MP_DEPRECATED(mp_init_ul) mp_err mp_init_set_int(mp_int *a, unsigned long b) MP_WUR;
213 /* get a 32-bit value */
214 unsigned long mp_get_int(const mp_int *a);
215
216 /* get a platform dependent unsigned long value */
217 unsigned long mp_get_long(const mp_int *a);
218
219 /* get a platform dependent unsigned long long value */
220 unsigned long long mp_get_long_long(const mp_int *a);
221
222 /* initialize and set a digit */
223 int mp_init_set(mp_int *a, mp_digit b);
224
225 /* initialize and set 32-bit value */
226 int mp_init_set_int(mp_int *a, unsigned long b);
227 362
228 /* copy, b = a */ 363 /* copy, b = a */
229 int mp_copy(const mp_int *a, mp_int *b); 364 mp_err mp_copy(const mp_int *a, mp_int *b) MP_WUR;
230 365
231 /* inits and copies, a = b */ 366 /* inits and copies, a = b */
232 int mp_init_copy(mp_int *a, const mp_int *b); 367 mp_err mp_init_copy(mp_int *a, const mp_int *b) MP_WUR;
233 368
234 /* trim unused digits */ 369 /* trim unused digits */
235 void mp_clamp(mp_int *a); 370 void mp_clamp(mp_int *a);
236 371
372
373 /* export binary data */
374 MP_DEPRECATED(mp_pack) mp_err mp_export(void *rop, size_t *countp, int order, size_t size,
375 int endian, size_t nails, const mp_int *op) MP_WUR;
376
237 /* import binary data */ 377 /* import binary data */
238 int mp_import(mp_int *rop, size_t count, int order, size_t size, int endian, size_t nails, const void *op); 378 MP_DEPRECATED(mp_unpack) mp_err mp_import(mp_int *rop, size_t count, int order,
239 379 size_t size, int endian, size_t nails,
240 /* export binary data */ 380 const void *op) MP_WUR;
241 int mp_export(void *rop, size_t *countp, int order, size_t size, int endian, size_t nails, const mp_int *op); 381
382 /* unpack binary data */
383 mp_err mp_unpack(mp_int *rop, size_t count, mp_order order, size_t size, mp_endian endian,
384 size_t nails, const void *op) MP_WUR;
385
386 /* pack binary data */
387 size_t mp_pack_count(const mp_int *a, size_t nails, size_t size) MP_WUR;
388 mp_err mp_pack(void *rop, size_t maxcount, size_t *written, mp_order order, size_t size,
389 mp_endian endian, size_t nails, const mp_int *op) MP_WUR;
242 390
243 /* ---> digit manipulation <--- */ 391 /* ---> digit manipulation <--- */
244 392
245 /* right shift by "b" digits */ 393 /* right shift by "b" digits */
246 void mp_rshd(mp_int *a, int b); 394 void mp_rshd(mp_int *a, int b);
247 395
248 /* left shift by "b" digits */ 396 /* left shift by "b" digits */
249 int mp_lshd(mp_int *a, int b); 397 mp_err mp_lshd(mp_int *a, int b) MP_WUR;
250 398
251 /* c = a / 2**b, implemented as c = a >> b */ 399 /* c = a / 2**b, implemented as c = a >> b */
252 int mp_div_2d(const mp_int *a, int b, mp_int *c, mp_int *d); 400 mp_err mp_div_2d(const mp_int *a, int b, mp_int *c, mp_int *d) MP_WUR;
253 401
254 /* b = a/2 */ 402 /* b = a/2 */
255 int mp_div_2(const mp_int *a, mp_int *b); 403 mp_err mp_div_2(const mp_int *a, mp_int *b) MP_WUR;
404
405 /* a/3 => 3c + d == a */
406 mp_err mp_div_3(const mp_int *a, mp_int *c, mp_digit *d) MP_WUR;
256 407
257 /* c = a * 2**b, implemented as c = a << b */ 408 /* c = a * 2**b, implemented as c = a << b */
258 int mp_mul_2d(const mp_int *a, int b, mp_int *c); 409 mp_err mp_mul_2d(const mp_int *a, int b, mp_int *c) MP_WUR;
259 410
260 /* b = a*2 */ 411 /* b = a*2 */
261 int mp_mul_2(const mp_int *a, mp_int *b); 412 mp_err mp_mul_2(const mp_int *a, mp_int *b) MP_WUR;
262 413
263 /* c = a mod 2**b */ 414 /* c = a mod 2**b */
264 int mp_mod_2d(const mp_int *a, int b, mp_int *c); 415 mp_err mp_mod_2d(const mp_int *a, int b, mp_int *c) MP_WUR;
265 416
266 /* computes a = 2**b */ 417 /* computes a = 2**b */
267 int mp_2expt(mp_int *a, int b); 418 mp_err mp_2expt(mp_int *a, int b) MP_WUR;
268 419
269 /* Counts the number of lsbs which are zero before the first zero bit */ 420 /* Counts the number of lsbs which are zero before the first zero bit */
270 int mp_cnt_lsb(const mp_int *a); 421 int mp_cnt_lsb(const mp_int *a) MP_WUR;
271 422
272 /* I Love Earth! */ 423 /* I Love Earth! */
273 424
274 /* makes a pseudo-random mp_int of a given size */ 425 /* makes a pseudo-random mp_int of a given size */
275 int mp_rand(mp_int *a, int digits); 426 mp_err mp_rand(mp_int *a, int digits) MP_WUR;
276 /* makes a pseudo-random small int of a given size */ 427 /* makes a pseudo-random small int of a given size */
277 int mp_rand_digit(mp_digit *r); 428 MP_DEPRECATED(mp_rand) mp_err mp_rand_digit(mp_digit *r) MP_WUR;
429 /* use custom random data source instead of source provided the platform */
430 void mp_rand_source(mp_err(*source)(void *out, size_t size));
278 431
279 #ifdef MP_PRNG_ENABLE_LTM_RNG 432 #ifdef MP_PRNG_ENABLE_LTM_RNG
433 # warning MP_PRNG_ENABLE_LTM_RNG has been deprecated, use mp_rand_source instead.
280 /* A last resort to provide random data on systems without any of the other 434 /* A last resort to provide random data on systems without any of the other
281 * implemented ways to gather entropy. 435 * implemented ways to gather entropy.
282 * It is compatible with `rng_get_bytes()` from libtomcrypt so you could 436 * It is compatible with `rng_get_bytes()` from libtomcrypt so you could
283 * provide that one and then set `ltm_rng = rng_get_bytes;` */ 437 * provide that one and then set `ltm_rng = rng_get_bytes;` */
284 extern unsigned long (*ltm_rng)(unsigned char *out, unsigned long outlen, void (*callback)(void)); 438 extern unsigned long (*ltm_rng)(unsigned char *out, unsigned long outlen, void (*callback)(void));
285 extern void (*ltm_rng_callback)(void); 439 extern void (*ltm_rng_callback)(void);
286 #endif 440 #endif
287 441
288 /* ---> binary operations <--- */ 442 /* ---> binary operations <--- */
289 /* c = a XOR b */
290 int mp_xor(const mp_int *a, const mp_int *b, mp_int *c);
291
292 /* c = a OR b */
293 int mp_or(const mp_int *a, const mp_int *b, mp_int *c);
294
295 /* c = a AND b */
296 int mp_and(const mp_int *a, const mp_int *b, mp_int *c);
297 443
298 /* Checks the bit at position b and returns MP_YES 444 /* Checks the bit at position b and returns MP_YES
299 if the bit is 1, MP_NO if it is 0 and MP_VAL 445 * if the bit is 1, MP_NO if it is 0 and MP_VAL
300 in case of error */ 446 * in case of error
301 int mp_get_bit(const mp_int *a, int b); 447 */
448 MP_DEPRECATED(s_mp_get_bit) int mp_get_bit(const mp_int *a, int b) MP_WUR;
302 449
303 /* c = a XOR b (two complement) */ 450 /* c = a XOR b (two complement) */
304 int mp_tc_xor(const mp_int *a, const mp_int *b, mp_int *c); 451 MP_DEPRECATED(mp_xor) mp_err mp_tc_xor(const mp_int *a, const mp_int *b, mp_int *c) MP_WUR;
452 mp_err mp_xor(const mp_int *a, const mp_int *b, mp_int *c) MP_WUR;
305 453
306 /* c = a OR b (two complement) */ 454 /* c = a OR b (two complement) */
307 int mp_tc_or(const mp_int *a, const mp_int *b, mp_int *c); 455 MP_DEPRECATED(mp_or) mp_err mp_tc_or(const mp_int *a, const mp_int *b, mp_int *c) MP_WUR;
456 mp_err mp_or(const mp_int *a, const mp_int *b, mp_int *c) MP_WUR;
308 457
309 /* c = a AND b (two complement) */ 458 /* c = a AND b (two complement) */
310 int mp_tc_and(const mp_int *a, const mp_int *b, mp_int *c); 459 MP_DEPRECATED(mp_and) mp_err mp_tc_and(const mp_int *a, const mp_int *b, mp_int *c) MP_WUR;
311 460 mp_err mp_and(const mp_int *a, const mp_int *b, mp_int *c) MP_WUR;
312 /* right shift (two complement) */ 461
313 int mp_tc_div_2d(const mp_int *a, int b, mp_int *c); 462 /* b = ~a (bitwise not, two complement) */
463 mp_err mp_complement(const mp_int *a, mp_int *b) MP_WUR;
464
465 /* right shift with sign extension */
466 MP_DEPRECATED(mp_signed_rsh) mp_err mp_tc_div_2d(const mp_int *a, int b, mp_int *c) MP_WUR;
467 mp_err mp_signed_rsh(const mp_int *a, int b, mp_int *c) MP_WUR;
314 468
315 /* ---> Basic arithmetic <--- */ 469 /* ---> Basic arithmetic <--- */
316 470
317 /* b = ~a */
318 int mp_complement(const mp_int *a, mp_int *b);
319
320 /* b = -a */ 471 /* b = -a */
321 int mp_neg(const mp_int *a, mp_int *b); 472 mp_err mp_neg(const mp_int *a, mp_int *b) MP_WUR;
322 473
323 /* b = |a| */ 474 /* b = |a| */
324 int mp_abs(const mp_int *a, mp_int *b); 475 mp_err mp_abs(const mp_int *a, mp_int *b) MP_WUR;
325 476
326 /* compare a to b */ 477 /* compare a to b */
327 int mp_cmp(const mp_int *a, const mp_int *b); 478 mp_ord mp_cmp(const mp_int *a, const mp_int *b) MP_WUR;
328 479
329 /* compare |a| to |b| */ 480 /* compare |a| to |b| */
330 int mp_cmp_mag(const mp_int *a, const mp_int *b); 481 mp_ord mp_cmp_mag(const mp_int *a, const mp_int *b) MP_WUR;
331 482
332 /* c = a + b */ 483 /* c = a + b */
333 int mp_add(const mp_int *a, const mp_int *b, mp_int *c); 484 mp_err mp_add(const mp_int *a, const mp_int *b, mp_int *c) MP_WUR;
334 485
335 /* c = a - b */ 486 /* c = a - b */
336 int mp_sub(const mp_int *a, const mp_int *b, mp_int *c); 487 mp_err mp_sub(const mp_int *a, const mp_int *b, mp_int *c) MP_WUR;
337 488
338 /* c = a * b */ 489 /* c = a * b */
339 int mp_mul(const mp_int *a, const mp_int *b, mp_int *c); 490 mp_err mp_mul(const mp_int *a, const mp_int *b, mp_int *c) MP_WUR;
340 491
341 /* b = a*a */ 492 /* b = a*a */
342 int mp_sqr(const mp_int *a, mp_int *b); 493 mp_err mp_sqr(const mp_int *a, mp_int *b) MP_WUR;
343 494
344 /* a/b => cb + d == a */ 495 /* a/b => cb + d == a */
345 int mp_div(const mp_int *a, const mp_int *b, mp_int *c, mp_int *d); 496 mp_err mp_div(const mp_int *a, const mp_int *b, mp_int *c, mp_int *d) MP_WUR;
346 497
347 /* c = a mod b, 0 <= c < b */ 498 /* c = a mod b, 0 <= c < b */
348 int mp_mod(const mp_int *a, const mp_int *b, mp_int *c); 499 mp_err mp_mod(const mp_int *a, const mp_int *b, mp_int *c) MP_WUR;
500
501 /* Increment "a" by one like "a++". Changes input! */
502 mp_err mp_incr(mp_int *a) MP_WUR;
503
504 /* Decrement "a" by one like "a--". Changes input! */
505 mp_err mp_decr(mp_int *a) MP_WUR;
349 506
350 /* ---> single digit functions <--- */ 507 /* ---> single digit functions <--- */
351 508
352 /* compare against a single digit */ 509 /* compare against a single digit */
353 int mp_cmp_d(const mp_int *a, mp_digit b); 510 mp_ord mp_cmp_d(const mp_int *a, mp_digit b) MP_WUR;
354 511
355 /* c = a + b */ 512 /* c = a + b */
356 int mp_add_d(const mp_int *a, mp_digit b, mp_int *c); 513 mp_err mp_add_d(const mp_int *a, mp_digit b, mp_int *c) MP_WUR;
357 514
358 /* c = a - b */ 515 /* c = a - b */
359 int mp_sub_d(const mp_int *a, mp_digit b, mp_int *c); 516 mp_err mp_sub_d(const mp_int *a, mp_digit b, mp_int *c) MP_WUR;
360 517
361 /* c = a * b */ 518 /* c = a * b */
362 int mp_mul_d(const mp_int *a, mp_digit b, mp_int *c); 519 mp_err mp_mul_d(const mp_int *a, mp_digit b, mp_int *c) MP_WUR;
363 520
364 /* a/b => cb + d == a */ 521 /* a/b => cb + d == a */
365 int mp_div_d(const mp_int *a, mp_digit b, mp_int *c, mp_digit *d); 522 mp_err mp_div_d(const mp_int *a, mp_digit b, mp_int *c, mp_digit *d) MP_WUR;
366
367 /* a/3 => 3c + d == a */
368 int mp_div_3(const mp_int *a, mp_int *c, mp_digit *d);
369
370 /* c = a**b */
371 int mp_expt_d(const mp_int *a, mp_digit b, mp_int *c);
372 int mp_expt_d_ex(const mp_int *a, mp_digit b, mp_int *c, int fast);
373 523
374 /* c = a mod b, 0 <= c < b */ 524 /* c = a mod b, 0 <= c < b */
375 int mp_mod_d(const mp_int *a, mp_digit b, mp_digit *c); 525 mp_err mp_mod_d(const mp_int *a, mp_digit b, mp_digit *c) MP_WUR;
376 526
377 /* ---> number theory <--- */ 527 /* ---> number theory <--- */
378 528
379 /* d = a + b (mod c) */ 529 /* d = a + b (mod c) */
380 int mp_addmod(const mp_int *a, const mp_int *b, const mp_int *c, mp_int *d); 530 mp_err mp_addmod(const mp_int *a, const mp_int *b, const mp_int *c, mp_int *d) MP_WUR;
381 531
382 /* d = a - b (mod c) */ 532 /* d = a - b (mod c) */
383 int mp_submod(const mp_int *a, const mp_int *b, const mp_int *c, mp_int *d); 533 mp_err mp_submod(const mp_int *a, const mp_int *b, const mp_int *c, mp_int *d) MP_WUR;
384 534
385 /* d = a * b (mod c) */ 535 /* d = a * b (mod c) */
386 int mp_mulmod(const mp_int *a, const mp_int *b, const mp_int *c, mp_int *d); 536 mp_err mp_mulmod(const mp_int *a, const mp_int *b, const mp_int *c, mp_int *d) MP_WUR;
387 537
388 /* c = a * a (mod b) */ 538 /* c = a * a (mod b) */
389 int mp_sqrmod(const mp_int *a, const mp_int *b, mp_int *c); 539 mp_err mp_sqrmod(const mp_int *a, const mp_int *b, mp_int *c) MP_WUR;
390 540
391 /* c = 1/a (mod b) */ 541 /* c = 1/a (mod b) */
392 int mp_invmod(const mp_int *a, const mp_int *b, mp_int *c); 542 mp_err mp_invmod(const mp_int *a, const mp_int *b, mp_int *c) MP_WUR;
393 543
394 /* c = (a, b) */ 544 /* c = (a, b) */
395 int mp_gcd(const mp_int *a, const mp_int *b, mp_int *c); 545 mp_err mp_gcd(const mp_int *a, const mp_int *b, mp_int *c) MP_WUR;
396 546
397 /* produces value such that U1*a + U2*b = U3 */ 547 /* produces value such that U1*a + U2*b = U3 */
398 int mp_exteuclid(const mp_int *a, const mp_int *b, mp_int *U1, mp_int *U2, mp_int *U3); 548 mp_err mp_exteuclid(const mp_int *a, const mp_int *b, mp_int *U1, mp_int *U2, mp_int *U3) MP_WUR;
399 549
400 /* c = [a, b] or (a*b)/(a, b) */ 550 /* c = [a, b] or (a*b)/(a, b) */
401 int mp_lcm(const mp_int *a, const mp_int *b, mp_int *c); 551 mp_err mp_lcm(const mp_int *a, const mp_int *b, mp_int *c) MP_WUR;
402 552
403 /* finds one of the b'th root of a, such that |c|**b <= |a| 553 /* finds one of the b'th root of a, such that |c|**b <= |a|
404 * 554 *
405 * returns error if a < 0 and b is even 555 * returns error if a < 0 and b is even
406 */ 556 */
407 int mp_n_root(const mp_int *a, mp_digit b, mp_int *c); 557 mp_err mp_root_u32(const mp_int *a, uint32_t b, mp_int *c) MP_WUR;
408 int mp_n_root_ex(const mp_int *a, mp_digit b, mp_int *c, int fast); 558 MP_DEPRECATED(mp_root_u32) mp_err mp_n_root(const mp_int *a, mp_digit b, mp_int *c) MP_WUR;
559 MP_DEPRECATED(mp_root_u32) mp_err mp_n_root_ex(const mp_int *a, mp_digit b, mp_int *c, int fast) MP_WUR;
409 560
410 /* special sqrt algo */ 561 /* special sqrt algo */
411 int mp_sqrt(const mp_int *arg, mp_int *ret); 562 mp_err mp_sqrt(const mp_int *arg, mp_int *ret) MP_WUR;
412 563
413 /* special sqrt (mod prime) */ 564 /* special sqrt (mod prime) */
414 int mp_sqrtmod_prime(const mp_int *n, const mp_int *prime, mp_int *ret); 565 mp_err mp_sqrtmod_prime(const mp_int *n, const mp_int *prime, mp_int *ret) MP_WUR;
415 566
416 /* is number a square? */ 567 /* is number a square? */
417 int mp_is_square(const mp_int *arg, int *ret); 568 mp_err mp_is_square(const mp_int *arg, mp_bool *ret) MP_WUR;
418 569
419 /* computes the jacobi c = (a | n) (or Legendre if b is prime) */ 570 /* computes the jacobi c = (a | n) (or Legendre if b is prime) */
420 int mp_jacobi(const mp_int *a, const mp_int *n, int *c); 571 MP_DEPRECATED(mp_kronecker) mp_err mp_jacobi(const mp_int *a, const mp_int *n, int *c) MP_WUR;
421 572
422 /* computes the Kronecker symbol c = (a | p) (like jacobi() but with {a,p} in Z */ 573 /* computes the Kronecker symbol c = (a | p) (like jacobi() but with {a,p} in Z */
423 int mp_kronecker(const mp_int *a, const mp_int *p, int *c); 574 mp_err mp_kronecker(const mp_int *a, const mp_int *p, int *c) MP_WUR;
424 575
425 /* used to setup the Barrett reduction for a given modulus b */ 576 /* used to setup the Barrett reduction for a given modulus b */
426 int mp_reduce_setup(mp_int *a, const mp_int *b); 577 mp_err mp_reduce_setup(mp_int *a, const mp_int *b) MP_WUR;
427 578
428 /* Barrett Reduction, computes a (mod b) with a precomputed value c 579 /* Barrett Reduction, computes a (mod b) with a precomputed value c
429 * 580 *
430 * Assumes that 0 < x <= m*m, note if 0 > x > -(m*m) then you can merely 581 * Assumes that 0 < x <= m*m, note if 0 > x > -(m*m) then you can merely
431 * compute the reduction as -1 * mp_reduce(mp_abs(x)) [pseudo code]. 582 * compute the reduction as -1 * mp_reduce(mp_abs(x)) [pseudo code].
432 */ 583 */
433 int mp_reduce(mp_int *x, const mp_int *m, const mp_int *mu); 584 mp_err mp_reduce(mp_int *x, const mp_int *m, const mp_int *mu) MP_WUR;
434 585
435 /* setups the montgomery reduction */ 586 /* setups the montgomery reduction */
436 int mp_montgomery_setup(const mp_int *n, mp_digit *rho); 587 mp_err mp_montgomery_setup(const mp_int *n, mp_digit *rho) MP_WUR;
437 588
438 /* computes a = B**n mod b without division or multiplication useful for 589 /* computes a = B**n mod b without division or multiplication useful for
439 * normalizing numbers in a Montgomery system. 590 * normalizing numbers in a Montgomery system.
440 */ 591 */
441 int mp_montgomery_calc_normalization(mp_int *a, const mp_int *b); 592 mp_err mp_montgomery_calc_normalization(mp_int *a, const mp_int *b) MP_WUR;
442 593
443 /* computes x/R == x (mod N) via Montgomery Reduction */ 594 /* computes x/R == x (mod N) via Montgomery Reduction */
444 int mp_montgomery_reduce(mp_int *x, const mp_int *n, mp_digit rho); 595 mp_err mp_montgomery_reduce(mp_int *x, const mp_int *n, mp_digit rho) MP_WUR;
445 596
446 /* returns 1 if a is a valid DR modulus */ 597 /* returns 1 if a is a valid DR modulus */
447 int mp_dr_is_modulus(const mp_int *a); 598 mp_bool mp_dr_is_modulus(const mp_int *a) MP_WUR;
448 599
449 /* sets the value of "d" required for mp_dr_reduce */ 600 /* sets the value of "d" required for mp_dr_reduce */
450 void mp_dr_setup(const mp_int *a, mp_digit *d); 601 void mp_dr_setup(const mp_int *a, mp_digit *d);
451 602
452 /* reduces a modulo n using the Diminished Radix method */ 603 /* reduces a modulo n using the Diminished Radix method */
453 int mp_dr_reduce(mp_int *x, const mp_int *n, mp_digit k); 604 mp_err mp_dr_reduce(mp_int *x, const mp_int *n, mp_digit k) MP_WUR;
454 605
455 /* returns true if a can be reduced with mp_reduce_2k */ 606 /* returns true if a can be reduced with mp_reduce_2k */
456 int mp_reduce_is_2k(const mp_int *a); 607 mp_bool mp_reduce_is_2k(const mp_int *a) MP_WUR;
457 608
458 /* determines k value for 2k reduction */ 609 /* determines k value for 2k reduction */
459 int mp_reduce_2k_setup(const mp_int *a, mp_digit *d); 610 mp_err mp_reduce_2k_setup(const mp_int *a, mp_digit *d) MP_WUR;
460 611
461 /* reduces a modulo b where b is of the form 2**p - k [0 <= a] */ 612 /* reduces a modulo b where b is of the form 2**p - k [0 <= a] */
462 int mp_reduce_2k(mp_int *a, const mp_int *n, mp_digit d); 613 mp_err mp_reduce_2k(mp_int *a, const mp_int *n, mp_digit d) MP_WUR;
463 614
464 /* returns true if a can be reduced with mp_reduce_2k_l */ 615 /* returns true if a can be reduced with mp_reduce_2k_l */
465 int mp_reduce_is_2k_l(const mp_int *a); 616 mp_bool mp_reduce_is_2k_l(const mp_int *a) MP_WUR;
466 617
467 /* determines k value for 2k reduction */ 618 /* determines k value for 2k reduction */
468 int mp_reduce_2k_setup_l(const mp_int *a, mp_int *d); 619 mp_err mp_reduce_2k_setup_l(const mp_int *a, mp_int *d) MP_WUR;
469 620
470 /* reduces a modulo b where b is of the form 2**p - k [0 <= a] */ 621 /* reduces a modulo b where b is of the form 2**p - k [0 <= a] */
471 int mp_reduce_2k_l(mp_int *a, const mp_int *n, const mp_int *d); 622 mp_err mp_reduce_2k_l(mp_int *a, const mp_int *n, const mp_int *d) MP_WUR;
472 623
473 /* Y = G**X (mod P) */ 624 /* Y = G**X (mod P) */
474 int mp_exptmod(const mp_int *G, const mp_int *X, const mp_int *P, mp_int *Y); 625 mp_err mp_exptmod(const mp_int *G, const mp_int *X, const mp_int *P, mp_int *Y) MP_WUR;
475 626
476 /* ---> Primes <--- */ 627 /* ---> Primes <--- */
477 628
478 /* number of primes */ 629 /* number of primes */
479 #ifdef MP_8BIT 630 #ifdef MP_8BIT
480 # define PRIME_SIZE 31 631 # define PRIVATE_MP_PRIME_TAB_SIZE 31
481 #else 632 #else
482 # define PRIME_SIZE 256 633 # define PRIVATE_MP_PRIME_TAB_SIZE 256
483 #endif 634 #endif
635 #define PRIME_SIZE (MP_DEPRECATED_PRAGMA("PRIME_SIZE has been made internal") PRIVATE_MP_PRIME_TAB_SIZE)
484 636
485 /* table of first PRIME_SIZE primes */ 637 /* table of first PRIME_SIZE primes */
486 extern const mp_digit ltm_prime_tab[PRIME_SIZE]; 638 MP_DEPRECATED(internal) extern const mp_digit ltm_prime_tab[PRIVATE_MP_PRIME_TAB_SIZE];
487 639
488 /* result=1 if a is divisible by one of the first PRIME_SIZE primes */ 640 /* result=1 if a is divisible by one of the first PRIME_SIZE primes */
489 int mp_prime_is_divisible(const mp_int *a, int *result); 641 MP_DEPRECATED(mp_prime_is_prime) mp_err mp_prime_is_divisible(const mp_int *a, mp_bool *result) MP_WUR;
490 642
491 /* performs one Fermat test of "a" using base "b". 643 /* performs one Fermat test of "a" using base "b".
492 * Sets result to 0 if composite or 1 if probable prime 644 * Sets result to 0 if composite or 1 if probable prime
493 */ 645 */
494 int mp_prime_fermat(const mp_int *a, const mp_int *b, int *result); 646 mp_err mp_prime_fermat(const mp_int *a, const mp_int *b, mp_bool *result) MP_WUR;
495 647
496 /* performs one Miller-Rabin test of "a" using base "b". 648 /* performs one Miller-Rabin test of "a" using base "b".
497 * Sets result to 0 if composite or 1 if probable prime 649 * Sets result to 0 if composite or 1 if probable prime
498 */ 650 */
499 int mp_prime_miller_rabin(const mp_int *a, const mp_int *b, int *result); 651 mp_err mp_prime_miller_rabin(const mp_int *a, const mp_int *b, mp_bool *result) MP_WUR;
500 652
501 /* This gives [for a given bit size] the number of trials required 653 /* This gives [for a given bit size] the number of trials required
502 * such that Miller-Rabin gives a prob of failure lower than 2^-96 654 * such that Miller-Rabin gives a prob of failure lower than 2^-96
503 */ 655 */
504 int mp_prime_rabin_miller_trials(int size); 656 int mp_prime_rabin_miller_trials(int size) MP_WUR;
505 657
506 /* performs one strong Lucas-Selfridge test of "a". 658 /* performs one strong Lucas-Selfridge test of "a".
507 * Sets result to 0 if composite or 1 if probable prime 659 * Sets result to 0 if composite or 1 if probable prime
508 */ 660 */
509 int mp_prime_strong_lucas_selfridge(const mp_int *a, int *result); 661 mp_err mp_prime_strong_lucas_selfridge(const mp_int *a, mp_bool *result) MP_WUR;
510 662
511 /* performs one Frobenius test of "a" as described by Paul Underwood. 663 /* performs one Frobenius test of "a" as described by Paul Underwood.
512 * Sets result to 0 if composite or 1 if probable prime 664 * Sets result to 0 if composite or 1 if probable prime
513 */ 665 */
514 int mp_prime_frobenius_underwood(const mp_int *N, int *result); 666 mp_err mp_prime_frobenius_underwood(const mp_int *N, mp_bool *result) MP_WUR;
515 667
516 /* performs t random rounds of Miller-Rabin on "a" additional to 668 /* performs t random rounds of Miller-Rabin on "a" additional to
517 * bases 2 and 3. Also performs an initial sieve of trial 669 * bases 2 and 3. Also performs an initial sieve of trial
518 * division. Determines if "a" is prime with probability 670 * division. Determines if "a" is prime with probability
519 * of error no more than (1/4)**t. 671 * of error no more than (1/4)**t.
525 * Is Fips 186.4 compliant if called with t as computed by 677 * Is Fips 186.4 compliant if called with t as computed by
526 * mp_prime_rabin_miller_trials(); 678 * mp_prime_rabin_miller_trials();
527 * 679 *
528 * Sets result to 1 if probably prime, 0 otherwise 680 * Sets result to 1 if probably prime, 0 otherwise
529 */ 681 */
530 int mp_prime_is_prime(const mp_int *a, int t, int *result); 682 mp_err mp_prime_is_prime(const mp_int *a, int t, mp_bool *result) MP_WUR;
531 683
532 /* finds the next prime after the number "a" using "t" trials 684 /* finds the next prime after the number "a" using "t" trials
533 * of Miller-Rabin. 685 * of Miller-Rabin.
534 * 686 *
535 * bbs_style = 1 means the prime must be congruent to 3 mod 4 687 * bbs_style = 1 means the prime must be congruent to 3 mod 4
536 */ 688 */
537 int mp_prime_next_prime(mp_int *a, int t, int bbs_style); 689 mp_err mp_prime_next_prime(mp_int *a, int t, int bbs_style) MP_WUR;
538 690
539 /* makes a truly random prime of a given size (bytes), 691 /* makes a truly random prime of a given size (bytes),
540 * call with bbs = 1 if you want it to be congruent to 3 mod 4 692 * call with bbs = 1 if you want it to be congruent to 3 mod 4
541 * 693 *
542 * You have to supply a callback which fills in a buffer with random bytes. "dat" is a parameter you can 694 * You have to supply a callback which fills in a buffer with random bytes. "dat" is a parameter you can
543 * have passed to the callback (e.g. a state or something). This function doesn't use "dat" itself 695 * have passed to the callback (e.g. a state or something). This function doesn't use "dat" itself
544 * so it can be NULL 696 * so it can be NULL
545 * 697 *
546 * The prime generated will be larger than 2^(8*size). 698 * The prime generated will be larger than 2^(8*size).
547 */ 699 */
548 #define mp_prime_random(a, t, size, bbs, cb, dat) mp_prime_random_ex(a, t, ((size) * 8) + 1, (bbs==1)?LTM_PRIME_BBS:0, cb, dat) 700 #define mp_prime_random(a, t, size, bbs, cb, dat) (MP_DEPRECATED_PRAGMA("mp_prime_random has been deprecated, use mp_prime_rand instead") mp_prime_random_ex(a, t, ((size) * 8) + 1, (bbs==1)?MP_PRIME_BBS:0, cb, dat))
549 701
550 /* makes a truly random prime of a given size (bits), 702 /* makes a truly random prime of a given size (bits),
551 * 703 *
552 * Flags are as follows: 704 * Flags are as follows:
553 * 705 *
554 * LTM_PRIME_BBS - make prime congruent to 3 mod 4 706 * MP_PRIME_BBS - make prime congruent to 3 mod 4
555 * LTM_PRIME_SAFE - make sure (p-1)/2 is prime as well (implies LTM_PRIME_BBS) 707 * MP_PRIME_SAFE - make sure (p-1)/2 is prime as well (implies MP_PRIME_BBS)
556 * LTM_PRIME_2MSB_ON - make the 2nd highest bit one 708 * MP_PRIME_2MSB_ON - make the 2nd highest bit one
557 * 709 *
558 * You have to supply a callback which fills in a buffer with random bytes. "dat" is a parameter you can 710 * You have to supply a callback which fills in a buffer with random bytes. "dat" is a parameter you can
559 * have passed to the callback (e.g. a state or something). This function doesn't use "dat" itself 711 * have passed to the callback (e.g. a state or something). This function doesn't use "dat" itself
560 * so it can be NULL 712 * so it can be NULL
561 * 713 *
562 */ 714 */
563 int mp_prime_random_ex(mp_int *a, int t, int size, int flags, ltm_prime_callback cb, void *dat); 715 MP_DEPRECATED(mp_prime_rand) mp_err mp_prime_random_ex(mp_int *a, int t, int size, int flags,
716 private_mp_prime_callback cb, void *dat) MP_WUR;
717 mp_err mp_prime_rand(mp_int *a, int t, int size, int flags) MP_WUR;
718
719 /* Integer logarithm to integer base */
720 mp_err mp_log_u32(const mp_int *a, uint32_t base, uint32_t *c) MP_WUR;
721
722 /* c = a**b */
723 mp_err mp_expt_u32(const mp_int *a, uint32_t b, mp_int *c) MP_WUR;
724 MP_DEPRECATED(mp_expt_u32) mp_err mp_expt_d(const mp_int *a, mp_digit b, mp_int *c) MP_WUR;
725 MP_DEPRECATED(mp_expt_u32) mp_err mp_expt_d_ex(const mp_int *a, mp_digit b, mp_int *c, int fast) MP_WUR;
564 726
565 /* ---> radix conversion <--- */ 727 /* ---> radix conversion <--- */
566 int mp_count_bits(const mp_int *a); 728 int mp_count_bits(const mp_int *a) MP_WUR;
567 729
568 int mp_unsigned_bin_size(const mp_int *a); 730
569 int mp_read_unsigned_bin(mp_int *a, const unsigned char *b, int c); 731 MP_DEPRECATED(mp_ubin_size) int mp_unsigned_bin_size(const mp_int *a) MP_WUR;
570 int mp_to_unsigned_bin(const mp_int *a, unsigned char *b); 732 MP_DEPRECATED(mp_from_ubin) mp_err mp_read_unsigned_bin(mp_int *a, const unsigned char *b, int c) MP_WUR;
571 int mp_to_unsigned_bin_n(const mp_int *a, unsigned char *b, unsigned long *outlen); 733 MP_DEPRECATED(mp_to_ubin) mp_err mp_to_unsigned_bin(const mp_int *a, unsigned char *b) MP_WUR;
572 734 MP_DEPRECATED(mp_to_ubin) mp_err mp_to_unsigned_bin_n(const mp_int *a, unsigned char *b, unsigned long *outlen) MP_WUR;
573 int mp_signed_bin_size(const mp_int *a); 735
574 int mp_read_signed_bin(mp_int *a, const unsigned char *b, int c); 736 MP_DEPRECATED(mp_sbin_size) int mp_signed_bin_size(const mp_int *a) MP_WUR;
575 int mp_to_signed_bin(const mp_int *a, unsigned char *b); 737 MP_DEPRECATED(mp_from_sbin) mp_err mp_read_signed_bin(mp_int *a, const unsigned char *b, int c) MP_WUR;
576 int mp_to_signed_bin_n(const mp_int *a, unsigned char *b, unsigned long *outlen); 738 MP_DEPRECATED(mp_to_sbin) mp_err mp_to_signed_bin(const mp_int *a, unsigned char *b) MP_WUR;
577 739 MP_DEPRECATED(mp_to_sbin) mp_err mp_to_signed_bin_n(const mp_int *a, unsigned char *b, unsigned long *outlen) MP_WUR;
578 int mp_read_radix(mp_int *a, const char *str, int radix); 740
579 int mp_toradix(const mp_int *a, char *str, int radix); 741 size_t mp_ubin_size(const mp_int *a) MP_WUR;
580 int mp_toradix_n(const mp_int *a, char *str, int radix, int maxlen); 742 mp_err mp_from_ubin(mp_int *a, const unsigned char *buf, size_t size) MP_WUR;
581 int mp_radix_size(const mp_int *a, int radix, int *size); 743 mp_err mp_to_ubin(const mp_int *a, unsigned char *buf, size_t maxlen, size_t *written) MP_WUR;
582 744
583 #ifndef LTM_NO_FILE 745 size_t mp_sbin_size(const mp_int *a) MP_WUR;
584 int mp_fread(mp_int *a, int radix, FILE *stream); 746 mp_err mp_from_sbin(mp_int *a, const unsigned char *buf, size_t size) MP_WUR;
585 int mp_fwrite(const mp_int *a, int radix, FILE *stream); 747 mp_err mp_to_sbin(const mp_int *a, unsigned char *buf, size_t maxlen, size_t *written) MP_WUR;
586 #endif 748
587 749 mp_err mp_read_radix(mp_int *a, const char *str, int radix) MP_WUR;
588 #define mp_read_raw(mp, str, len) mp_read_signed_bin((mp), (str), (len)) 750 MP_DEPRECATED(mp_to_radix) mp_err mp_toradix(const mp_int *a, char *str, int radix) MP_WUR;
589 #define mp_raw_size(mp) mp_signed_bin_size(mp) 751 MP_DEPRECATED(mp_to_radix) mp_err mp_toradix_n(const mp_int *a, char *str, int radix, int maxlen) MP_WUR;
590 #define mp_toraw(mp, str) mp_to_signed_bin((mp), (str)) 752 mp_err mp_to_radix(const mp_int *a, char *str, size_t maxlen, size_t *written, int radix) MP_WUR;
591 #define mp_read_mag(mp, str, len) mp_read_unsigned_bin((mp), (str), (len)) 753 mp_err mp_radix_size(const mp_int *a, int radix, int *size) MP_WUR;
592 #define mp_mag_size(mp) mp_unsigned_bin_size(mp) 754
593 #define mp_tomag(mp, str) mp_to_unsigned_bin((mp), (str)) 755 #ifndef MP_NO_FILE
594 756 mp_err mp_fread(mp_int *a, int radix, FILE *stream) MP_WUR;
595 #define mp_tobinary(M, S) mp_toradix((M), (S), 2) 757 mp_err mp_fwrite(const mp_int *a, int radix, FILE *stream) MP_WUR;
596 #define mp_tooctal(M, S) mp_toradix((M), (S), 8) 758 #endif
597 #define mp_todecimal(M, S) mp_toradix((M), (S), 10) 759
598 #define mp_tohex(M, S) mp_toradix((M), (S), 16) 760 #define mp_read_raw(mp, str, len) (MP_DEPRECATED_PRAGMA("replaced by mp_read_signed_bin") mp_read_signed_bin((mp), (str), (len)))
761 #define mp_raw_size(mp) (MP_DEPRECATED_PRAGMA("replaced by mp_signed_bin_size") mp_signed_bin_size(mp))
762 #define mp_toraw(mp, str) (MP_DEPRECATED_PRAGMA("replaced by mp_to_signed_bin") mp_to_signed_bin((mp), (str)))
763 #define mp_read_mag(mp, str, len) (MP_DEPRECATED_PRAGMA("replaced by mp_read_unsigned_bin") mp_read_unsigned_bin((mp), (str), (len))
764 #define mp_mag_size(mp) (MP_DEPRECATED_PRAGMA("replaced by mp_unsigned_bin_size") mp_unsigned_bin_size(mp))
765 #define mp_tomag(mp, str) (MP_DEPRECATED_PRAGMA("replaced by mp_to_unsigned_bin") mp_to_unsigned_bin((mp), (str)))
766
767 #define mp_tobinary(M, S) (MP_DEPRECATED_PRAGMA("replaced by mp_to_binary") mp_toradix((M), (S), 2))
768 #define mp_tooctal(M, S) (MP_DEPRECATED_PRAGMA("replaced by mp_to_octal") mp_toradix((M), (S), 8))
769 #define mp_todecimal(M, S) (MP_DEPRECATED_PRAGMA("replaced by mp_to_decimal") mp_toradix((M), (S), 10))
770 #define mp_tohex(M, S) (MP_DEPRECATED_PRAGMA("replaced by mp_to_hex") mp_toradix((M), (S), 16))
771
772 #define mp_to_binary(M, S, N) mp_to_radix((M), (S), (N), NULL, 2)
773 #define mp_to_octal(M, S, N) mp_to_radix((M), (S), (N), NULL, 8)
774 #define mp_to_decimal(M, S, N) mp_to_radix((M), (S), (N), NULL, 10)
775 #define mp_to_hex(M, S, N) mp_to_radix((M), (S), (N), NULL, 16)
599 776
600 #ifdef __cplusplus 777 #ifdef __cplusplus
601 } 778 }
602 #endif 779 #endif
603 780
604 #endif 781 #endif
605
606
607 /* ref: HEAD -> master, tag: v1.1.0 */
608 /* git commit: 08549ad6bc8b0cede0b357a9c341c5c6473a9c55 */
609 /* commit time: 2019-01-28 20:32:32 +0100 */