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.
 
 
 
 
 
 

852 lines
27 KiB

  1. /* Originally written by Bodo Moeller 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 <openssl/obj.h>
  72. #include "internal.h"
  73. static const struct curve_data P224 = {
  74. "NIST P-224",
  75. 28,
  76. 1,
  77. {/* p */
  78. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  79. 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  80. 0x00, 0x00, 0x00, 0x01,
  81. /* a */
  82. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  83. 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  84. 0xFF, 0xFF, 0xFF, 0xFE,
  85. /* b */
  86. 0xB4, 0x05, 0x0A, 0x85, 0x0C, 0x04, 0xB3, 0xAB, 0xF5, 0x41, 0x32, 0x56,
  87. 0x50, 0x44, 0xB0, 0xB7, 0xD7, 0xBF, 0xD8, 0xBA, 0x27, 0x0B, 0x39, 0x43,
  88. 0x23, 0x55, 0xFF, 0xB4,
  89. /* x */
  90. 0xB7, 0x0E, 0x0C, 0xBD, 0x6B, 0xB4, 0xBF, 0x7F, 0x32, 0x13, 0x90, 0xB9,
  91. 0x4A, 0x03, 0xC1, 0xD3, 0x56, 0xC2, 0x11, 0x22, 0x34, 0x32, 0x80, 0xD6,
  92. 0x11, 0x5C, 0x1D, 0x21,
  93. /* y */
  94. 0xbd, 0x37, 0x63, 0x88, 0xb5, 0xf7, 0x23, 0xfb, 0x4c, 0x22, 0xdf, 0xe6,
  95. 0xcd, 0x43, 0x75, 0xa0, 0x5a, 0x07, 0x47, 0x64, 0x44, 0xd5, 0x81, 0x99,
  96. 0x85, 0x00, 0x7e, 0x34,
  97. /* order */
  98. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  99. 0xFF, 0xFF, 0x16, 0xA2, 0xE0, 0xB8, 0xF0, 0x3E, 0x13, 0xDD, 0x29, 0x45,
  100. 0x5C, 0x5C, 0x2A, 0x3D,
  101. }};
  102. static const struct curve_data P256 = {
  103. "NIST P-256",
  104. 32,
  105. 1,
  106. {/* p */
  107. 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
  108. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,
  109. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  110. /* a */
  111. 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
  112. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,
  113. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC,
  114. /* b */
  115. 0x5A, 0xC6, 0x35, 0xD8, 0xAA, 0x3A, 0x93, 0xE7, 0xB3, 0xEB, 0xBD, 0x55,
  116. 0x76, 0x98, 0x86, 0xBC, 0x65, 0x1D, 0x06, 0xB0, 0xCC, 0x53, 0xB0, 0xF6,
  117. 0x3B, 0xCE, 0x3C, 0x3E, 0x27, 0xD2, 0x60, 0x4B,
  118. /* x */
  119. 0x6B, 0x17, 0xD1, 0xF2, 0xE1, 0x2C, 0x42, 0x47, 0xF8, 0xBC, 0xE6, 0xE5,
  120. 0x63, 0xA4, 0x40, 0xF2, 0x77, 0x03, 0x7D, 0x81, 0x2D, 0xEB, 0x33, 0xA0,
  121. 0xF4, 0xA1, 0x39, 0x45, 0xD8, 0x98, 0xC2, 0x96,
  122. /* y */
  123. 0x4f, 0xe3, 0x42, 0xe2, 0xfe, 0x1a, 0x7f, 0x9b, 0x8e, 0xe7, 0xeb, 0x4a,
  124. 0x7c, 0x0f, 0x9e, 0x16, 0x2b, 0xce, 0x33, 0x57, 0x6b, 0x31, 0x5e, 0xce,
  125. 0xcb, 0xb6, 0x40, 0x68, 0x37, 0xbf, 0x51, 0xf5,
  126. /* order */
  127. 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,
  128. 0xFF, 0xFF, 0xFF, 0xFF, 0xBC, 0xE6, 0xFA, 0xAD, 0xA7, 0x17, 0x9E, 0x84,
  129. 0xF3, 0xB9, 0xCA, 0xC2, 0xFC, 0x63, 0x25, 0x51}};
  130. static const struct curve_data P384 = {
  131. "NIST P-384",
  132. 48,
  133. 1,
  134. {/* p */
  135. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  136. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  137. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF,
  138. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,
  139. /* a */
  140. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  141. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  142. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF,
  143. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFC,
  144. /* b */
  145. 0xB3, 0x31, 0x2F, 0xA7, 0xE2, 0x3E, 0xE7, 0xE4, 0x98, 0x8E, 0x05, 0x6B,
  146. 0xE3, 0xF8, 0x2D, 0x19, 0x18, 0x1D, 0x9C, 0x6E, 0xFE, 0x81, 0x41, 0x12,
  147. 0x03, 0x14, 0x08, 0x8F, 0x50, 0x13, 0x87, 0x5A, 0xC6, 0x56, 0x39, 0x8D,
  148. 0x8A, 0x2E, 0xD1, 0x9D, 0x2A, 0x85, 0xC8, 0xED, 0xD3, 0xEC, 0x2A, 0xEF,
  149. /* x */
  150. 0xAA, 0x87, 0xCA, 0x22, 0xBE, 0x8B, 0x05, 0x37, 0x8E, 0xB1, 0xC7, 0x1E,
  151. 0xF3, 0x20, 0xAD, 0x74, 0x6E, 0x1D, 0x3B, 0x62, 0x8B, 0xA7, 0x9B, 0x98,
  152. 0x59, 0xF7, 0x41, 0xE0, 0x82, 0x54, 0x2A, 0x38, 0x55, 0x02, 0xF2, 0x5D,
  153. 0xBF, 0x55, 0x29, 0x6C, 0x3A, 0x54, 0x5E, 0x38, 0x72, 0x76, 0x0A, 0xB7,
  154. /* y */
  155. 0x36, 0x17, 0xde, 0x4a, 0x96, 0x26, 0x2c, 0x6f, 0x5d, 0x9e, 0x98, 0xbf,
  156. 0x92, 0x92, 0xdc, 0x29, 0xf8, 0xf4, 0x1d, 0xbd, 0x28, 0x9a, 0x14, 0x7c,
  157. 0xe9, 0xda, 0x31, 0x13, 0xb5, 0xf0, 0xb8, 0xc0, 0x0a, 0x60, 0xb1, 0xce,
  158. 0x1d, 0x7e, 0x81, 0x9d, 0x7a, 0x43, 0x1d, 0x7c, 0x90, 0xea, 0x0e, 0x5f,
  159. /* order */
  160. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  161. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  162. 0xC7, 0x63, 0x4D, 0x81, 0xF4, 0x37, 0x2D, 0xDF, 0x58, 0x1A, 0x0D, 0xB2,
  163. 0x48, 0xB0, 0xA7, 0x7A, 0xEC, 0xEC, 0x19, 0x6A, 0xCC, 0xC5, 0x29, 0x73}};
  164. static const struct curve_data P521 = {
  165. "NIST P-521",
  166. 66,
  167. 1,
  168. {/* p */
  169. 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  170. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  171. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  172. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  173. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  174. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  175. /* a */
  176. 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  177. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  178. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  179. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  180. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  181. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC,
  182. /* b */
  183. 0x00, 0x51, 0x95, 0x3E, 0xB9, 0x61, 0x8E, 0x1C, 0x9A, 0x1F, 0x92, 0x9A,
  184. 0x21, 0xA0, 0xB6, 0x85, 0x40, 0xEE, 0xA2, 0xDA, 0x72, 0x5B, 0x99, 0xB3,
  185. 0x15, 0xF3, 0xB8, 0xB4, 0x89, 0x91, 0x8E, 0xF1, 0x09, 0xE1, 0x56, 0x19,
  186. 0x39, 0x51, 0xEC, 0x7E, 0x93, 0x7B, 0x16, 0x52, 0xC0, 0xBD, 0x3B, 0xB1,
  187. 0xBF, 0x07, 0x35, 0x73, 0xDF, 0x88, 0x3D, 0x2C, 0x34, 0xF1, 0xEF, 0x45,
  188. 0x1F, 0xD4, 0x6B, 0x50, 0x3F, 0x00,
  189. /* x */
  190. 0x00, 0xC6, 0x85, 0x8E, 0x06, 0xB7, 0x04, 0x04, 0xE9, 0xCD, 0x9E, 0x3E,
  191. 0xCB, 0x66, 0x23, 0x95, 0xB4, 0x42, 0x9C, 0x64, 0x81, 0x39, 0x05, 0x3F,
  192. 0xB5, 0x21, 0xF8, 0x28, 0xAF, 0x60, 0x6B, 0x4D, 0x3D, 0xBA, 0xA1, 0x4B,
  193. 0x5E, 0x77, 0xEF, 0xE7, 0x59, 0x28, 0xFE, 0x1D, 0xC1, 0x27, 0xA2, 0xFF,
  194. 0xA8, 0xDE, 0x33, 0x48, 0xB3, 0xC1, 0x85, 0x6A, 0x42, 0x9B, 0xF9, 0x7E,
  195. 0x7E, 0x31, 0xC2, 0xE5, 0xBD, 0x66,
  196. /* y */
  197. 0x01, 0x18, 0x39, 0x29, 0x6a, 0x78, 0x9a, 0x3b, 0xc0, 0x04, 0x5c, 0x8a,
  198. 0x5f, 0xb4, 0x2c, 0x7d, 0x1b, 0xd9, 0x98, 0xf5, 0x44, 0x49, 0x57, 0x9b,
  199. 0x44, 0x68, 0x17, 0xaf, 0xbd, 0x17, 0x27, 0x3e, 0x66, 0x2c, 0x97, 0xee,
  200. 0x72, 0x99, 0x5e, 0xf4, 0x26, 0x40, 0xc5, 0x50, 0xb9, 0x01, 0x3f, 0xad,
  201. 0x07, 0x61, 0x35, 0x3c, 0x70, 0x86, 0xa2, 0x72, 0xc2, 0x40, 0x88, 0xbe,
  202. 0x94, 0x76, 0x9f, 0xd1, 0x66, 0x50,
  203. /* order */
  204. 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  205. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  206. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFA, 0x51, 0x86,
  207. 0x87, 0x83, 0xBF, 0x2F, 0x96, 0x6B, 0x7F, 0xCC, 0x01, 0x48, 0xF7, 0x09,
  208. 0xA5, 0xD0, 0x3B, 0xB5, 0xC9, 0xB8, 0x89, 0x9C, 0x47, 0xAE, 0xBB, 0x6F,
  209. 0xB7, 0x1E, 0x91, 0x38, 0x64, 0x09}};
  210. const struct built_in_curve OPENSSL_built_in_curves[] = {
  211. {NID_secp224r1, &P224, 0},
  212. {NID_X9_62_prime256v1, &P256, 0},
  213. {NID_secp384r1, &P384, 0},
  214. {NID_secp521r1, &P521, 0},
  215. {NID_undef, 0, 0},
  216. };
  217. EC_GROUP *ec_group_new(const EC_METHOD *meth) {
  218. EC_GROUP *ret;
  219. if (meth == NULL) {
  220. OPENSSL_PUT_ERROR(EC, ec_group_new, EC_R_SLOT_FULL);
  221. return NULL;
  222. }
  223. if (meth->group_init == 0) {
  224. OPENSSL_PUT_ERROR(EC, ec_group_new, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  225. return NULL;
  226. }
  227. ret = OPENSSL_malloc(sizeof(EC_GROUP));
  228. if (ret == NULL) {
  229. OPENSSL_PUT_ERROR(EC, ec_group_new, ERR_R_MALLOC_FAILURE);
  230. return NULL;
  231. }
  232. memset(ret, 0, sizeof(EC_GROUP));
  233. ret->meth = meth;
  234. BN_init(&ret->order);
  235. BN_init(&ret->cofactor);
  236. ret->asn1_form = POINT_CONVERSION_UNCOMPRESSED;
  237. if (!meth->group_init(ret)) {
  238. OPENSSL_free(ret);
  239. return NULL;
  240. }
  241. return ret;
  242. }
  243. static EC_GROUP *ec_group_new_curve_GFp(const BIGNUM *p, const BIGNUM *a,
  244. const BIGNUM *b, BN_CTX *ctx) {
  245. const EC_METHOD *meth = EC_GFp_mont_method();
  246. EC_GROUP *ret;
  247. ret = ec_group_new(meth);
  248. if (ret == NULL) {
  249. return NULL;
  250. }
  251. if (ret->meth->group_set_curve == 0) {
  252. OPENSSL_PUT_ERROR(EC, ec_group_new_curve_GFp,
  253. ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  254. return 0;
  255. }
  256. if (!ret->meth->group_set_curve(ret, p, a, b, ctx)) {
  257. EC_GROUP_free(ret);
  258. return NULL;
  259. }
  260. return ret;
  261. }
  262. static EC_GROUP *ec_group_new_from_data(const struct built_in_curve *curve) {
  263. EC_GROUP *group = NULL;
  264. EC_POINT *P = NULL;
  265. BN_CTX *ctx = NULL;
  266. BIGNUM *p = NULL, *a = NULL, *b = NULL, *x = NULL, *y = NULL, *order = NULL;
  267. int ok = 0;
  268. unsigned param_len;
  269. const EC_METHOD *meth;
  270. const struct curve_data *data;
  271. const uint8_t *params;
  272. if ((ctx = BN_CTX_new()) == NULL) {
  273. OPENSSL_PUT_ERROR(EC, ec_group_new_from_data, ERR_R_MALLOC_FAILURE);
  274. goto err;
  275. }
  276. data = curve->data;
  277. param_len = data->param_len;
  278. params = data->data;
  279. if (!(p = BN_bin2bn(params + 0 * param_len, param_len, NULL)) ||
  280. !(a = BN_bin2bn(params + 1 * param_len, param_len, NULL)) ||
  281. !(b = BN_bin2bn(params + 2 * param_len, param_len, NULL))) {
  282. OPENSSL_PUT_ERROR(EC, ec_group_new_from_data, ERR_R_BN_LIB);
  283. goto err;
  284. }
  285. if (curve->method != 0) {
  286. meth = curve->method();
  287. if (((group = ec_group_new(meth)) == NULL) ||
  288. (!(group->meth->group_set_curve(group, p, a, b, ctx)))) {
  289. OPENSSL_PUT_ERROR(EC, ec_group_new_from_data, ERR_R_EC_LIB);
  290. goto err;
  291. }
  292. } else {
  293. if ((group = ec_group_new_curve_GFp(p, a, b, ctx)) == NULL) {
  294. OPENSSL_PUT_ERROR(EC, ec_group_new_from_data, ERR_R_EC_LIB);
  295. goto err;
  296. }
  297. }
  298. if ((P = EC_POINT_new(group)) == NULL) {
  299. OPENSSL_PUT_ERROR(EC, ec_group_new_from_data, ERR_R_EC_LIB);
  300. goto err;
  301. }
  302. if (!(x = BN_bin2bn(params + 3 * param_len, param_len, NULL)) ||
  303. !(y = BN_bin2bn(params + 4 * param_len, param_len, NULL))) {
  304. OPENSSL_PUT_ERROR(EC, ec_group_new_from_data, ERR_R_BN_LIB);
  305. goto err;
  306. }
  307. if (!EC_POINT_set_affine_coordinates_GFp(group, P, x, y, ctx)) {
  308. OPENSSL_PUT_ERROR(EC, ec_group_new_from_data, ERR_R_EC_LIB);
  309. goto err;
  310. }
  311. if (!(order = BN_bin2bn(params + 5 * param_len, param_len, NULL)) ||
  312. !BN_set_word(x, (BN_ULONG)data->cofactor)) {
  313. OPENSSL_PUT_ERROR(EC, ec_group_new_from_data, ERR_R_BN_LIB);
  314. goto err;
  315. }
  316. group->generator = P;
  317. P = NULL;
  318. if (!BN_copy(&group->order, order) ||
  319. !BN_set_word(&group->cofactor, (BN_ULONG)data->cofactor)) {
  320. OPENSSL_PUT_ERROR(EC, ec_group_new_from_data, ERR_R_BN_LIB);
  321. goto err;
  322. }
  323. ok = 1;
  324. err:
  325. if (!ok) {
  326. EC_GROUP_free(group);
  327. group = NULL;
  328. }
  329. if (P)
  330. EC_POINT_free(P);
  331. if (ctx)
  332. BN_CTX_free(ctx);
  333. if (p)
  334. BN_free(p);
  335. if (a)
  336. BN_free(a);
  337. if (b)
  338. BN_free(b);
  339. if (order)
  340. BN_free(order);
  341. if (x)
  342. BN_free(x);
  343. if (y)
  344. BN_free(y);
  345. return group;
  346. }
  347. EC_GROUP *EC_GROUP_new_by_curve_name(int nid) {
  348. unsigned i;
  349. const struct built_in_curve *curve;
  350. EC_GROUP *ret = NULL;
  351. for (i = 0; OPENSSL_built_in_curves[i].nid != NID_undef; i++) {
  352. curve = &OPENSSL_built_in_curves[i];
  353. if (curve->nid == nid) {
  354. ret = ec_group_new_from_data(curve);
  355. break;
  356. }
  357. }
  358. if (ret == NULL) {
  359. OPENSSL_PUT_ERROR(EC, EC_GROUP_new_by_curve_name, EC_R_UNKNOWN_GROUP);
  360. return NULL;
  361. }
  362. ret->curve_name = nid;
  363. return ret;
  364. }
  365. void EC_GROUP_free(EC_GROUP *group) {
  366. if (!group) {
  367. return;
  368. }
  369. if (group->meth->group_finish != 0) {
  370. group->meth->group_finish(group);
  371. }
  372. ec_pre_comp_free(group->pre_comp);
  373. if (group->generator != NULL) {
  374. EC_POINT_free(group->generator);
  375. }
  376. BN_free(&group->order);
  377. BN_free(&group->cofactor);
  378. OPENSSL_free(group);
  379. }
  380. int EC_GROUP_copy(EC_GROUP *dest, const EC_GROUP *src) {
  381. if (dest->meth->group_copy == 0) {
  382. OPENSSL_PUT_ERROR(EC, EC_GROUP_copy, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  383. return 0;
  384. }
  385. if (dest->meth != src->meth) {
  386. OPENSSL_PUT_ERROR(EC, EC_GROUP_copy, EC_R_INCOMPATIBLE_OBJECTS);
  387. return 0;
  388. }
  389. if (dest == src) {
  390. return 1;
  391. }
  392. ec_pre_comp_free(dest->pre_comp);
  393. dest->pre_comp = ec_pre_comp_dup(src->pre_comp);
  394. if (src->generator != NULL) {
  395. if (dest->generator == NULL) {
  396. dest->generator = EC_POINT_new(dest);
  397. if (dest->generator == NULL) {
  398. return 0;
  399. }
  400. }
  401. if (!EC_POINT_copy(dest->generator, src->generator)) {
  402. return 0;
  403. }
  404. } else {
  405. /* src->generator == NULL */
  406. if (dest->generator != NULL) {
  407. EC_POINT_clear_free(dest->generator);
  408. dest->generator = NULL;
  409. }
  410. }
  411. if (!BN_copy(&dest->order, &src->order) ||
  412. !BN_copy(&dest->cofactor, &src->cofactor)) {
  413. return 0;
  414. }
  415. dest->curve_name = src->curve_name;
  416. dest->asn1_form = src->asn1_form;
  417. return dest->meth->group_copy(dest, src);
  418. }
  419. EC_GROUP *EC_GROUP_dup(const EC_GROUP *a) {
  420. EC_GROUP *t = NULL;
  421. int ok = 0;
  422. if (a == NULL) {
  423. return NULL;
  424. }
  425. t = ec_group_new(a->meth);
  426. if (t == NULL) {
  427. return NULL;
  428. }
  429. if (!EC_GROUP_copy(t, a)) {
  430. goto err;
  431. }
  432. ok = 1;
  433. err:
  434. if (!ok) {
  435. if (t) {
  436. EC_GROUP_free(t);
  437. }
  438. return NULL;
  439. } else {
  440. return t;
  441. }
  442. }
  443. int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b) {
  444. if (a->curve_name == NID_undef || b->curve_name == NID_undef) {
  445. return 0;
  446. }
  447. return a->curve_name == b->curve_name;
  448. }
  449. const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group) {
  450. return group->generator;
  451. }
  452. int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) {
  453. if (!BN_copy(order, &group->order)) {
  454. return 0;
  455. }
  456. return !BN_is_zero(order);
  457. }
  458. int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor,
  459. BN_CTX *ctx) {
  460. if (!BN_copy(cofactor, &group->cofactor)) {
  461. return 0;
  462. }
  463. return !BN_is_zero(&group->cofactor);
  464. }
  465. int EC_GROUP_get_curve_name(const EC_GROUP *group) { return group->curve_name; }
  466. int EC_GROUP_get_degree(const EC_GROUP *group) {
  467. if (group->meth->group_get_degree == 0) {
  468. OPENSSL_PUT_ERROR(EC, EC_GROUP_get_degree,
  469. ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  470. return 0;
  471. }
  472. return group->meth->group_get_degree(group);
  473. }
  474. void EC_GROUP_set_point_conversion_form(EC_GROUP *group,
  475. point_conversion_form_t form) {
  476. group->asn1_form = form;
  477. }
  478. int EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx) {
  479. if (group->meth->mul == 0) {
  480. /* use default */
  481. return ec_wNAF_precompute_mult(group, ctx);
  482. }
  483. if (group->meth->precompute_mult != 0) {
  484. return group->meth->precompute_mult(group, ctx);
  485. }
  486. return 1; /* nothing to do, so report success */
  487. }
  488. int EC_GROUP_have_precompute_mult(const EC_GROUP *group) {
  489. if (group->meth->mul == 0) {
  490. /* use default */
  491. return ec_wNAF_have_precompute_mult(group);
  492. }
  493. if (group->meth->have_precompute_mult != 0) {
  494. return group->meth->have_precompute_mult(group);
  495. }
  496. return 0; /* cannot tell whether precomputation has been performed */
  497. }
  498. EC_POINT *EC_POINT_new(const EC_GROUP *group) {
  499. EC_POINT *ret;
  500. if (group == NULL) {
  501. OPENSSL_PUT_ERROR(EC, EC_POINT_new, ERR_R_PASSED_NULL_PARAMETER);
  502. return NULL;
  503. }
  504. if (group->meth->point_init == 0) {
  505. OPENSSL_PUT_ERROR(EC, EC_POINT_new, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  506. return NULL;
  507. }
  508. ret = OPENSSL_malloc(sizeof *ret);
  509. if (ret == NULL) {
  510. OPENSSL_PUT_ERROR(EC, EC_POINT_new, ERR_R_MALLOC_FAILURE);
  511. return NULL;
  512. }
  513. ret->meth = group->meth;
  514. if (!ret->meth->point_init(ret)) {
  515. OPENSSL_free(ret);
  516. return NULL;
  517. }
  518. return ret;
  519. }
  520. void EC_POINT_free(EC_POINT *point) {
  521. if (!point) {
  522. return;
  523. }
  524. if (point->meth->point_finish != 0) {
  525. point->meth->point_finish(point);
  526. }
  527. OPENSSL_free(point);
  528. }
  529. void EC_POINT_clear_free(EC_POINT *point) {
  530. if (!point) {
  531. return;
  532. }
  533. if (point->meth->point_clear_finish != 0) {
  534. point->meth->point_clear_finish(point);
  535. } else if (point->meth->point_finish != 0) {
  536. point->meth->point_finish(point);
  537. }
  538. OPENSSL_cleanse(point, sizeof *point);
  539. OPENSSL_free(point);
  540. }
  541. int EC_POINT_copy(EC_POINT *dest, const EC_POINT *src) {
  542. if (dest->meth->point_copy == 0) {
  543. OPENSSL_PUT_ERROR(EC, EC_POINT_copy, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  544. return 0;
  545. }
  546. if (dest->meth != src->meth) {
  547. OPENSSL_PUT_ERROR(EC, EC_POINT_copy, EC_R_INCOMPATIBLE_OBJECTS);
  548. return 0;
  549. }
  550. if (dest == src) {
  551. return 1;
  552. }
  553. return dest->meth->point_copy(dest, src);
  554. }
  555. EC_POINT *EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group) {
  556. EC_POINT *t;
  557. int r;
  558. if (a == NULL) {
  559. return NULL;
  560. }
  561. t = EC_POINT_new(group);
  562. if (t == NULL) {
  563. OPENSSL_PUT_ERROR(EC, EC_POINT_dup, ERR_R_MALLOC_FAILURE);
  564. return NULL;
  565. }
  566. r = EC_POINT_copy(t, a);
  567. if (!r) {
  568. EC_POINT_free(t);
  569. return NULL;
  570. } else {
  571. return t;
  572. }
  573. }
  574. int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) {
  575. if (group->meth->point_set_to_infinity == 0) {
  576. OPENSSL_PUT_ERROR(EC, EC_POINT_set_to_infinity,
  577. ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  578. return 0;
  579. }
  580. if (group->meth != point->meth) {
  581. OPENSSL_PUT_ERROR(EC, EC_POINT_set_to_infinity, EC_R_INCOMPATIBLE_OBJECTS);
  582. return 0;
  583. }
  584. return group->meth->point_set_to_infinity(group, point);
  585. }
  586. int EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) {
  587. if (group->meth->is_at_infinity == 0) {
  588. OPENSSL_PUT_ERROR(EC, EC_POINT_is_at_infinity,
  589. ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  590. return 0;
  591. }
  592. if (group->meth != point->meth) {
  593. OPENSSL_PUT_ERROR(EC, EC_POINT_is_at_infinity, EC_R_INCOMPATIBLE_OBJECTS);
  594. return 0;
  595. }
  596. return group->meth->is_at_infinity(group, point);
  597. }
  598. int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point,
  599. BN_CTX *ctx) {
  600. if (group->meth->is_on_curve == 0) {
  601. OPENSSL_PUT_ERROR(EC, EC_POINT_is_on_curve,
  602. ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  603. return 0;
  604. }
  605. if (group->meth != point->meth) {
  606. OPENSSL_PUT_ERROR(EC, EC_POINT_is_on_curve, EC_R_INCOMPATIBLE_OBJECTS);
  607. return 0;
  608. }
  609. return group->meth->is_on_curve(group, point, ctx);
  610. }
  611. int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b,
  612. BN_CTX *ctx) {
  613. if (group->meth->point_cmp == 0) {
  614. OPENSSL_PUT_ERROR(EC, EC_POINT_cmp, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  615. return -1;
  616. }
  617. if ((group->meth != a->meth) || (a->meth != b->meth)) {
  618. OPENSSL_PUT_ERROR(EC, EC_POINT_cmp, EC_R_INCOMPATIBLE_OBJECTS);
  619. return -1;
  620. }
  621. return group->meth->point_cmp(group, a, b, ctx);
  622. }
  623. int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) {
  624. if (group->meth->make_affine == 0) {
  625. OPENSSL_PUT_ERROR(EC, EC_POINT_make_affine,
  626. ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  627. return 0;
  628. }
  629. if (group->meth != point->meth) {
  630. OPENSSL_PUT_ERROR(EC, EC_POINT_make_affine, EC_R_INCOMPATIBLE_OBJECTS);
  631. return 0;
  632. }
  633. return group->meth->make_affine(group, point, ctx);
  634. }
  635. int EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[],
  636. BN_CTX *ctx) {
  637. size_t i;
  638. if (group->meth->points_make_affine == 0) {
  639. OPENSSL_PUT_ERROR(EC, EC_POINTs_make_affine,
  640. ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  641. return 0;
  642. }
  643. for (i = 0; i < num; i++) {
  644. if (group->meth != points[i]->meth) {
  645. OPENSSL_PUT_ERROR(EC, EC_POINTs_make_affine, EC_R_INCOMPATIBLE_OBJECTS);
  646. return 0;
  647. }
  648. }
  649. return group->meth->points_make_affine(group, num, points, ctx);
  650. }
  651. int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group,
  652. const EC_POINT *point, BIGNUM *x,
  653. BIGNUM *y, BN_CTX *ctx) {
  654. if (group->meth->point_get_affine_coordinates == 0) {
  655. OPENSSL_PUT_ERROR(EC, EC_POINT_get_affine_coordinates_GFp,
  656. ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  657. return 0;
  658. }
  659. if (group->meth != point->meth) {
  660. OPENSSL_PUT_ERROR(EC, EC_POINT_get_affine_coordinates_GFp,
  661. EC_R_INCOMPATIBLE_OBJECTS);
  662. return 0;
  663. }
  664. return group->meth->point_get_affine_coordinates(group, point, x, y, ctx);
  665. }
  666. int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
  667. const BIGNUM *x, const BIGNUM *y,
  668. BN_CTX *ctx) {
  669. if (group->meth->point_set_affine_coordinates == 0) {
  670. OPENSSL_PUT_ERROR(EC, EC_POINT_set_affine_coordinates_GFp,
  671. ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  672. return 0;
  673. }
  674. if (group->meth != point->meth) {
  675. OPENSSL_PUT_ERROR(EC, EC_POINT_set_affine_coordinates_GFp,
  676. EC_R_INCOMPATIBLE_OBJECTS);
  677. return 0;
  678. }
  679. return group->meth->point_set_affine_coordinates(group, point, x, y, ctx);
  680. }
  681. int EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
  682. const EC_POINT *b, BN_CTX *ctx) {
  683. if (group->meth->add == 0) {
  684. OPENSSL_PUT_ERROR(EC, EC_POINT_add, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  685. return 0;
  686. }
  687. if ((group->meth != r->meth) || (r->meth != a->meth) ||
  688. (a->meth != b->meth)) {
  689. OPENSSL_PUT_ERROR(EC, EC_POINT_add, EC_R_INCOMPATIBLE_OBJECTS);
  690. return 0;
  691. }
  692. return group->meth->add(group, r, a, b, ctx);
  693. }
  694. int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
  695. BN_CTX *ctx) {
  696. if (group->meth->dbl == 0) {
  697. OPENSSL_PUT_ERROR(EC, EC_POINT_dbl, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  698. return 0;
  699. }
  700. if ((group->meth != r->meth) || (r->meth != a->meth)) {
  701. OPENSSL_PUT_ERROR(EC, EC_POINT_dbl, EC_R_INCOMPATIBLE_OBJECTS);
  702. return 0;
  703. }
  704. return group->meth->dbl(group, r, a, ctx);
  705. }
  706. int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx) {
  707. if (group->meth->dbl == 0) {
  708. OPENSSL_PUT_ERROR(EC, EC_POINT_invert, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  709. return 0;
  710. }
  711. if (group->meth != a->meth) {
  712. OPENSSL_PUT_ERROR(EC, EC_POINT_invert, EC_R_INCOMPATIBLE_OBJECTS);
  713. return 0;
  714. }
  715. return group->meth->invert(group, a, ctx);
  716. }
  717. int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar,
  718. const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx) {
  719. /* just a convenient interface to EC_POINTs_mul() */
  720. const EC_POINT *points[1];
  721. const BIGNUM *scalars[1];
  722. points[0] = point;
  723. scalars[0] = p_scalar;
  724. return EC_POINTs_mul(group, r, g_scalar, (point != NULL && p_scalar != NULL),
  725. points, scalars, ctx);
  726. }
  727. int EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
  728. size_t num, const EC_POINT *points[], const BIGNUM *scalars[],
  729. BN_CTX *ctx) {
  730. if (group->meth->mul == 0) {
  731. /* use default. Warning, not constant-time. */
  732. return ec_wNAF_mul(group, r, scalar, num, points, scalars, ctx);
  733. }
  734. return group->meth->mul(group, r, scalar, num, points, scalars, ctx);
  735. }
  736. int ec_point_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
  737. const BIGNUM *x, const BIGNUM *y,
  738. const BIGNUM *z, BN_CTX *ctx) {
  739. if (group->meth->point_set_Jprojective_coordinates_GFp == 0) {
  740. OPENSSL_PUT_ERROR(EC, ec_point_set_Jprojective_coordinates_GFp,
  741. ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  742. return 0;
  743. }
  744. if (group->meth != point->meth) {
  745. OPENSSL_PUT_ERROR(EC, ec_point_set_Jprojective_coordinates_GFp,
  746. EC_R_INCOMPATIBLE_OBJECTS);
  747. return 0;
  748. }
  749. return group->meth->point_set_Jprojective_coordinates_GFp(group, point, x, y,
  750. z, ctx);
  751. }