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.
 
 
 
 
 
 

324 lines
9.4 KiB

  1. /* Originally written by Bodo Moeller and Nils Larsch for the OpenSSL project.
  2. * ====================================================================
  3. * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. *
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. *
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in
  14. * the documentation and/or other materials provided with the
  15. * distribution.
  16. *
  17. * 3. All advertising materials mentioning features or use of this
  18. * software must display the following acknowledgment:
  19. * "This product includes software developed by the OpenSSL Project
  20. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  21. *
  22. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  23. * endorse or promote products derived from this software without
  24. * prior written permission. For written permission, please contact
  25. * openssl-core@openssl.org.
  26. *
  27. * 5. Products derived from this software may not be called "OpenSSL"
  28. * nor may "OpenSSL" appear in their names without prior written
  29. * permission of the OpenSSL Project.
  30. *
  31. * 6. Redistributions of any form whatsoever must retain the following
  32. * acknowledgment:
  33. * "This product includes software developed by the OpenSSL Project
  34. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  35. *
  36. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  37. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  38. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  39. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  40. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  41. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  42. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  43. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  44. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  45. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  46. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  47. * OF THE POSSIBILITY OF SUCH DAMAGE.
  48. * ====================================================================
  49. *
  50. * This product includes cryptographic software written by Eric Young
  51. * (eay@cryptsoft.com). This product includes software written by Tim
  52. * Hudson (tjh@cryptsoft.com).
  53. *
  54. */
  55. /* ====================================================================
  56. * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
  57. *
  58. * Portions of the attached software ("Contribution") are developed by
  59. * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project.
  60. *
  61. * The Contribution is licensed pursuant to the OpenSSL open source
  62. * license provided above.
  63. *
  64. * The elliptic curve binary polynomial software is originally written by
  65. * Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems
  66. * Laboratories. */
  67. #include <openssl/ec.h>
  68. #include <openssl/bn.h>
  69. #include <openssl/err.h>
  70. #include <openssl/mem.h>
  71. #include "internal.h"
  72. int ec_GFp_mont_group_init(EC_GROUP *group) {
  73. int ok;
  74. ok = ec_GFp_simple_group_init(group);
  75. group->mont = NULL;
  76. return ok;
  77. }
  78. void ec_GFp_mont_group_finish(EC_GROUP *group) {
  79. BN_MONT_CTX_free(group->mont);
  80. group->mont = NULL;
  81. ec_GFp_simple_group_finish(group);
  82. }
  83. int ec_GFp_mont_group_copy(EC_GROUP *dest, const EC_GROUP *src) {
  84. BN_MONT_CTX_free(dest->mont);
  85. dest->mont = NULL;
  86. if (!ec_GFp_simple_group_copy(dest, src)) {
  87. return 0;
  88. }
  89. if (src->mont != NULL) {
  90. dest->mont = BN_MONT_CTX_new();
  91. if (dest->mont == NULL) {
  92. return 0;
  93. }
  94. if (!BN_MONT_CTX_copy(dest->mont, src->mont)) {
  95. goto err;
  96. }
  97. }
  98. return 1;
  99. err:
  100. BN_MONT_CTX_free(dest->mont);
  101. dest->mont = NULL;
  102. return 0;
  103. }
  104. int ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p,
  105. const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) {
  106. BN_CTX *new_ctx = NULL;
  107. BN_MONT_CTX *mont = NULL;
  108. int ret = 0;
  109. BN_MONT_CTX_free(group->mont);
  110. group->mont = NULL;
  111. if (ctx == NULL) {
  112. ctx = new_ctx = BN_CTX_new();
  113. if (ctx == NULL) {
  114. return 0;
  115. }
  116. }
  117. mont = BN_MONT_CTX_new();
  118. if (mont == NULL) {
  119. goto err;
  120. }
  121. if (!BN_MONT_CTX_set(mont, p, ctx)) {
  122. OPENSSL_PUT_ERROR(EC, ERR_R_BN_LIB);
  123. goto err;
  124. }
  125. group->mont = mont;
  126. mont = NULL;
  127. ret = ec_GFp_simple_group_set_curve(group, p, a, b, ctx);
  128. if (!ret) {
  129. BN_MONT_CTX_free(group->mont);
  130. group->mont = NULL;
  131. }
  132. err:
  133. BN_CTX_free(new_ctx);
  134. BN_MONT_CTX_free(mont);
  135. return ret;
  136. }
  137. int ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
  138. const BIGNUM *b, BN_CTX *ctx) {
  139. if (group->mont == NULL) {
  140. OPENSSL_PUT_ERROR(EC, EC_R_NOT_INITIALIZED);
  141. return 0;
  142. }
  143. return BN_mod_mul_montgomery(r, a, b, group->mont, ctx);
  144. }
  145. int ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
  146. BN_CTX *ctx) {
  147. if (group->mont == NULL) {
  148. OPENSSL_PUT_ERROR(EC, EC_R_NOT_INITIALIZED);
  149. return 0;
  150. }
  151. return BN_mod_mul_montgomery(r, a, a, group->mont, ctx);
  152. }
  153. int ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
  154. BN_CTX *ctx) {
  155. if (group->mont == NULL) {
  156. OPENSSL_PUT_ERROR(EC, EC_R_NOT_INITIALIZED);
  157. return 0;
  158. }
  159. return BN_to_montgomery(r, a, group->mont, ctx);
  160. }
  161. int ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
  162. BN_CTX *ctx) {
  163. if (group->mont == NULL) {
  164. OPENSSL_PUT_ERROR(EC, EC_R_NOT_INITIALIZED);
  165. return 0;
  166. }
  167. return BN_from_montgomery(r, a, group->mont, ctx);
  168. }
  169. static int ec_GFp_mont_check_pub_key_order(const EC_GROUP *group,
  170. const EC_POINT* pub_key,
  171. BN_CTX *ctx) {
  172. EC_POINT *point = EC_POINT_new(group);
  173. int ret = 0;
  174. if (point == NULL ||
  175. !ec_wNAF_mul(group, point, NULL, pub_key, EC_GROUP_get0_order(group),
  176. ctx) ||
  177. !EC_POINT_is_at_infinity(group, point)) {
  178. goto err;
  179. }
  180. ret = 1;
  181. err:
  182. EC_POINT_free(point);
  183. return ret;
  184. }
  185. static int ec_GFp_mont_point_get_affine_coordinates(const EC_GROUP *group,
  186. const EC_POINT *point,
  187. BIGNUM *x, BIGNUM *y,
  188. BN_CTX *ctx) {
  189. if (EC_POINT_is_at_infinity(group, point)) {
  190. OPENSSL_PUT_ERROR(EC, EC_R_POINT_AT_INFINITY);
  191. return 0;
  192. }
  193. BN_CTX *new_ctx = NULL;
  194. if (ctx == NULL) {
  195. ctx = new_ctx = BN_CTX_new();
  196. if (ctx == NULL) {
  197. return 0;
  198. }
  199. }
  200. int ret = 0;
  201. BN_CTX_start(ctx);
  202. if (BN_cmp(&point->Z, &group->one) == 0) {
  203. /* |point| is already affine. */
  204. if (x != NULL && !BN_from_montgomery(x, &point->X, group->mont, ctx)) {
  205. goto err;
  206. }
  207. if (y != NULL && !BN_from_montgomery(y, &point->Y, group->mont, ctx)) {
  208. goto err;
  209. }
  210. } else {
  211. /* transform (X, Y, Z) into (x, y) := (X/Z^2, Y/Z^3) */
  212. BIGNUM *Z_1 = BN_CTX_get(ctx);
  213. BIGNUM *Z_2 = BN_CTX_get(ctx);
  214. BIGNUM *Z_3 = BN_CTX_get(ctx);
  215. if (Z_1 == NULL ||
  216. Z_2 == NULL ||
  217. Z_3 == NULL) {
  218. goto err;
  219. }
  220. /* The straightforward way to calculate the inverse of a Montgomery-encoded
  221. * value where the result is Montgomery-encoded is:
  222. *
  223. * |BN_from_montgomery| + |BN_mod_inverse| + |BN_to_montgomery|.
  224. *
  225. * This is equivalent, but more efficient, because |BN_from_montgomery|
  226. * is more efficient (at least in theory) than |BN_to_montgomery|, since it
  227. * doesn't have to do the multiplication before the reduction. */
  228. if (!BN_from_montgomery(Z_1, &point->Z, group->mont, ctx) ||
  229. !BN_from_montgomery(Z_1, Z_1, group->mont, ctx) ||
  230. !BN_mod_inverse(Z_1, Z_1, &group->field, ctx)) {
  231. goto err;
  232. }
  233. if (!BN_mod_mul_montgomery(Z_2, Z_1, Z_1, group->mont, ctx)) {
  234. goto err;
  235. }
  236. /* Instead of using |BN_from_montgomery| to convert the |x| coordinate
  237. * and then calling |BN_from_montgomery| again to convert the |y|
  238. * coordinate below, convert the common factor |Z_2| once now, saving one
  239. * reduction. */
  240. if (!BN_from_montgomery(Z_2, Z_2, group->mont, ctx)) {
  241. goto err;
  242. }
  243. if (x != NULL) {
  244. if (!BN_mod_mul_montgomery(x, &point->X, Z_2, group->mont, ctx)) {
  245. goto err;
  246. }
  247. }
  248. if (y != NULL) {
  249. if (!BN_mod_mul_montgomery(Z_3, Z_2, Z_1, group->mont, ctx) ||
  250. !BN_mod_mul_montgomery(y, &point->Y, Z_3, group->mont, ctx)) {
  251. goto err;
  252. }
  253. }
  254. }
  255. ret = 1;
  256. err:
  257. BN_CTX_end(ctx);
  258. BN_CTX_free(new_ctx);
  259. return ret;
  260. }
  261. const EC_METHOD *EC_GFp_mont_method(void) {
  262. static const EC_METHOD ret = {
  263. ec_GFp_mont_group_init,
  264. ec_GFp_mont_group_finish,
  265. ec_GFp_mont_group_copy,
  266. ec_GFp_mont_group_set_curve,
  267. ec_GFp_mont_point_get_affine_coordinates,
  268. ec_wNAF_mul /* XXX: Not constant time. */,
  269. ec_GFp_mont_check_pub_key_order,
  270. ec_GFp_mont_field_mul,
  271. ec_GFp_mont_field_sqr,
  272. ec_GFp_mont_field_encode,
  273. ec_GFp_mont_field_decode,
  274. };
  275. return &ret;
  276. }