You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

blinding.c 9.7 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. /* ====================================================================
  2. * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. *
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in
  13. * the documentation and/or other materials provided with the
  14. * distribution.
  15. *
  16. * 3. All advertising materials mentioning features or use of this
  17. * software must display the following acknowledgment:
  18. * "This product includes software developed by the OpenSSL Project
  19. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  20. *
  21. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  22. * endorse or promote products derived from this software without
  23. * prior written permission. For written permission, please contact
  24. * openssl-core@openssl.org.
  25. *
  26. * 5. Products derived from this software may not be called "OpenSSL"
  27. * nor may "OpenSSL" appear in their names without prior written
  28. * permission of the OpenSSL Project.
  29. *
  30. * 6. Redistributions of any form whatsoever must retain the following
  31. * acknowledgment:
  32. * "This product includes software developed by the OpenSSL Project
  33. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  34. *
  35. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  36. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  37. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  38. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  39. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  41. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  42. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  43. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  44. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  45. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  46. * OF THE POSSIBILITY OF SUCH DAMAGE.
  47. * ====================================================================
  48. *
  49. * This product includes cryptographic software written by Eric Young
  50. * (eay@cryptsoft.com). This product includes software written by Tim
  51. * Hudson (tjh@cryptsoft.com).
  52. *
  53. * Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  54. * All rights reserved.
  55. *
  56. * This package is an SSL implementation written
  57. * by Eric Young (eay@cryptsoft.com).
  58. * The implementation was written so as to conform with Netscapes SSL.
  59. *
  60. * This library is free for commercial and non-commercial use as long as
  61. * the following conditions are aheared to. The following conditions
  62. * apply to all code found in this distribution, be it the RC4, RSA,
  63. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  64. * included with this distribution is covered by the same copyright terms
  65. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  66. *
  67. * Copyright remains Eric Young's, and as such any Copyright notices in
  68. * the code are not to be removed.
  69. * If this package is used in a product, Eric Young should be given attribution
  70. * as the author of the parts of the library used.
  71. * This can be in the form of a textual message at program startup or
  72. * in documentation (online or textual) provided with the package.
  73. *
  74. * Redistribution and use in source and binary forms, with or without
  75. * modification, are permitted provided that the following conditions
  76. * are met:
  77. * 1. Redistributions of source code must retain the copyright
  78. * notice, this list of conditions and the following disclaimer.
  79. * 2. Redistributions in binary form must reproduce the above copyright
  80. * notice, this list of conditions and the following disclaimer in the
  81. * documentation and/or other materials provided with the distribution.
  82. * 3. All advertising materials mentioning features or use of this software
  83. * must display the following acknowledgement:
  84. * "This product includes cryptographic software written by
  85. * Eric Young (eay@cryptsoft.com)"
  86. * The word 'cryptographic' can be left out if the rouines from the library
  87. * being used are not cryptographic related :-).
  88. * 4. If you include any Windows specific code (or a derivative thereof) from
  89. * the apps directory (application code) you must include an acknowledgement:
  90. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  91. *
  92. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  93. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  94. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  95. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  96. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  97. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  98. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  99. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  100. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  101. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  102. * SUCH DAMAGE.
  103. *
  104. * The licence and distribution terms for any publically available version or
  105. * derivative of this code cannot be changed. i.e. this code cannot simply be
  106. * copied and put under another distribution licence
  107. * [including the GNU Public Licence.] */
  108. #include <openssl/rsa.h>
  109. #include <string.h>
  110. #include <openssl/bn.h>
  111. #include <openssl/mem.h>
  112. #include <openssl/err.h>
  113. #include "internal.h"
  114. #define BN_BLINDING_COUNTER 32
  115. struct bn_blinding_st {
  116. BIGNUM *A; /* The base blinding factor, Montgomery-encoded. */
  117. BIGNUM *Ai; /* The inverse of the blinding factor, Montgomery-encoded. */
  118. unsigned counter;
  119. };
  120. static int bn_blinding_create_param(BN_BLINDING *b, const BIGNUM *e,
  121. const BN_MONT_CTX *mont, BN_CTX *ctx);
  122. BN_BLINDING *BN_BLINDING_new(void) {
  123. BN_BLINDING *ret = OPENSSL_malloc(sizeof(BN_BLINDING));
  124. if (ret == NULL) {
  125. OPENSSL_PUT_ERROR(RSA, ERR_R_MALLOC_FAILURE);
  126. return NULL;
  127. }
  128. memset(ret, 0, sizeof(BN_BLINDING));
  129. ret->A = BN_new();
  130. if (ret->A == NULL) {
  131. goto err;
  132. }
  133. ret->Ai = BN_new();
  134. if (ret->Ai == NULL) {
  135. goto err;
  136. }
  137. /* The blinding values need to be created before this blinding can be used. */
  138. ret->counter = BN_BLINDING_COUNTER - 1;
  139. return ret;
  140. err:
  141. BN_BLINDING_free(ret);
  142. return NULL;
  143. }
  144. void BN_BLINDING_free(BN_BLINDING *r) {
  145. if (r == NULL) {
  146. return;
  147. }
  148. BN_free(r->A);
  149. BN_free(r->Ai);
  150. OPENSSL_free(r);
  151. }
  152. static int bn_blinding_update(BN_BLINDING *b, const BIGNUM *e,
  153. const BN_MONT_CTX *mont, BN_CTX *ctx) {
  154. if (++b->counter == BN_BLINDING_COUNTER) {
  155. /* re-create blinding parameters */
  156. if (!bn_blinding_create_param(b, e, mont, ctx)) {
  157. goto err;
  158. }
  159. b->counter = 0;
  160. } else {
  161. if (!BN_mod_mul_montgomery(b->A, b->A, b->A, mont, ctx) ||
  162. !BN_mod_mul_montgomery(b->Ai, b->Ai, b->Ai, mont, ctx)) {
  163. goto err;
  164. }
  165. }
  166. return 1;
  167. err:
  168. /* |A| and |Ai| may be in an inconsistent state so they both need to be
  169. * replaced the next time this blinding is used. Note that this is only
  170. * sufficient because support for |BN_BLINDING_NO_UPDATE| and
  171. * |BN_BLINDING_NO_RECREATE| was previously dropped. */
  172. b->counter = BN_BLINDING_COUNTER - 1;
  173. return 0;
  174. }
  175. int BN_BLINDING_convert(BIGNUM *n, BN_BLINDING *b, const BIGNUM *e,
  176. const BN_MONT_CTX *mont, BN_CTX *ctx) {
  177. /* |n| is not Montgomery-encoded and |b->A| is. |BN_mod_mul_montgomery|
  178. * cancels one Montgomery factor, so the resulting value of |n| is unencoded.
  179. */
  180. if (!bn_blinding_update(b, e, mont, ctx) ||
  181. !BN_mod_mul_montgomery(n, n, b->A, mont, ctx)) {
  182. return 0;
  183. }
  184. return 1;
  185. }
  186. int BN_BLINDING_invert(BIGNUM *n, const BN_BLINDING *b, BN_MONT_CTX *mont,
  187. BN_CTX *ctx) {
  188. /* |n| is not Montgomery-encoded and |b->A| is. |BN_mod_mul_montgomery|
  189. * cancels one Montgomery factor, so the resulting value of |n| is unencoded.
  190. */
  191. return BN_mod_mul_montgomery(n, n, b->Ai, mont, ctx);
  192. }
  193. static int bn_blinding_create_param(BN_BLINDING *b, const BIGNUM *e,
  194. const BN_MONT_CTX *mont, BN_CTX *ctx) {
  195. int retry_counter = 32;
  196. do {
  197. if (!BN_rand_range_ex(b->A, 1, &mont->N)) {
  198. OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR);
  199. return 0;
  200. }
  201. /* |BN_from_montgomery| + |BN_mod_inverse_blinded| is equivalent to, but
  202. * more efficient than, |BN_mod_inverse_blinded| + |BN_to_montgomery|. */
  203. if (!BN_from_montgomery(b->Ai, b->A, mont, ctx)) {
  204. OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR);
  205. return 0;
  206. }
  207. int no_inverse;
  208. if (BN_mod_inverse_blinded(b->Ai, &no_inverse, b->Ai, mont, ctx)) {
  209. break;
  210. }
  211. if (!no_inverse) {
  212. OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR);
  213. return 0;
  214. }
  215. /* For reasonably-sized RSA keys, it should almost never be the case that a
  216. * random value doesn't have an inverse. */
  217. if (retry_counter-- == 0) {
  218. OPENSSL_PUT_ERROR(RSA, RSA_R_TOO_MANY_ITERATIONS);
  219. return 0;
  220. }
  221. ERR_clear_error();
  222. } while (1);
  223. if (!BN_mod_exp_mont(b->A, b->A, e, &mont->N, ctx, mont)) {
  224. OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR);
  225. return 0;
  226. }
  227. if (!BN_to_montgomery(b->A, b->A, mont, ctx)) {
  228. OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR);
  229. return 0;
  230. }
  231. return 1;
  232. }