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.

ec.c 27 KiB

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