bn_rsa_fips186_4.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. /*
  2. * Copyright 2018-2019 The OpenSSL Project Authors. All Rights Reserved.
  3. * Copyright (c) 2018-2019, Oracle and/or its affiliates. All rights reserved.
  4. *
  5. * Licensed under the OpenSSL license (the "License"). You may not use
  6. * this file except in compliance with the License. You can obtain a copy
  7. * in the file LICENSE in the source distribution or at
  8. * https://www.openssl.org/source/license.html
  9. */
  10. /*
  11. * According to NIST SP800-131A "Transitioning the use of cryptographic
  12. * algorithms and key lengths" Generation of 1024 bit RSA keys are no longer
  13. * allowed for signatures (Table 2) or key transport (Table 5). In the code
  14. * below any attempt to generate 1024 bit RSA keys will result in an error (Note
  15. * that digital signature verification can still use deprecated 1024 bit keys).
  16. *
  17. * Also see FIPS1402IG A.14
  18. * FIPS 186-4 relies on the use of the auxiliary primes p1, p2, q1 and q2 that
  19. * must be generated before the module generates the RSA primes p and q.
  20. * Table B.1 in FIPS 186-4 specifies, for RSA modulus lengths of 2048 and
  21. * 3072 bits only, the min/max total length of the auxiliary primes.
  22. * When implementing the RSA signature generation algorithm
  23. * with other approved RSA modulus sizes, the vendor shall use the limitations
  24. * from Table B.1 that apply to the longest RSA modulus shown in Table B.1 of
  25. * FIPS 186-4 whose length does not exceed that of the implementation's RSA
  26. * modulus. In particular, when generating the primes for the 4096-bit RSA
  27. * modulus the limitations stated for the 3072-bit modulus shall apply.
  28. */
  29. #include <stdio.h>
  30. #include <openssl/bn.h>
  31. #include "bn_local.h"
  32. #include "crypto/bn.h"
  33. /*
  34. * FIPS 186-4 Table B.1. "Min length of auxiliary primes p1, p2, q1, q2".
  35. *
  36. * Params:
  37. * nbits The key size in bits.
  38. * Returns:
  39. * The minimum size of the auxiliary primes or 0 if nbits is invalid.
  40. */
  41. static int bn_rsa_fips186_4_aux_prime_min_size(int nbits)
  42. {
  43. if (nbits >= 3072)
  44. return 171;
  45. if (nbits == 2048)
  46. return 141;
  47. return 0;
  48. }
  49. /*
  50. * FIPS 186-4 Table B.1 "Maximum length of len(p1) + len(p2) and
  51. * len(q1) + len(q2) for p,q Probable Primes".
  52. *
  53. * Params:
  54. * nbits The key size in bits.
  55. * Returns:
  56. * The maximum length or 0 if nbits is invalid.
  57. */
  58. static int bn_rsa_fips186_4_aux_prime_max_sum_size_for_prob_primes(int nbits)
  59. {
  60. if (nbits >= 3072)
  61. return 1518;
  62. if (nbits == 2048)
  63. return 1007;
  64. return 0;
  65. }
  66. /*
  67. * Find the first odd integer that is a probable prime.
  68. *
  69. * See section FIPS 186-4 B.3.6 (Steps 4.2/5.2).
  70. *
  71. * Params:
  72. * Xp1 The passed in starting point to find a probably prime.
  73. * p1 The returned probable prime (first odd integer >= Xp1)
  74. * ctx A BN_CTX object.
  75. * cb An optional BIGNUM callback.
  76. * Returns: 1 on success otherwise it returns 0.
  77. */
  78. static int bn_rsa_fips186_4_find_aux_prob_prime(const BIGNUM *Xp1,
  79. BIGNUM *p1, BN_CTX *ctx,
  80. BN_GENCB *cb)
  81. {
  82. int ret = 0;
  83. int i = 0;
  84. if (BN_copy(p1, Xp1) == NULL)
  85. return 0;
  86. /* Find the first odd number >= Xp1 that is probably prime */
  87. for(;;) {
  88. i++;
  89. BN_GENCB_call(cb, 0, i);
  90. /* MR test with trial division */
  91. if (BN_check_prime(p1, ctx, cb))
  92. break;
  93. /* Get next odd number */
  94. if (!BN_add_word(p1, 2))
  95. goto err;
  96. }
  97. BN_GENCB_call(cb, 2, i);
  98. ret = 1;
  99. err:
  100. return ret;
  101. }
  102. /*
  103. * Generate a probable prime (p or q).
  104. *
  105. * See FIPS 186-4 B.3.6 (Steps 4 & 5)
  106. *
  107. * Params:
  108. * p The returned probable prime.
  109. * Xpout An optionally returned random number used during generation of p.
  110. * p1, p2 The returned auxiliary primes. If NULL they are not returned.
  111. * Xp An optional passed in value (that is random number used during
  112. * generation of p).
  113. * Xp1, Xp2 Optional passed in values that are normally generated
  114. * internally. Used to find p1, p2.
  115. * nlen The bit length of the modulus (the key size).
  116. * e The public exponent.
  117. * ctx A BN_CTX object.
  118. * cb An optional BIGNUM callback.
  119. * Returns: 1 on success otherwise it returns 0.
  120. */
  121. int bn_rsa_fips186_4_gen_prob_primes(BIGNUM *p, BIGNUM *Xpout,
  122. BIGNUM *p1, BIGNUM *p2,
  123. const BIGNUM *Xp, const BIGNUM *Xp1,
  124. const BIGNUM *Xp2, int nlen,
  125. const BIGNUM *e, BN_CTX *ctx, BN_GENCB *cb)
  126. {
  127. int ret = 0;
  128. BIGNUM *p1i = NULL, *p2i = NULL, *Xp1i = NULL, *Xp2i = NULL;
  129. int bitlen;
  130. if (p == NULL || Xpout == NULL)
  131. return 0;
  132. BN_CTX_start(ctx);
  133. p1i = (p1 != NULL) ? p1 : BN_CTX_get(ctx);
  134. p2i = (p2 != NULL) ? p2 : BN_CTX_get(ctx);
  135. Xp1i = (Xp1 != NULL) ? (BIGNUM *)Xp1 : BN_CTX_get(ctx);
  136. Xp2i = (Xp2 != NULL) ? (BIGNUM *)Xp2 : BN_CTX_get(ctx);
  137. if (p1i == NULL || p2i == NULL || Xp1i == NULL || Xp2i == NULL)
  138. goto err;
  139. bitlen = bn_rsa_fips186_4_aux_prime_min_size(nlen);
  140. if (bitlen == 0)
  141. goto err;
  142. /* (Steps 4.1/5.1): Randomly generate Xp1 if it is not passed in */
  143. if (Xp1 == NULL) {
  144. /* Set the top and bottom bits to make it odd and the correct size */
  145. if (!BN_priv_rand_ex(Xp1i, bitlen, BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ODD,
  146. ctx))
  147. goto err;
  148. }
  149. /* (Steps 4.1/5.1): Randomly generate Xp2 if it is not passed in */
  150. if (Xp2 == NULL) {
  151. /* Set the top and bottom bits to make it odd and the correct size */
  152. if (!BN_priv_rand_ex(Xp2i, bitlen, BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ODD,
  153. ctx))
  154. goto err;
  155. }
  156. /* (Steps 4.2/5.2) - find first auxiliary probable primes */
  157. if (!bn_rsa_fips186_4_find_aux_prob_prime(Xp1i, p1i, ctx, cb)
  158. || !bn_rsa_fips186_4_find_aux_prob_prime(Xp2i, p2i, ctx, cb))
  159. goto err;
  160. /* (Table B.1) auxiliary prime Max length check */
  161. if ((BN_num_bits(p1i) + BN_num_bits(p2i)) >=
  162. bn_rsa_fips186_4_aux_prime_max_sum_size_for_prob_primes(nlen))
  163. goto err;
  164. /* (Steps 4.3/5.3) - generate prime */
  165. if (!bn_rsa_fips186_4_derive_prime(p, Xpout, Xp, p1i, p2i, nlen, e, ctx, cb))
  166. goto err;
  167. ret = 1;
  168. err:
  169. /* Zeroize any internally generated values that are not returned */
  170. if (p1 == NULL)
  171. BN_clear(p1i);
  172. if (p2 == NULL)
  173. BN_clear(p2i);
  174. if (Xp1 == NULL)
  175. BN_clear(Xp1i);
  176. if (Xp2 == NULL)
  177. BN_clear(Xp2i);
  178. BN_CTX_end(ctx);
  179. return ret;
  180. }
  181. /*
  182. * Constructs a probable prime (a candidate for p or q) using 2 auxiliary
  183. * prime numbers and the Chinese Remainder Theorem.
  184. *
  185. * See FIPS 186-4 C.9 "Compute a Probable Prime Factor Based on Auxiliary
  186. * Primes". Used by FIPS 186-4 B.3.6 Section (4.3) for p and Section (5.3) for q.
  187. *
  188. * Params:
  189. * Y The returned prime factor (private_prime_factor) of the modulus n.
  190. * X The returned random number used during generation of the prime factor.
  191. * Xin An optional passed in value for X used for testing purposes.
  192. * r1 An auxiliary prime.
  193. * r2 An auxiliary prime.
  194. * nlen The desired length of n (the RSA modulus).
  195. * e The public exponent.
  196. * ctx A BN_CTX object.
  197. * cb An optional BIGNUM callback object.
  198. * Returns: 1 on success otherwise it returns 0.
  199. * Assumptions:
  200. * Y, X, r1, r2, e are not NULL.
  201. */
  202. int bn_rsa_fips186_4_derive_prime(BIGNUM *Y, BIGNUM *X, const BIGNUM *Xin,
  203. const BIGNUM *r1, const BIGNUM *r2, int nlen,
  204. const BIGNUM *e, BN_CTX *ctx, BN_GENCB *cb)
  205. {
  206. int ret = 0;
  207. int i, imax;
  208. int bits = nlen >> 1;
  209. BIGNUM *tmp, *R, *r1r2x2, *y1, *r1x2;
  210. BN_CTX_start(ctx);
  211. R = BN_CTX_get(ctx);
  212. tmp = BN_CTX_get(ctx);
  213. r1r2x2 = BN_CTX_get(ctx);
  214. y1 = BN_CTX_get(ctx);
  215. r1x2 = BN_CTX_get(ctx);
  216. if (r1x2 == NULL)
  217. goto err;
  218. if (Xin != NULL && BN_copy(X, Xin) == NULL)
  219. goto err;
  220. if (!(BN_lshift1(r1x2, r1)
  221. /* (Step 1) GCD(2r1, r2) = 1 */
  222. && BN_gcd(tmp, r1x2, r2, ctx)
  223. && BN_is_one(tmp)
  224. /* (Step 2) R = ((r2^-1 mod 2r1) * r2) - ((2r1^-1 mod r2)*2r1) */
  225. && BN_mod_inverse(R, r2, r1x2, ctx)
  226. && BN_mul(R, R, r2, ctx) /* R = (r2^-1 mod 2r1) * r2 */
  227. && BN_mod_inverse(tmp, r1x2, r2, ctx)
  228. && BN_mul(tmp, tmp, r1x2, ctx) /* tmp = (2r1^-1 mod r2)*2r1 */
  229. && BN_sub(R, R, tmp)
  230. /* Calculate 2r1r2 */
  231. && BN_mul(r1r2x2, r1x2, r2, ctx)))
  232. goto err;
  233. /* Make positive by adding the modulus */
  234. if (BN_is_negative(R) && !BN_add(R, R, r1r2x2))
  235. goto err;
  236. imax = 5 * bits; /* max = 5/2 * nbits */
  237. for (;;) {
  238. if (Xin == NULL) {
  239. /*
  240. * (Step 3) Choose Random X such that
  241. * sqrt(2) * 2^(nlen/2-1) < Random X < (2^(nlen/2)) - 1.
  242. *
  243. * For the lower bound:
  244. * sqrt(2) * 2^(nlen/2 - 1) == sqrt(2)/2 * 2^(nlen/2)
  245. * where sqrt(2)/2 = 0.70710678.. = 0.B504FC33F9DE...
  246. * so largest number will have B5... as the top byte
  247. * Setting the top 2 bits gives 0xC0.
  248. */
  249. if (!BN_priv_rand_ex(X, bits, BN_RAND_TOP_TWO, BN_RAND_BOTTOM_ANY,
  250. ctx))
  251. goto end;
  252. }
  253. /* (Step 4) Y = X + ((R - X) mod 2r1r2) */
  254. if (!BN_mod_sub(Y, R, X, r1r2x2, ctx) || !BN_add(Y, Y, X))
  255. goto err;
  256. /* (Step 5) */
  257. i = 0;
  258. for (;;) {
  259. /* (Step 6) */
  260. if (BN_num_bits(Y) > bits) {
  261. if (Xin == NULL)
  262. break; /* Randomly Generated X so Go back to Step 3 */
  263. else
  264. goto err; /* X is not random so it will always fail */
  265. }
  266. BN_GENCB_call(cb, 0, 2);
  267. /* (Step 7) If GCD(Y-1) == 1 & Y is probably prime then return Y */
  268. if (BN_copy(y1, Y) == NULL
  269. || !BN_sub_word(y1, 1)
  270. || !BN_gcd(tmp, y1, e, ctx))
  271. goto err;
  272. if (BN_is_one(tmp) && BN_check_prime(Y, ctx, cb))
  273. goto end;
  274. /* (Step 8-10) */
  275. if (++i >= imax || !BN_add(Y, Y, r1r2x2))
  276. goto err;
  277. }
  278. }
  279. end:
  280. ret = 1;
  281. BN_GENCB_call(cb, 3, 0);
  282. err:
  283. BN_clear(y1);
  284. BN_CTX_end(ctx);
  285. return ret;
  286. }