ec_lib.c 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167
  1. /* crypto/ec/ec_lib.c */
  2. /*
  3. * Originally written by Bodo Moeller for the OpenSSL project.
  4. */
  5. /* ====================================================================
  6. * Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. *
  12. * 1. Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions and the following disclaimer.
  14. *
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in
  17. * the documentation and/or other materials provided with the
  18. * distribution.
  19. *
  20. * 3. All advertising materials mentioning features or use of this
  21. * software must display the following acknowledgment:
  22. * "This product includes software developed by the OpenSSL Project
  23. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  24. *
  25. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  26. * endorse or promote products derived from this software without
  27. * prior written permission. For written permission, please contact
  28. * openssl-core@openssl.org.
  29. *
  30. * 5. Products derived from this software may not be called "OpenSSL"
  31. * nor may "OpenSSL" appear in their names without prior written
  32. * permission of the OpenSSL Project.
  33. *
  34. * 6. Redistributions of any form whatsoever must retain the following
  35. * acknowledgment:
  36. * "This product includes software developed by the OpenSSL Project
  37. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  38. *
  39. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  40. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  41. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  42. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  43. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  44. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  45. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  46. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  48. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  49. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  50. * OF THE POSSIBILITY OF SUCH DAMAGE.
  51. * ====================================================================
  52. *
  53. * This product includes cryptographic software written by Eric Young
  54. * (eay@cryptsoft.com). This product includes software written by Tim
  55. * Hudson (tjh@cryptsoft.com).
  56. *
  57. */
  58. /* ====================================================================
  59. * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
  60. * Binary polynomial ECC support in OpenSSL originally developed by
  61. * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
  62. */
  63. #include <string.h>
  64. #include <openssl/err.h>
  65. #include <openssl/opensslv.h>
  66. #include "ec_lcl.h"
  67. static const char EC_version[] = "EC" OPENSSL_VERSION_PTEXT;
  68. /* functions for EC_GROUP objects */
  69. EC_GROUP *EC_GROUP_new(const EC_METHOD *meth)
  70. {
  71. EC_GROUP *ret;
  72. if (meth == NULL)
  73. {
  74. ECerr(EC_F_EC_GROUP_NEW, ERR_R_PASSED_NULL_PARAMETER);
  75. return NULL;
  76. }
  77. if (meth->group_init == 0)
  78. {
  79. ECerr(EC_F_EC_GROUP_NEW, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  80. return NULL;
  81. }
  82. ret = OPENSSL_malloc(sizeof *ret);
  83. if (ret == NULL)
  84. {
  85. ECerr(EC_F_EC_GROUP_NEW, ERR_R_MALLOC_FAILURE);
  86. return NULL;
  87. }
  88. ret->meth = meth;
  89. ret->extra_data = NULL;
  90. ret->generator = NULL;
  91. BN_init(&ret->order);
  92. BN_init(&ret->cofactor);
  93. ret->curve_name = 0;
  94. ret->asn1_flag = 0;
  95. ret->asn1_form = POINT_CONVERSION_UNCOMPRESSED;
  96. ret->seed = NULL;
  97. ret->seed_len = 0;
  98. if (!meth->group_init(ret))
  99. {
  100. OPENSSL_free(ret);
  101. return NULL;
  102. }
  103. return ret;
  104. }
  105. void EC_GROUP_free(EC_GROUP *group)
  106. {
  107. if (!group) return;
  108. if (group->meth->group_finish != 0)
  109. group->meth->group_finish(group);
  110. EC_GROUP_free_all_extra_data(group);
  111. if (group->generator != NULL)
  112. EC_POINT_free(group->generator);
  113. BN_free(&group->order);
  114. BN_free(&group->cofactor);
  115. if (group->seed)
  116. OPENSSL_free(group->seed);
  117. OPENSSL_free(group);
  118. }
  119. void EC_GROUP_clear_free(EC_GROUP *group)
  120. {
  121. if (!group) return;
  122. if (group->meth->group_clear_finish != 0)
  123. group->meth->group_clear_finish(group);
  124. else if (group->meth != NULL && group->meth->group_finish != 0)
  125. group->meth->group_finish(group);
  126. EC_GROUP_clear_free_all_extra_data(group);
  127. if (group->generator != NULL)
  128. EC_POINT_clear_free(group->generator);
  129. BN_clear_free(&group->order);
  130. BN_clear_free(&group->cofactor);
  131. if (group->seed)
  132. {
  133. OPENSSL_cleanse(group->seed, group->seed_len);
  134. OPENSSL_free(group->seed);
  135. }
  136. OPENSSL_cleanse(group, sizeof *group);
  137. OPENSSL_free(group);
  138. }
  139. int EC_GROUP_copy(EC_GROUP *dest, const EC_GROUP *src)
  140. {
  141. EC_EXTRA_DATA *d;
  142. if (dest->meth->group_copy == 0)
  143. {
  144. ECerr(EC_F_EC_GROUP_COPY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  145. return 0;
  146. }
  147. if (dest->meth != src->meth)
  148. {
  149. ECerr(EC_F_EC_GROUP_COPY, EC_R_INCOMPATIBLE_OBJECTS);
  150. return 0;
  151. }
  152. if (dest == src)
  153. return 1;
  154. EC_GROUP_free_all_extra_data(dest);
  155. for (d = src->extra_data; d != NULL; d = d->next)
  156. {
  157. void *t = d->dup_func(d->data);
  158. if (t == NULL)
  159. return 0;
  160. if (!EC_GROUP_set_extra_data(dest, t, d->dup_func, d->free_func, d->clear_free_func))
  161. return 0;
  162. }
  163. if (src->generator != NULL)
  164. {
  165. if (dest->generator == NULL)
  166. {
  167. dest->generator = EC_POINT_new(dest);
  168. if (dest->generator == NULL) return 0;
  169. }
  170. if (!EC_POINT_copy(dest->generator, src->generator)) return 0;
  171. }
  172. else
  173. {
  174. /* src->generator == NULL */
  175. if (dest->generator != NULL)
  176. {
  177. EC_POINT_clear_free(dest->generator);
  178. dest->generator = NULL;
  179. }
  180. }
  181. if (!BN_copy(&dest->order, &src->order)) return 0;
  182. if (!BN_copy(&dest->cofactor, &src->cofactor)) return 0;
  183. dest->curve_name = src->curve_name;
  184. dest->asn1_flag = src->asn1_flag;
  185. dest->asn1_form = src->asn1_form;
  186. if (src->seed)
  187. {
  188. if (dest->seed)
  189. OPENSSL_free(dest->seed);
  190. dest->seed = OPENSSL_malloc(src->seed_len);
  191. if (dest->seed == NULL)
  192. return 0;
  193. if (!memcpy(dest->seed, src->seed, src->seed_len))
  194. return 0;
  195. dest->seed_len = src->seed_len;
  196. }
  197. else
  198. {
  199. if (dest->seed)
  200. OPENSSL_free(dest->seed);
  201. dest->seed = NULL;
  202. dest->seed_len = 0;
  203. }
  204. return dest->meth->group_copy(dest, src);
  205. }
  206. EC_GROUP *EC_GROUP_dup(const EC_GROUP *a)
  207. {
  208. EC_GROUP *t = NULL;
  209. int ok = 0;
  210. if (a == NULL) return NULL;
  211. if ((t = EC_GROUP_new(a->meth)) == NULL) return(NULL);
  212. if (!EC_GROUP_copy(t, a)) goto err;
  213. ok = 1;
  214. err:
  215. if (!ok)
  216. {
  217. if (t) EC_GROUP_free(t);
  218. return NULL;
  219. }
  220. else return t;
  221. }
  222. const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group)
  223. {
  224. return group->meth;
  225. }
  226. int EC_METHOD_get_field_type(const EC_METHOD *meth)
  227. {
  228. return meth->field_type;
  229. }
  230. int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor)
  231. {
  232. if (generator == NULL)
  233. {
  234. ECerr(EC_F_EC_GROUP_SET_GENERATOR, ERR_R_PASSED_NULL_PARAMETER);
  235. return 0 ;
  236. }
  237. if (group->generator == NULL)
  238. {
  239. group->generator = EC_POINT_new(group);
  240. if (group->generator == NULL) return 0;
  241. }
  242. if (!EC_POINT_copy(group->generator, generator)) return 0;
  243. if (order != NULL)
  244. { if (!BN_copy(&group->order, order)) return 0; }
  245. else
  246. BN_zero(&group->order);
  247. if (cofactor != NULL)
  248. { if (!BN_copy(&group->cofactor, cofactor)) return 0; }
  249. else
  250. BN_zero(&group->cofactor);
  251. return 1;
  252. }
  253. EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group)
  254. {
  255. return group->generator;
  256. }
  257. int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx)
  258. {
  259. if (!BN_copy(order, &group->order))
  260. return 0;
  261. return !BN_is_zero(order);
  262. }
  263. int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx)
  264. {
  265. if (!BN_copy(cofactor, &group->cofactor))
  266. return 0;
  267. return !BN_is_zero(&group->cofactor);
  268. }
  269. void EC_GROUP_set_nid(EC_GROUP *group, int nid)
  270. {
  271. group->curve_name = nid;
  272. }
  273. int EC_GROUP_get_nid(const EC_GROUP *group)
  274. {
  275. return group->curve_name;
  276. }
  277. void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag)
  278. {
  279. group->asn1_flag = flag;
  280. }
  281. int EC_GROUP_get_asn1_flag(const EC_GROUP *group)
  282. {
  283. return group->asn1_flag;
  284. }
  285. void EC_GROUP_set_point_conversion_form(EC_GROUP *group,
  286. point_conversion_form_t form)
  287. {
  288. group->asn1_form = form;
  289. }
  290. point_conversion_form_t EC_GROUP_get_point_conversion_form(const EC_GROUP *group)
  291. {
  292. return group->asn1_form;
  293. }
  294. size_t EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *p, size_t len)
  295. {
  296. if (group->seed)
  297. {
  298. OPENSSL_free(group->seed);
  299. group->seed = NULL;
  300. group->seed_len = 0;
  301. }
  302. if (!len || !p)
  303. return 1;
  304. if ((group->seed = OPENSSL_malloc(len)) == NULL)
  305. return 0;
  306. memcpy(group->seed, p, len);
  307. group->seed_len = len;
  308. return len;
  309. }
  310. unsigned char *EC_GROUP_get0_seed(const EC_GROUP *group)
  311. {
  312. return group->seed;
  313. }
  314. size_t EC_GROUP_get_seed_len(const EC_GROUP *group)
  315. {
  316. return group->seed_len;
  317. }
  318. int EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
  319. {
  320. if (group->meth->group_set_curve == 0)
  321. {
  322. ECerr(EC_F_EC_GROUP_SET_CURVE_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  323. return 0;
  324. }
  325. return group->meth->group_set_curve(group, p, a, b, ctx);
  326. }
  327. int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx)
  328. {
  329. if (group->meth->group_get_curve == 0)
  330. {
  331. ECerr(EC_F_EC_GROUP_GET_CURVE_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  332. return 0;
  333. }
  334. return group->meth->group_get_curve(group, p, a, b, ctx);
  335. }
  336. int EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
  337. {
  338. if (group->meth->group_set_curve == 0)
  339. {
  340. ECerr(EC_F_EC_GROUP_SET_CURVE_GF2M, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  341. return 0;
  342. }
  343. return group->meth->group_set_curve(group, p, a, b, ctx);
  344. }
  345. int EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx)
  346. {
  347. if (group->meth->group_get_curve == 0)
  348. {
  349. ECerr(EC_F_EC_GROUP_GET_CURVE_GF2M, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  350. return 0;
  351. }
  352. return group->meth->group_get_curve(group, p, a, b, ctx);
  353. }
  354. int EC_GROUP_get_degree(const EC_GROUP *group)
  355. {
  356. if (group->meth->group_get_degree == 0)
  357. {
  358. ECerr(EC_F_EC_GROUP_GET_DEGREE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  359. return 0;
  360. }
  361. return group->meth->group_get_degree(group);
  362. }
  363. int EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx)
  364. {
  365. if (group->meth->group_check_discriminant == 0)
  366. {
  367. ECerr(EC_F_EC_GROUP_CHECK_DISCRIMINANT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  368. return 0;
  369. }
  370. return group->meth->group_check_discriminant(group, ctx);
  371. }
  372. int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx)
  373. {
  374. int r = 0;
  375. BIGNUM *a1, *a2, *a3, *b1, *b2, *b3;
  376. BN_CTX *ctx_new = NULL;
  377. /* compare the field types*/
  378. if (EC_METHOD_get_field_type(EC_GROUP_method_of(a)) !=
  379. EC_METHOD_get_field_type(EC_GROUP_method_of(b)))
  380. return 1;
  381. /* compare the curve name (if present) */
  382. if (EC_GROUP_get_nid(a) && EC_GROUP_get_nid(b) &&
  383. EC_GROUP_get_nid(a) == EC_GROUP_get_nid(b))
  384. return 0;
  385. if (!ctx)
  386. ctx_new = ctx = BN_CTX_new();
  387. if (!ctx)
  388. return -1;
  389. BN_CTX_start(ctx);
  390. a1 = BN_CTX_get(ctx);
  391. a2 = BN_CTX_get(ctx);
  392. a3 = BN_CTX_get(ctx);
  393. b1 = BN_CTX_get(ctx);
  394. b2 = BN_CTX_get(ctx);
  395. b3 = BN_CTX_get(ctx);
  396. if (!b3)
  397. {
  398. BN_CTX_end(ctx);
  399. if (ctx_new)
  400. BN_CTX_free(ctx);
  401. return -1;
  402. }
  403. /* XXX This approach assumes that the external representation
  404. * of curves over the same field type is the same.
  405. */
  406. if (!a->meth->group_get_curve(a, a1, a2, a3, ctx) ||
  407. !b->meth->group_get_curve(b, b1, b2, b3, ctx))
  408. r = 1;
  409. if (r || BN_cmp(a1, b2) || BN_cmp(a2, b2) || BN_cmp(a3, b3))
  410. r = 1;
  411. /* XXX EC_POINT_cmp() assumes that the methods are equal */
  412. if (r || EC_POINT_cmp(a, EC_GROUP_get0_generator(a),
  413. EC_GROUP_get0_generator(b), ctx))
  414. r = 1;
  415. if (!r)
  416. {
  417. /* compare the order and cofactor */
  418. if (!EC_GROUP_get_order(a, a1, ctx) ||
  419. !EC_GROUP_get_order(b, b1, ctx) ||
  420. !EC_GROUP_get_cofactor(a, a2, ctx) ||
  421. !EC_GROUP_get_cofactor(b, b2, ctx))
  422. {
  423. BN_CTX_end(ctx);
  424. if (ctx_new)
  425. BN_CTX_free(ctx);
  426. return -1;
  427. }
  428. if (BN_cmp(a1, b1) || BN_cmp(a2, b2))
  429. r = 1;
  430. }
  431. BN_CTX_end(ctx);
  432. if (ctx_new)
  433. BN_CTX_free(ctx);
  434. return r;
  435. }
  436. /* this has 'package' visibility */
  437. int EC_GROUP_set_extra_data(EC_GROUP *group, void *data,
  438. void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *))
  439. {
  440. EC_EXTRA_DATA *d;
  441. if (group == NULL)
  442. return 0;
  443. for (d = group->extra_data; d != NULL; d = d->next)
  444. {
  445. if (d->dup_func == dup_func && d->free_func == free_func && d->clear_free_func == clear_free_func)
  446. {
  447. ECerr(EC_F_EC_GROUP_SET_EXTRA_DATA, EC_R_SLOT_FULL);
  448. return 0;
  449. }
  450. }
  451. if (data == NULL)
  452. /* no explicit entry needed */
  453. return 1;
  454. d = OPENSSL_malloc(sizeof *d);
  455. if (d == NULL)
  456. return 0;
  457. d->data = data;
  458. d->dup_func = dup_func;
  459. d->free_func = free_func;
  460. d->clear_free_func = clear_free_func;
  461. d->next = group->extra_data;
  462. group->extra_data = d;
  463. return 1;
  464. }
  465. /* this has 'package' visibility */
  466. void *EC_GROUP_get_extra_data(const EC_GROUP *group,
  467. void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *))
  468. {
  469. EC_EXTRA_DATA *d;
  470. if (group == NULL)
  471. return NULL;
  472. for (d = group->extra_data; d != NULL; d = d->next)
  473. {
  474. if (d->dup_func == dup_func && d->free_func == free_func && d->clear_free_func == clear_free_func)
  475. return d->data;
  476. }
  477. return NULL;
  478. }
  479. /* this has 'package' visibility */
  480. void EC_GROUP_free_extra_data(EC_GROUP *group,
  481. void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *))
  482. {
  483. EC_EXTRA_DATA **p;
  484. if (group == NULL)
  485. return;
  486. for (p = &group->extra_data; *p != NULL; p = &((*p)->next))
  487. {
  488. if ((*p)->dup_func == dup_func && (*p)->free_func == free_func && (*p)->clear_free_func == clear_free_func)
  489. {
  490. EC_EXTRA_DATA *next = (*p)->next;
  491. (*p)->free_func((*p)->data);
  492. OPENSSL_free(*p);
  493. *p = next;
  494. return;
  495. }
  496. }
  497. }
  498. /* this has 'package' visibility */
  499. void EC_GROUP_clear_free_extra_data(EC_GROUP *group,
  500. void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *))
  501. {
  502. EC_EXTRA_DATA **p;
  503. if (group == NULL)
  504. return;
  505. for (p = &group->extra_data; *p != NULL; p = &((*p)->next))
  506. {
  507. if ((*p)->dup_func == dup_func && (*p)->free_func == free_func && (*p)->clear_free_func == clear_free_func)
  508. {
  509. EC_EXTRA_DATA *next = (*p)->next;
  510. (*p)->clear_free_func((*p)->data);
  511. OPENSSL_free(*p);
  512. *p = next;
  513. return;
  514. }
  515. }
  516. }
  517. /* this has 'package' visibility */
  518. void EC_GROUP_free_all_extra_data(EC_GROUP *group)
  519. {
  520. EC_EXTRA_DATA *d;
  521. if (group == NULL)
  522. return;
  523. d = group->extra_data;
  524. while (d)
  525. {
  526. EC_EXTRA_DATA *next = d->next;
  527. d->free_func(d->data);
  528. OPENSSL_free(d);
  529. d = next;
  530. }
  531. group->extra_data = NULL;
  532. }
  533. /* this has 'package' visibility */
  534. void EC_GROUP_clear_free_all_extra_data(EC_GROUP *group)
  535. {
  536. EC_EXTRA_DATA *d;
  537. if (group == NULL)
  538. return;
  539. d = group->extra_data;
  540. while (d)
  541. {
  542. EC_EXTRA_DATA *next = d->next;
  543. d->clear_free_func(d->data);
  544. OPENSSL_free(d);
  545. d = next;
  546. }
  547. group->extra_data = NULL;
  548. }
  549. /* functions for EC_POINT objects */
  550. EC_POINT *EC_POINT_new(const EC_GROUP *group)
  551. {
  552. EC_POINT *ret;
  553. if (group == NULL)
  554. {
  555. ECerr(EC_F_EC_POINT_NEW, ERR_R_PASSED_NULL_PARAMETER);
  556. return NULL;
  557. }
  558. if (group->meth->point_init == 0)
  559. {
  560. ECerr(EC_F_EC_POINT_NEW, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  561. return NULL;
  562. }
  563. ret = OPENSSL_malloc(sizeof *ret);
  564. if (ret == NULL)
  565. {
  566. ECerr(EC_F_EC_POINT_NEW, ERR_R_MALLOC_FAILURE);
  567. return NULL;
  568. }
  569. ret->meth = group->meth;
  570. if (!ret->meth->point_init(ret))
  571. {
  572. OPENSSL_free(ret);
  573. return NULL;
  574. }
  575. return ret;
  576. }
  577. void EC_POINT_free(EC_POINT *point)
  578. {
  579. if (!point) return;
  580. if (point->meth->point_finish != 0)
  581. point->meth->point_finish(point);
  582. OPENSSL_free(point);
  583. }
  584. void EC_POINT_clear_free(EC_POINT *point)
  585. {
  586. if (!point) return;
  587. if (point->meth->point_clear_finish != 0)
  588. point->meth->point_clear_finish(point);
  589. else if (point->meth != NULL && point->meth->point_finish != 0)
  590. point->meth->point_finish(point);
  591. OPENSSL_cleanse(point, sizeof *point);
  592. OPENSSL_free(point);
  593. }
  594. int EC_POINT_copy(EC_POINT *dest, const EC_POINT *src)
  595. {
  596. if (dest->meth->point_copy == 0)
  597. {
  598. ECerr(EC_F_EC_POINT_COPY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  599. return 0;
  600. }
  601. if (dest->meth != src->meth)
  602. {
  603. ECerr(EC_F_EC_POINT_COPY, EC_R_INCOMPATIBLE_OBJECTS);
  604. return 0;
  605. }
  606. if (dest == src)
  607. return 1;
  608. return dest->meth->point_copy(dest, src);
  609. }
  610. EC_POINT *EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group)
  611. {
  612. EC_POINT *t;
  613. int r;
  614. if (a == NULL) return NULL;
  615. t = EC_POINT_new(group);
  616. if (t == NULL) return(NULL);
  617. r = EC_POINT_copy(t, a);
  618. if (!r)
  619. {
  620. EC_POINT_free(t);
  621. return NULL;
  622. }
  623. else return t;
  624. }
  625. const EC_METHOD *EC_POINT_method_of(const EC_POINT *point)
  626. {
  627. return point->meth;
  628. }
  629. int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point)
  630. {
  631. if (group->meth->point_set_to_infinity == 0)
  632. {
  633. ECerr(EC_F_EC_POINT_SET_TO_INFINITY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  634. return 0;
  635. }
  636. if (group->meth != point->meth)
  637. {
  638. ECerr(EC_F_EC_POINT_SET_TO_INFINITY, EC_R_INCOMPATIBLE_OBJECTS);
  639. return 0;
  640. }
  641. return group->meth->point_set_to_infinity(group, point);
  642. }
  643. int EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
  644. const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx)
  645. {
  646. if (group->meth->point_set_Jprojective_coordinates_GFp == 0)
  647. {
  648. ECerr(EC_F_EC_POINT_SET_JPROJECTIVE_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  649. return 0;
  650. }
  651. if (group->meth != point->meth)
  652. {
  653. ECerr(EC_F_EC_POINT_SET_JPROJECTIVE_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
  654. return 0;
  655. }
  656. return group->meth->point_set_Jprojective_coordinates_GFp(group, point, x, y, z, ctx);
  657. }
  658. int EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point,
  659. BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx)
  660. {
  661. if (group->meth->point_get_Jprojective_coordinates_GFp == 0)
  662. {
  663. ECerr(EC_F_EC_POINT_GET_JPROJECTIVE_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  664. return 0;
  665. }
  666. if (group->meth != point->meth)
  667. {
  668. ECerr(EC_F_EC_POINT_GET_JPROJECTIVE_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
  669. return 0;
  670. }
  671. return group->meth->point_get_Jprojective_coordinates_GFp(group, point, x, y, z, ctx);
  672. }
  673. int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
  674. const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx)
  675. {
  676. if (group->meth->point_set_affine_coordinates == 0)
  677. {
  678. ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  679. return 0;
  680. }
  681. if (group->meth != point->meth)
  682. {
  683. ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
  684. return 0;
  685. }
  686. return group->meth->point_set_affine_coordinates(group, point, x, y, ctx);
  687. }
  688. int EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point,
  689. const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx)
  690. {
  691. if (group->meth->point_set_affine_coordinates == 0)
  692. {
  693. ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GF2M, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  694. return 0;
  695. }
  696. if (group->meth != point->meth)
  697. {
  698. ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GF2M, EC_R_INCOMPATIBLE_OBJECTS);
  699. return 0;
  700. }
  701. return group->meth->point_set_affine_coordinates(group, point, x, y, ctx);
  702. }
  703. int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point,
  704. BIGNUM *x, BIGNUM *y, BN_CTX *ctx)
  705. {
  706. if (group->meth->point_get_affine_coordinates == 0)
  707. {
  708. ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  709. return 0;
  710. }
  711. if (group->meth != point->meth)
  712. {
  713. ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
  714. return 0;
  715. }
  716. return group->meth->point_get_affine_coordinates(group, point, x, y, ctx);
  717. }
  718. int EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point,
  719. BIGNUM *x, BIGNUM *y, BN_CTX *ctx)
  720. {
  721. if (group->meth->point_get_affine_coordinates == 0)
  722. {
  723. ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GF2M, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  724. return 0;
  725. }
  726. if (group->meth != point->meth)
  727. {
  728. ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GF2M, EC_R_INCOMPATIBLE_OBJECTS);
  729. return 0;
  730. }
  731. return group->meth->point_get_affine_coordinates(group, point, x, y, ctx);
  732. }
  733. int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
  734. const BIGNUM *x, int y_bit, BN_CTX *ctx)
  735. {
  736. if (group->meth->point_set_compressed_coordinates == 0)
  737. {
  738. ECerr(EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  739. return 0;
  740. }
  741. if (group->meth != point->meth)
  742. {
  743. ECerr(EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
  744. return 0;
  745. }
  746. return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
  747. }
  748. int EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point,
  749. const BIGNUM *x, int y_bit, BN_CTX *ctx)
  750. {
  751. if (group->meth->point_set_compressed_coordinates == 0)
  752. {
  753. ECerr(EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GF2M, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  754. return 0;
  755. }
  756. if (group->meth != point->meth)
  757. {
  758. ECerr(EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GF2M, EC_R_INCOMPATIBLE_OBJECTS);
  759. return 0;
  760. }
  761. return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
  762. }
  763. size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form,
  764. unsigned char *buf, size_t len, BN_CTX *ctx)
  765. {
  766. if (group->meth->point2oct == 0)
  767. {
  768. ECerr(EC_F_EC_POINT_POINT2OCT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  769. return 0;
  770. }
  771. if (group->meth != point->meth)
  772. {
  773. ECerr(EC_F_EC_POINT_POINT2OCT, EC_R_INCOMPATIBLE_OBJECTS);
  774. return 0;
  775. }
  776. return group->meth->point2oct(group, point, form, buf, len, ctx);
  777. }
  778. int EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point,
  779. const unsigned char *buf, size_t len, BN_CTX *ctx)
  780. {
  781. if (group->meth->oct2point == 0)
  782. {
  783. ECerr(EC_F_EC_POINT_OCT2POINT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  784. return 0;
  785. }
  786. if (group->meth != point->meth)
  787. {
  788. ECerr(EC_F_EC_POINT_OCT2POINT, EC_R_INCOMPATIBLE_OBJECTS);
  789. return 0;
  790. }
  791. return group->meth->oct2point(group, point, buf, len, ctx);
  792. }
  793. int EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx)
  794. {
  795. if (group->meth->add == 0)
  796. {
  797. ECerr(EC_F_EC_POINT_ADD, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  798. return 0;
  799. }
  800. if ((group->meth != r->meth) || (r->meth != a->meth) || (a->meth != b->meth))
  801. {
  802. ECerr(EC_F_EC_POINT_ADD, EC_R_INCOMPATIBLE_OBJECTS);
  803. return 0;
  804. }
  805. return group->meth->add(group, r, a, b, ctx);
  806. }
  807. int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx)
  808. {
  809. if (group->meth->dbl == 0)
  810. {
  811. ECerr(EC_F_EC_POINT_DBL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  812. return 0;
  813. }
  814. if ((group->meth != r->meth) || (r->meth != a->meth))
  815. {
  816. ECerr(EC_F_EC_POINT_DBL, EC_R_INCOMPATIBLE_OBJECTS);
  817. return 0;
  818. }
  819. return group->meth->dbl(group, r, a, ctx);
  820. }
  821. int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx)
  822. {
  823. if (group->meth->dbl == 0)
  824. {
  825. ECerr(EC_F_EC_POINT_DBL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  826. return 0;
  827. }
  828. if (group->meth != a->meth)
  829. {
  830. ECerr(EC_F_EC_POINT_DBL, EC_R_INCOMPATIBLE_OBJECTS);
  831. return 0;
  832. }
  833. return group->meth->invert(group, a, ctx);
  834. }
  835. int EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point)
  836. {
  837. if (group->meth->is_at_infinity == 0)
  838. {
  839. ECerr(EC_F_EC_POINT_IS_AT_INFINITY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  840. return 0;
  841. }
  842. if (group->meth != point->meth)
  843. {
  844. ECerr(EC_F_EC_POINT_IS_AT_INFINITY, EC_R_INCOMPATIBLE_OBJECTS);
  845. return 0;
  846. }
  847. return group->meth->is_at_infinity(group, point);
  848. }
  849. int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx)
  850. {
  851. if (group->meth->is_on_curve == 0)
  852. {
  853. ECerr(EC_F_EC_POINT_IS_ON_CURVE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  854. return 0;
  855. }
  856. if (group->meth != point->meth)
  857. {
  858. ECerr(EC_F_EC_POINT_IS_ON_CURVE, EC_R_INCOMPATIBLE_OBJECTS);
  859. return 0;
  860. }
  861. return group->meth->is_on_curve(group, point, ctx);
  862. }
  863. int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx)
  864. {
  865. if (group->meth->point_cmp == 0)
  866. {
  867. ECerr(EC_F_EC_POINT_CMP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  868. return 0;
  869. }
  870. if ((group->meth != a->meth) || (a->meth != b->meth))
  871. {
  872. ECerr(EC_F_EC_POINT_CMP, EC_R_INCOMPATIBLE_OBJECTS);
  873. return 0;
  874. }
  875. return group->meth->point_cmp(group, a, b, ctx);
  876. }
  877. int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx)
  878. {
  879. if (group->meth->make_affine == 0)
  880. {
  881. ECerr(EC_F_EC_POINT_MAKE_AFFINE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  882. return 0;
  883. }
  884. if (group->meth != point->meth)
  885. {
  886. ECerr(EC_F_EC_POINT_MAKE_AFFINE, EC_R_INCOMPATIBLE_OBJECTS);
  887. return 0;
  888. }
  889. return group->meth->make_affine(group, point, ctx);
  890. }
  891. int EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx)
  892. {
  893. size_t i;
  894. if (group->meth->points_make_affine == 0)
  895. {
  896. ECerr(EC_F_EC_POINTS_MAKE_AFFINE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  897. return 0;
  898. }
  899. for (i = 0; i < num; i++)
  900. {
  901. if (group->meth != points[i]->meth)
  902. {
  903. ECerr(EC_F_EC_POINTS_MAKE_AFFINE, EC_R_INCOMPATIBLE_OBJECTS);
  904. return 0;
  905. }
  906. }
  907. return group->meth->points_make_affine(group, num, points, ctx);
  908. }
  909. /* Functions for point multiplication.
  910. *
  911. * If group->meth->mul is 0, we use the wNAF-based implementations in ec_mult.c;
  912. * otherwise we dispatch through methods.
  913. */
  914. int EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
  915. size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx)
  916. {
  917. if (group->meth->mul == 0)
  918. /* use default */
  919. return ec_wNAF_mul(group, r, scalar, num, points, scalars, ctx);
  920. return group->meth->mul(group, r, scalar, num, points, scalars, ctx);
  921. }
  922. int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar,
  923. const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx)
  924. {
  925. /* just a convenient interface to EC_POINTs_mul() */
  926. const EC_POINT *points[1];
  927. const BIGNUM *scalars[1];
  928. points[0] = point;
  929. scalars[0] = p_scalar;
  930. return EC_POINTs_mul(group, r, g_scalar, (point != NULL && p_scalar != NULL), points, scalars, ctx);
  931. }
  932. int EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
  933. {
  934. if (group->meth->mul == 0)
  935. /* use default */
  936. return ec_wNAF_precompute_mult(group, ctx);
  937. if (group->meth->precompute_mult != 0)
  938. return group->meth->precompute_mult(group, ctx);
  939. else
  940. return 1; /* nothing to do, so report success */
  941. }
  942. int EC_GROUP_have_precompute_mult(const EC_GROUP *group)
  943. {
  944. if (group->meth->mul == 0)
  945. /* use default */
  946. return ec_wNAF_have_precompute_mult(group);
  947. if (group->meth->have_precompute_mult != 0)
  948. return group->meth->have_precompute_mult(group);
  949. else
  950. return 0; /* cannot tell whether precomputation has been performed */
  951. }