bn_prime.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  1. /* crypto/bn/bn_prime.c */
  2. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  3. * All rights reserved.
  4. *
  5. * This package is an SSL implementation written
  6. * by Eric Young (eay@cryptsoft.com).
  7. * The implementation was written so as to conform with Netscapes SSL.
  8. *
  9. * This library is free for commercial and non-commercial use as long as
  10. * the following conditions are aheared to. The following conditions
  11. * apply to all code found in this distribution, be it the RC4, RSA,
  12. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  13. * included with this distribution is covered by the same copyright terms
  14. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  15. *
  16. * Copyright remains Eric Young's, and as such any Copyright notices in
  17. * the code are not to be removed.
  18. * If this package is used in a product, Eric Young should be given attribution
  19. * as the author of the parts of the library used.
  20. * This can be in the form of a textual message at program startup or
  21. * in documentation (online or textual) provided with the package.
  22. *
  23. * Redistribution and use in source and binary forms, with or without
  24. * modification, are permitted provided that the following conditions
  25. * are met:
  26. * 1. Redistributions of source code must retain the copyright
  27. * notice, this list of conditions and the following disclaimer.
  28. * 2. Redistributions in binary form must reproduce the above copyright
  29. * notice, this list of conditions and the following disclaimer in the
  30. * documentation and/or other materials provided with the distribution.
  31. * 3. All advertising materials mentioning features or use of this software
  32. * must display the following acknowledgement:
  33. * "This product includes cryptographic software written by
  34. * Eric Young (eay@cryptsoft.com)"
  35. * The word 'cryptographic' can be left out if the rouines from the library
  36. * being used are not cryptographic related :-).
  37. * 4. If you include any Windows specific code (or a derivative thereof) from
  38. * the apps directory (application code) you must include an acknowledgement:
  39. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  40. *
  41. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  42. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  43. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  44. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  45. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  46. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  47. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  49. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  50. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  51. * SUCH DAMAGE.
  52. *
  53. * The licence and distribution terms for any publically available version or
  54. * derivative of this code cannot be changed. i.e. this code cannot simply be
  55. * copied and put under another distribution licence
  56. * [including the GNU Public Licence.]
  57. */
  58. /* ====================================================================
  59. * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved.
  60. *
  61. * Redistribution and use in source and binary forms, with or without
  62. * modification, are permitted provided that the following conditions
  63. * are met:
  64. *
  65. * 1. Redistributions of source code must retain the above copyright
  66. * notice, this list of conditions and the following disclaimer.
  67. *
  68. * 2. Redistributions in binary form must reproduce the above copyright
  69. * notice, this list of conditions and the following disclaimer in
  70. * the documentation and/or other materials provided with the
  71. * distribution.
  72. *
  73. * 3. All advertising materials mentioning features or use of this
  74. * software must display the following acknowledgment:
  75. * "This product includes software developed by the OpenSSL Project
  76. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  77. *
  78. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  79. * endorse or promote products derived from this software without
  80. * prior written permission. For written permission, please contact
  81. * openssl-core@openssl.org.
  82. *
  83. * 5. Products derived from this software may not be called "OpenSSL"
  84. * nor may "OpenSSL" appear in their names without prior written
  85. * permission of the OpenSSL Project.
  86. *
  87. * 6. Redistributions of any form whatsoever must retain the following
  88. * acknowledgment:
  89. * "This product includes software developed by the OpenSSL Project
  90. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  91. *
  92. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  93. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  94. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  95. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  96. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  97. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  98. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  99. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  100. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  101. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  102. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  103. * OF THE POSSIBILITY OF SUCH DAMAGE.
  104. * ====================================================================
  105. *
  106. * This product includes cryptographic software written by Eric Young
  107. * (eay@cryptsoft.com). This product includes software written by Tim
  108. * Hudson (tjh@cryptsoft.com).
  109. *
  110. */
  111. #include <stdio.h>
  112. #include <time.h>
  113. #include "cryptlib.h"
  114. #include "bn_lcl.h"
  115. #include <openssl/rand.h>
  116. /*
  117. * NB: these functions have been "upgraded", the deprecated versions (which
  118. * are compatibility wrappers using these functions) are in bn_depr.c. -
  119. * Geoff
  120. */
  121. /*
  122. * The quick sieve algorithm approach to weeding out primes is Philip
  123. * Zimmermann's, as implemented in PGP. I have had a read of his comments
  124. * and implemented my own version.
  125. */
  126. #include "bn_prime.h"
  127. static int witness(BIGNUM *w, const BIGNUM *a, const BIGNUM *a1,
  128. const BIGNUM *a1_odd, int k, BN_CTX *ctx,
  129. BN_MONT_CTX *mont);
  130. static int probable_prime(BIGNUM *rnd, int bits);
  131. static int probable_prime_dh(BIGNUM *rnd, int bits,
  132. const BIGNUM *add, const BIGNUM *rem,
  133. BN_CTX *ctx);
  134. static int probable_prime_dh_safe(BIGNUM *rnd, int bits, const BIGNUM *add,
  135. const BIGNUM *rem, BN_CTX *ctx);
  136. int BN_GENCB_call(BN_GENCB *cb, int a, int b)
  137. {
  138. /* No callback means continue */
  139. if (!cb)
  140. return 1;
  141. switch (cb->ver) {
  142. case 1:
  143. /* Deprecated-style callbacks */
  144. if (!cb->cb.cb_1)
  145. return 1;
  146. cb->cb.cb_1(a, b, cb->arg);
  147. return 1;
  148. case 2:
  149. /* New-style callbacks */
  150. return cb->cb.cb_2(a, b, cb);
  151. default:
  152. break;
  153. }
  154. /* Unrecognised callback type */
  155. return 0;
  156. }
  157. int BN_generate_prime_ex(BIGNUM *ret, int bits, int safe,
  158. const BIGNUM *add, const BIGNUM *rem, BN_GENCB *cb)
  159. {
  160. BIGNUM *t;
  161. int found = 0;
  162. int i, j, c1 = 0;
  163. BN_CTX *ctx;
  164. int checks = BN_prime_checks_for_size(bits);
  165. ctx = BN_CTX_new();
  166. if (ctx == NULL)
  167. goto err;
  168. BN_CTX_start(ctx);
  169. t = BN_CTX_get(ctx);
  170. if (!t)
  171. goto err;
  172. loop:
  173. /* make a random number and set the top and bottom bits */
  174. if (add == NULL) {
  175. if (!probable_prime(ret, bits))
  176. goto err;
  177. } else {
  178. if (safe) {
  179. if (!probable_prime_dh_safe(ret, bits, add, rem, ctx))
  180. goto err;
  181. } else {
  182. if (!probable_prime_dh(ret, bits, add, rem, ctx))
  183. goto err;
  184. }
  185. }
  186. /* if (BN_mod_word(ret,(BN_ULONG)3) == 1) goto loop; */
  187. if (!BN_GENCB_call(cb, 0, c1++))
  188. /* aborted */
  189. goto err;
  190. if (!safe) {
  191. i = BN_is_prime_fasttest_ex(ret, checks, ctx, 0, cb);
  192. if (i == -1)
  193. goto err;
  194. if (i == 0)
  195. goto loop;
  196. } else {
  197. /*
  198. * for "safe prime" generation, check that (p-1)/2 is prime. Since a
  199. * prime is odd, We just need to divide by 2
  200. */
  201. if (!BN_rshift1(t, ret))
  202. goto err;
  203. for (i = 0; i < checks; i++) {
  204. j = BN_is_prime_fasttest_ex(ret, 1, ctx, 0, cb);
  205. if (j == -1)
  206. goto err;
  207. if (j == 0)
  208. goto loop;
  209. j = BN_is_prime_fasttest_ex(t, 1, ctx, 0, cb);
  210. if (j == -1)
  211. goto err;
  212. if (j == 0)
  213. goto loop;
  214. if (!BN_GENCB_call(cb, 2, c1 - 1))
  215. goto err;
  216. /* We have a safe prime test pass */
  217. }
  218. }
  219. /* we have a prime :-) */
  220. found = 1;
  221. err:
  222. if (ctx != NULL) {
  223. BN_CTX_end(ctx);
  224. BN_CTX_free(ctx);
  225. }
  226. bn_check_top(ret);
  227. return found;
  228. }
  229. int BN_is_prime_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed,
  230. BN_GENCB *cb)
  231. {
  232. return BN_is_prime_fasttest_ex(a, checks, ctx_passed, 0, cb);
  233. }
  234. int BN_is_prime_fasttest_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed,
  235. int do_trial_division, BN_GENCB *cb)
  236. {
  237. int i, j, ret = -1;
  238. int k;
  239. BN_CTX *ctx = NULL;
  240. BIGNUM *A1, *A1_odd, *check; /* taken from ctx */
  241. BN_MONT_CTX *mont = NULL;
  242. const BIGNUM *A = NULL;
  243. if (BN_cmp(a, BN_value_one()) <= 0)
  244. return 0;
  245. if (checks == BN_prime_checks)
  246. checks = BN_prime_checks_for_size(BN_num_bits(a));
  247. /* first look for small factors */
  248. if (!BN_is_odd(a))
  249. /* a is even => a is prime if and only if a == 2 */
  250. return BN_is_word(a, 2);
  251. if (do_trial_division) {
  252. for (i = 1; i < NUMPRIMES; i++)
  253. if (BN_mod_word(a, primes[i]) == 0)
  254. return 0;
  255. if (!BN_GENCB_call(cb, 1, -1))
  256. goto err;
  257. }
  258. if (ctx_passed != NULL)
  259. ctx = ctx_passed;
  260. else if ((ctx = BN_CTX_new()) == NULL)
  261. goto err;
  262. BN_CTX_start(ctx);
  263. /* A := abs(a) */
  264. if (a->neg) {
  265. BIGNUM *t;
  266. if ((t = BN_CTX_get(ctx)) == NULL)
  267. goto err;
  268. BN_copy(t, a);
  269. t->neg = 0;
  270. A = t;
  271. } else
  272. A = a;
  273. A1 = BN_CTX_get(ctx);
  274. A1_odd = BN_CTX_get(ctx);
  275. check = BN_CTX_get(ctx);
  276. if (check == NULL)
  277. goto err;
  278. /* compute A1 := A - 1 */
  279. if (!BN_copy(A1, A))
  280. goto err;
  281. if (!BN_sub_word(A1, 1))
  282. goto err;
  283. if (BN_is_zero(A1)) {
  284. ret = 0;
  285. goto err;
  286. }
  287. /* write A1 as A1_odd * 2^k */
  288. k = 1;
  289. while (!BN_is_bit_set(A1, k))
  290. k++;
  291. if (!BN_rshift(A1_odd, A1, k))
  292. goto err;
  293. /* Montgomery setup for computations mod A */
  294. mont = BN_MONT_CTX_new();
  295. if (mont == NULL)
  296. goto err;
  297. if (!BN_MONT_CTX_set(mont, A, ctx))
  298. goto err;
  299. for (i = 0; i < checks; i++) {
  300. if (!BN_pseudo_rand_range(check, A1))
  301. goto err;
  302. if (!BN_add_word(check, 1))
  303. goto err;
  304. /* now 1 <= check < A */
  305. j = witness(check, A, A1, A1_odd, k, ctx, mont);
  306. if (j == -1)
  307. goto err;
  308. if (j) {
  309. ret = 0;
  310. goto err;
  311. }
  312. if (!BN_GENCB_call(cb, 1, i))
  313. goto err;
  314. }
  315. ret = 1;
  316. err:
  317. if (ctx != NULL) {
  318. BN_CTX_end(ctx);
  319. if (ctx_passed == NULL)
  320. BN_CTX_free(ctx);
  321. }
  322. if (mont != NULL)
  323. BN_MONT_CTX_free(mont);
  324. return (ret);
  325. }
  326. static int witness(BIGNUM *w, const BIGNUM *a, const BIGNUM *a1,
  327. const BIGNUM *a1_odd, int k, BN_CTX *ctx,
  328. BN_MONT_CTX *mont)
  329. {
  330. if (!BN_mod_exp_mont(w, w, a1_odd, a, ctx, mont)) /* w := w^a1_odd mod a */
  331. return -1;
  332. if (BN_is_one(w))
  333. return 0; /* probably prime */
  334. if (BN_cmp(w, a1) == 0)
  335. return 0; /* w == -1 (mod a), 'a' is probably prime */
  336. while (--k) {
  337. if (!BN_mod_mul(w, w, w, a, ctx)) /* w := w^2 mod a */
  338. return -1;
  339. if (BN_is_one(w))
  340. return 1; /* 'a' is composite, otherwise a previous 'w'
  341. * would have been == -1 (mod 'a') */
  342. if (BN_cmp(w, a1) == 0)
  343. return 0; /* w == -1 (mod a), 'a' is probably prime */
  344. }
  345. /*
  346. * If we get here, 'w' is the (a-1)/2-th power of the original 'w', and
  347. * it is neither -1 nor +1 -- so 'a' cannot be prime
  348. */
  349. bn_check_top(w);
  350. return 1;
  351. }
  352. static int probable_prime(BIGNUM *rnd, int bits)
  353. {
  354. int i;
  355. prime_t mods[NUMPRIMES];
  356. BN_ULONG delta, maxdelta;
  357. again:
  358. if (!BN_rand(rnd, bits, 1, 1))
  359. return (0);
  360. /* we now have a random number 'rand' to test. */
  361. for (i = 1; i < NUMPRIMES; i++)
  362. mods[i] = (prime_t) BN_mod_word(rnd, (BN_ULONG)primes[i]);
  363. maxdelta = BN_MASK2 - primes[NUMPRIMES - 1];
  364. delta = 0;
  365. loop:for (i = 1; i < NUMPRIMES; i++) {
  366. /*
  367. * check that rnd is not a prime and also that gcd(rnd-1,primes) == 1
  368. * (except for 2)
  369. */
  370. if (((mods[i] + delta) % primes[i]) <= 1) {
  371. delta += 2;
  372. if (delta > maxdelta)
  373. goto again;
  374. goto loop;
  375. }
  376. }
  377. if (!BN_add_word(rnd, delta))
  378. return (0);
  379. bn_check_top(rnd);
  380. return (1);
  381. }
  382. static int probable_prime_dh(BIGNUM *rnd, int bits,
  383. const BIGNUM *add, const BIGNUM *rem,
  384. BN_CTX *ctx)
  385. {
  386. int i, ret = 0;
  387. BIGNUM *t1;
  388. BN_CTX_start(ctx);
  389. if ((t1 = BN_CTX_get(ctx)) == NULL)
  390. goto err;
  391. if (!BN_rand(rnd, bits, 0, 1))
  392. goto err;
  393. /* we need ((rnd-rem) % add) == 0 */
  394. if (!BN_mod(t1, rnd, add, ctx))
  395. goto err;
  396. if (!BN_sub(rnd, rnd, t1))
  397. goto err;
  398. if (rem == NULL) {
  399. if (!BN_add_word(rnd, 1))
  400. goto err;
  401. } else {
  402. if (!BN_add(rnd, rnd, rem))
  403. goto err;
  404. }
  405. /* we now have a random number 'rand' to test. */
  406. loop:for (i = 1; i < NUMPRIMES; i++) {
  407. /* check that rnd is a prime */
  408. if (BN_mod_word(rnd, (BN_ULONG)primes[i]) <= 1) {
  409. if (!BN_add(rnd, rnd, add))
  410. goto err;
  411. goto loop;
  412. }
  413. }
  414. ret = 1;
  415. err:
  416. BN_CTX_end(ctx);
  417. bn_check_top(rnd);
  418. return (ret);
  419. }
  420. static int probable_prime_dh_safe(BIGNUM *p, int bits, const BIGNUM *padd,
  421. const BIGNUM *rem, BN_CTX *ctx)
  422. {
  423. int i, ret = 0;
  424. BIGNUM *t1, *qadd, *q;
  425. bits--;
  426. BN_CTX_start(ctx);
  427. t1 = BN_CTX_get(ctx);
  428. q = BN_CTX_get(ctx);
  429. qadd = BN_CTX_get(ctx);
  430. if (qadd == NULL)
  431. goto err;
  432. if (!BN_rshift1(qadd, padd))
  433. goto err;
  434. if (!BN_rand(q, bits, 0, 1))
  435. goto err;
  436. /* we need ((rnd-rem) % add) == 0 */
  437. if (!BN_mod(t1, q, qadd, ctx))
  438. goto err;
  439. if (!BN_sub(q, q, t1))
  440. goto err;
  441. if (rem == NULL) {
  442. if (!BN_add_word(q, 1))
  443. goto err;
  444. } else {
  445. if (!BN_rshift1(t1, rem))
  446. goto err;
  447. if (!BN_add(q, q, t1))
  448. goto err;
  449. }
  450. /* we now have a random number 'rand' to test. */
  451. if (!BN_lshift1(p, q))
  452. goto err;
  453. if (!BN_add_word(p, 1))
  454. goto err;
  455. loop:for (i = 1; i < NUMPRIMES; i++) {
  456. /* check that p and q are prime */
  457. /*
  458. * check that for p and q gcd(p-1,primes) == 1 (except for 2)
  459. */
  460. if ((BN_mod_word(p, (BN_ULONG)primes[i]) == 0) ||
  461. (BN_mod_word(q, (BN_ULONG)primes[i]) == 0)) {
  462. if (!BN_add(p, p, padd))
  463. goto err;
  464. if (!BN_add(q, q, qadd))
  465. goto err;
  466. goto loop;
  467. }
  468. }
  469. ret = 1;
  470. err:
  471. BN_CTX_end(ctx);
  472. bn_check_top(p);
  473. return (ret);
  474. }