bn_mod.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. /* crypto/bn/bn_mod.c */
  2. /*
  3. * Includes code written by Lenka Fibikova <[email protected]>
  4. * for the OpenSSL project.
  5. */
  6. /* ====================================================================
  7. * Copyright (c) 1998-2018 The OpenSSL Project. All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in
  18. * the documentation and/or other materials provided with the
  19. * distribution.
  20. *
  21. * 3. All advertising materials mentioning features or use of this
  22. * software must display the following acknowledgment:
  23. * "This product includes software developed by the OpenSSL Project
  24. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  25. *
  26. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  27. * endorse or promote products derived from this software without
  28. * prior written permission. For written permission, please contact
  29. * [email protected].
  30. *
  31. * 5. Products derived from this software may not be called "OpenSSL"
  32. * nor may "OpenSSL" appear in their names without prior written
  33. * permission of the OpenSSL Project.
  34. *
  35. * 6. Redistributions of any form whatsoever must retain the following
  36. * acknowledgment:
  37. * "This product includes software developed by the OpenSSL Project
  38. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  41. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  43. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  44. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  45. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  46. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  47. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  49. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  50. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  51. * OF THE POSSIBILITY OF SUCH DAMAGE.
  52. * ====================================================================
  53. *
  54. * This product includes cryptographic software written by Eric Young
  55. * ([email protected]). This product includes software written by Tim
  56. * Hudson ([email protected]).
  57. *
  58. */
  59. /* Copyright (C) 1995-1998 Eric Young ([email protected])
  60. * All rights reserved.
  61. *
  62. * This package is an SSL implementation written
  63. * by Eric Young ([email protected]).
  64. * The implementation was written so as to conform with Netscapes SSL.
  65. *
  66. * This library is free for commercial and non-commercial use as long as
  67. * the following conditions are aheared to. The following conditions
  68. * apply to all code found in this distribution, be it the RC4, RSA,
  69. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  70. * included with this distribution is covered by the same copyright terms
  71. * except that the holder is Tim Hudson ([email protected]).
  72. *
  73. * Copyright remains Eric Young's, and as such any Copyright notices in
  74. * the code are not to be removed.
  75. * If this package is used in a product, Eric Young should be given attribution
  76. * as the author of the parts of the library used.
  77. * This can be in the form of a textual message at program startup or
  78. * in documentation (online or textual) provided with the package.
  79. *
  80. * Redistribution and use in source and binary forms, with or without
  81. * modification, are permitted provided that the following conditions
  82. * are met:
  83. * 1. Redistributions of source code must retain the copyright
  84. * notice, this list of conditions and the following disclaimer.
  85. * 2. Redistributions in binary form must reproduce the above copyright
  86. * notice, this list of conditions and the following disclaimer in the
  87. * documentation and/or other materials provided with the distribution.
  88. * 3. All advertising materials mentioning features or use of this software
  89. * must display the following acknowledgement:
  90. * "This product includes cryptographic software written by
  91. * Eric Young ([email protected])"
  92. * The word 'cryptographic' can be left out if the rouines from the library
  93. * being used are not cryptographic related :-).
  94. * 4. If you include any Windows specific code (or a derivative thereof) from
  95. * the apps directory (application code) you must include an acknowledgement:
  96. * "This product includes software written by Tim Hudson ([email protected])"
  97. *
  98. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  99. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  100. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  101. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  102. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  103. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  104. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  105. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  106. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  107. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  108. * SUCH DAMAGE.
  109. *
  110. * The licence and distribution terms for any publically available version or
  111. * derivative of this code cannot be changed. i.e. this code cannot simply be
  112. * copied and put under another distribution licence
  113. * [including the GNU Public Licence.]
  114. */
  115. #include "cryptlib.h"
  116. #include "bn_lcl.h"
  117. #if 0 /* now just a #define */
  118. int BN_mod(BIGNUM *rem, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx)
  119. {
  120. return (BN_div(NULL, rem, m, d, ctx));
  121. /* note that rem->neg == m->neg (unless the remainder is zero) */
  122. }
  123. #endif
  124. int BN_nnmod(BIGNUM *r, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx)
  125. {
  126. /*
  127. * like BN_mod, but returns non-negative remainder (i.e., 0 <= r < |d|
  128. * always holds)
  129. */
  130. if (!(BN_mod(r, m, d, ctx)))
  131. return 0;
  132. if (!r->neg)
  133. return 1;
  134. /* now -|d| < r < 0, so we have to set r := r + |d| */
  135. return (d->neg ? BN_sub : BN_add) (r, r, d);
  136. }
  137. int BN_mod_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m,
  138. BN_CTX *ctx)
  139. {
  140. if (!BN_add(r, a, b))
  141. return 0;
  142. return BN_nnmod(r, r, m, ctx);
  143. }
  144. /*
  145. * BN_mod_add variant that may be used if both a and b are non-negative and
  146. * less than m. The original algorithm was
  147. *
  148. * if (!BN_uadd(r, a, b))
  149. * return 0;
  150. * if (BN_ucmp(r, m) >= 0)
  151. * return BN_usub(r, r, m);
  152. *
  153. * which is replaced with addition, subtracting modulus, and conditional
  154. * move depending on whether or not subtraction borrowed.
  155. */
  156. int bn_mod_add_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
  157. const BIGNUM *m)
  158. {
  159. size_t i, ai, bi, mtop = m->top;
  160. BN_ULONG storage[1024 / BN_BITS2];
  161. BN_ULONG carry, temp, mask, *rp, *tp = storage;
  162. const BN_ULONG *ap, *bp;
  163. if (bn_wexpand(r, m->top) == NULL)
  164. return 0;
  165. if (mtop > sizeof(storage) / sizeof(storage[0])
  166. && (tp = OPENSSL_malloc(mtop * sizeof(BN_ULONG))) == NULL)
  167. return 0;
  168. ap = a->d != NULL ? a->d : tp;
  169. bp = b->d != NULL ? b->d : tp;
  170. for (i = 0, ai = 0, bi = 0, carry = 0; i < mtop;) {
  171. mask = (BN_ULONG)0 - ((i - a->top) >> (8 * sizeof(i) - 1));
  172. temp = ((ap[ai] & mask) + carry) & BN_MASK2;
  173. carry = (temp < carry);
  174. mask = (BN_ULONG)0 - ((i - b->top) >> (8 * sizeof(i) - 1));
  175. tp[i] = ((bp[bi] & mask) + temp) & BN_MASK2;
  176. carry += (tp[i] < temp);
  177. i++;
  178. ai += (i - a->dmax) >> (8 * sizeof(i) - 1);
  179. bi += (i - b->dmax) >> (8 * sizeof(i) - 1);
  180. }
  181. rp = r->d;
  182. carry -= bn_sub_words(rp, tp, m->d, mtop);
  183. for (i = 0; i < mtop; i++) {
  184. rp[i] = (carry & tp[i]) | (~carry & rp[i]);
  185. ((volatile BN_ULONG *)tp)[i] = 0;
  186. }
  187. r->top = mtop;
  188. r->neg = 0;
  189. if (tp != storage)
  190. OPENSSL_free(tp);
  191. return 1;
  192. }
  193. int BN_mod_add_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
  194. const BIGNUM *m)
  195. {
  196. int ret = bn_mod_add_fixed_top(r, a, b, m);
  197. if (ret)
  198. bn_correct_top(r);
  199. return ret;
  200. }
  201. int BN_mod_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m,
  202. BN_CTX *ctx)
  203. {
  204. if (!BN_sub(r, a, b))
  205. return 0;
  206. return BN_nnmod(r, r, m, ctx);
  207. }
  208. /*
  209. * BN_mod_sub variant that may be used if both a and b are non-negative and
  210. * less than m
  211. */
  212. int BN_mod_sub_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
  213. const BIGNUM *m)
  214. {
  215. if (!BN_sub(r, a, b))
  216. return 0;
  217. if (r->neg)
  218. return BN_add(r, r, m);
  219. return 1;
  220. }
  221. /* slow but works */
  222. int BN_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m,
  223. BN_CTX *ctx)
  224. {
  225. BIGNUM *t;
  226. int ret = 0;
  227. bn_check_top(a);
  228. bn_check_top(b);
  229. bn_check_top(m);
  230. BN_CTX_start(ctx);
  231. if ((t = BN_CTX_get(ctx)) == NULL)
  232. goto err;
  233. if (a == b) {
  234. if (!BN_sqr(t, a, ctx))
  235. goto err;
  236. } else {
  237. if (!BN_mul(t, a, b, ctx))
  238. goto err;
  239. }
  240. if (!BN_nnmod(r, t, m, ctx))
  241. goto err;
  242. bn_check_top(r);
  243. ret = 1;
  244. err:
  245. BN_CTX_end(ctx);
  246. return (ret);
  247. }
  248. int BN_mod_sqr(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx)
  249. {
  250. if (!BN_sqr(r, a, ctx))
  251. return 0;
  252. /* r->neg == 0, thus we don't need BN_nnmod */
  253. return BN_mod(r, r, m, ctx);
  254. }
  255. int BN_mod_lshift1(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx)
  256. {
  257. if (!BN_lshift1(r, a))
  258. return 0;
  259. bn_check_top(r);
  260. return BN_nnmod(r, r, m, ctx);
  261. }
  262. /*
  263. * BN_mod_lshift1 variant that may be used if a is non-negative and less than
  264. * m
  265. */
  266. int BN_mod_lshift1_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *m)
  267. {
  268. if (!BN_lshift1(r, a))
  269. return 0;
  270. bn_check_top(r);
  271. if (BN_cmp(r, m) >= 0)
  272. return BN_sub(r, r, m);
  273. return 1;
  274. }
  275. int BN_mod_lshift(BIGNUM *r, const BIGNUM *a, int n, const BIGNUM *m,
  276. BN_CTX *ctx)
  277. {
  278. BIGNUM *abs_m = NULL;
  279. int ret;
  280. if (!BN_nnmod(r, a, m, ctx))
  281. return 0;
  282. if (m->neg) {
  283. abs_m = BN_dup(m);
  284. if (abs_m == NULL)
  285. return 0;
  286. abs_m->neg = 0;
  287. }
  288. ret = BN_mod_lshift_quick(r, r, n, (abs_m ? abs_m : m));
  289. bn_check_top(r);
  290. if (abs_m)
  291. BN_free(abs_m);
  292. return ret;
  293. }
  294. /*
  295. * BN_mod_lshift variant that may be used if a is non-negative and less than
  296. * m
  297. */
  298. int BN_mod_lshift_quick(BIGNUM *r, const BIGNUM *a, int n, const BIGNUM *m)
  299. {
  300. if (r != a) {
  301. if (BN_copy(r, a) == NULL)
  302. return 0;
  303. }
  304. while (n > 0) {
  305. int max_shift;
  306. /* 0 < r < m */
  307. max_shift = BN_num_bits(m) - BN_num_bits(r);
  308. /* max_shift >= 0 */
  309. if (max_shift < 0) {
  310. BNerr(BN_F_BN_MOD_LSHIFT_QUICK, BN_R_INPUT_NOT_REDUCED);
  311. return 0;
  312. }
  313. if (max_shift > n)
  314. max_shift = n;
  315. if (max_shift) {
  316. if (!BN_lshift(r, r, max_shift))
  317. return 0;
  318. n -= max_shift;
  319. } else {
  320. if (!BN_lshift1(r, r))
  321. return 0;
  322. --n;
  323. }
  324. /* BN_num_bits(r) <= BN_num_bits(m) */
  325. if (BN_cmp(r, m) >= 0) {
  326. if (!BN_sub(r, r, m))
  327. return 0;
  328. }
  329. }
  330. bn_check_top(r);
  331. return 1;
  332. }