2
0

rsa_x931g.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. /* crypto/rsa/rsa_gen.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. #include <stdio.h>
  59. #include <string.h>
  60. #include <time.h>
  61. #include <openssl/err.h>
  62. #include <openssl/bn.h>
  63. #include <openssl/rsa.h>
  64. /* X9.31 RSA key derivation and generation */
  65. int RSA_X931_derive_ex(RSA *rsa, BIGNUM *p1, BIGNUM *p2, BIGNUM *q1,
  66. BIGNUM *q2, const BIGNUM *Xp1, const BIGNUM *Xp2,
  67. const BIGNUM *Xp, const BIGNUM *Xq1, const BIGNUM *Xq2,
  68. const BIGNUM *Xq, const BIGNUM *e, BN_GENCB *cb)
  69. {
  70. BIGNUM *r0 = NULL, *r1 = NULL, *r2 = NULL, *r3 = NULL;
  71. BN_CTX *ctx = NULL, *ctx2 = NULL;
  72. int ret = 0;
  73. if (!rsa)
  74. goto err;
  75. ctx = BN_CTX_new();
  76. if (ctx == NULL)
  77. goto err;
  78. BN_CTX_start(ctx);
  79. r0 = BN_CTX_get(ctx);
  80. r1 = BN_CTX_get(ctx);
  81. r2 = BN_CTX_get(ctx);
  82. r3 = BN_CTX_get(ctx);
  83. if (r3 == NULL)
  84. goto err;
  85. if (!rsa->e) {
  86. rsa->e = BN_dup(e);
  87. if (!rsa->e)
  88. goto err;
  89. } else
  90. e = rsa->e;
  91. /*
  92. * If not all parameters present only calculate what we can. This allows
  93. * test programs to output selective parameters.
  94. */
  95. if (Xp && rsa->p == NULL) {
  96. rsa->p = BN_new();
  97. if (rsa->p == NULL)
  98. goto err;
  99. if (!BN_X931_derive_prime_ex(rsa->p, p1, p2,
  100. Xp, Xp1, Xp2, e, ctx, cb))
  101. goto err;
  102. }
  103. if (Xq && rsa->q == NULL) {
  104. rsa->q = BN_new();
  105. if (rsa->q == NULL)
  106. goto err;
  107. if (!BN_X931_derive_prime_ex(rsa->q, q1, q2,
  108. Xq, Xq1, Xq2, e, ctx, cb))
  109. goto err;
  110. }
  111. if (rsa->p == NULL || rsa->q == NULL) {
  112. BN_CTX_end(ctx);
  113. BN_CTX_free(ctx);
  114. return 2;
  115. }
  116. /*
  117. * Since both primes are set we can now calculate all remaining
  118. * components.
  119. */
  120. /* calculate n */
  121. rsa->n = BN_new();
  122. if (rsa->n == NULL)
  123. goto err;
  124. if (!BN_mul(rsa->n, rsa->p, rsa->q, ctx))
  125. goto err;
  126. /* calculate d */
  127. if (!BN_sub(r1, rsa->p, BN_value_one()))
  128. goto err; /* p-1 */
  129. if (!BN_sub(r2, rsa->q, BN_value_one()))
  130. goto err; /* q-1 */
  131. if (!BN_mul(r0, r1, r2, ctx))
  132. goto err; /* (p-1)(q-1) */
  133. if (!BN_gcd(r3, r1, r2, ctx))
  134. goto err;
  135. if (!BN_div(r0, NULL, r0, r3, ctx))
  136. goto err; /* LCM((p-1)(q-1)) */
  137. ctx2 = BN_CTX_new();
  138. if (ctx2 == NULL)
  139. goto err;
  140. rsa->d = BN_mod_inverse(NULL, rsa->e, r0, ctx2); /* d */
  141. if (rsa->d == NULL)
  142. goto err;
  143. /* calculate d mod (p-1) */
  144. rsa->dmp1 = BN_new();
  145. if (rsa->dmp1 == NULL)
  146. goto err;
  147. if (!BN_mod(rsa->dmp1, rsa->d, r1, ctx))
  148. goto err;
  149. /* calculate d mod (q-1) */
  150. rsa->dmq1 = BN_new();
  151. if (rsa->dmq1 == NULL)
  152. goto err;
  153. if (!BN_mod(rsa->dmq1, rsa->d, r2, ctx))
  154. goto err;
  155. /* calculate inverse of q mod p */
  156. rsa->iqmp = BN_mod_inverse(NULL, rsa->q, rsa->p, ctx2);
  157. ret = 1;
  158. err:
  159. if (ctx)
  160. BN_CTX_end(ctx);
  161. BN_CTX_free(ctx);
  162. BN_CTX_free(ctx2);
  163. return ret;
  164. }
  165. int RSA_X931_generate_key_ex(RSA *rsa, int bits, const BIGNUM *e,
  166. BN_GENCB *cb)
  167. {
  168. int ok = 0;
  169. BIGNUM *Xp = NULL, *Xq = NULL;
  170. BN_CTX *ctx = NULL;
  171. ctx = BN_CTX_new();
  172. if (ctx == NULL)
  173. goto error;
  174. BN_CTX_start(ctx);
  175. Xp = BN_CTX_get(ctx);
  176. Xq = BN_CTX_get(ctx);
  177. if (!BN_X931_generate_Xpq(Xp, Xq, bits, ctx))
  178. goto error;
  179. rsa->p = BN_new();
  180. rsa->q = BN_new();
  181. if (rsa->p == NULL || rsa->q == NULL)
  182. goto error;
  183. /* Generate two primes from Xp, Xq */
  184. if (!BN_X931_generate_prime_ex(rsa->p, NULL, NULL, NULL, NULL, Xp,
  185. e, ctx, cb))
  186. goto error;
  187. if (!BN_X931_generate_prime_ex(rsa->q, NULL, NULL, NULL, NULL, Xq,
  188. e, ctx, cb))
  189. goto error;
  190. /*
  191. * Since rsa->p and rsa->q are valid this call will just derive remaining
  192. * RSA components.
  193. */
  194. if (!RSA_X931_derive_ex(rsa, NULL, NULL, NULL, NULL,
  195. NULL, NULL, NULL, NULL, NULL, NULL, e, cb))
  196. goto error;
  197. ok = 1;
  198. error:
  199. if (ctx)
  200. BN_CTX_end(ctx);
  201. BN_CTX_free(ctx);
  202. if (ok)
  203. return 1;
  204. return 0;
  205. }