ec.c 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903
  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. static 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. EC_GROUP *EC_GROUP_new_arbitrary(const BIGNUM *p, const BIGNUM *a,
  339. const BIGNUM *b, const BIGNUM *gx,
  340. const BIGNUM *gy, const BIGNUM *order,
  341. const BIGNUM *cofactor) {
  342. EC_GROUP *ret = NULL;
  343. BN_CTX *ctx;
  344. ctx = BN_CTX_new();
  345. if (ctx == NULL) {
  346. goto err;
  347. }
  348. ret = ec_group_new_curve_GFp(p, a, b, ctx);
  349. if (ret == NULL) {
  350. goto err;
  351. }
  352. ret->generator = EC_POINT_new(ret);
  353. if (ret->generator == NULL ||
  354. !EC_POINT_set_affine_coordinates_GFp(ret, ret->generator, gx, gy, ctx) ||
  355. !BN_copy(&ret->order, order) ||
  356. !BN_copy(&ret->cofactor, cofactor)) {
  357. goto err;
  358. }
  359. BN_CTX_free(ctx);
  360. return ret;
  361. err:
  362. EC_GROUP_free(ret);
  363. BN_CTX_free(ctx);
  364. return NULL;
  365. }
  366. static EC_GROUP *ec_group_new_from_data(unsigned built_in_index) {
  367. const struct built_in_curve *curve = &OPENSSL_built_in_curves[built_in_index];
  368. EC_GROUP *group = NULL;
  369. EC_POINT *P = NULL;
  370. BIGNUM *p = NULL, *a = NULL, *b = NULL, *x = NULL, *y = NULL;
  371. const EC_METHOD *meth;
  372. int ok = 0;
  373. BN_CTX *ctx = BN_CTX_new();
  374. if (ctx == NULL) {
  375. OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE);
  376. goto err;
  377. }
  378. const struct curve_data *data = curve->data;
  379. const unsigned param_len = data->param_len;
  380. const uint8_t *params = data->data;
  381. if (!(p = BN_bin2bn(params + 0 * param_len, param_len, NULL)) ||
  382. !(a = BN_bin2bn(params + 1 * param_len, param_len, NULL)) ||
  383. !(b = BN_bin2bn(params + 2 * param_len, param_len, NULL))) {
  384. OPENSSL_PUT_ERROR(EC, ERR_R_BN_LIB);
  385. goto err;
  386. }
  387. if (curve->method != 0) {
  388. meth = curve->method();
  389. if (((group = ec_group_new(meth)) == NULL) ||
  390. (!(group->meth->group_set_curve(group, p, a, b, ctx)))) {
  391. OPENSSL_PUT_ERROR(EC, ERR_R_EC_LIB);
  392. goto err;
  393. }
  394. } else {
  395. if ((group = ec_group_new_curve_GFp(p, a, b, ctx)) == NULL) {
  396. OPENSSL_PUT_ERROR(EC, ERR_R_EC_LIB);
  397. goto err;
  398. }
  399. }
  400. if ((P = EC_POINT_new(group)) == NULL) {
  401. OPENSSL_PUT_ERROR(EC, ERR_R_EC_LIB);
  402. goto err;
  403. }
  404. if (!(x = BN_bin2bn(params + 3 * param_len, param_len, NULL)) ||
  405. !(y = BN_bin2bn(params + 4 * param_len, param_len, NULL))) {
  406. OPENSSL_PUT_ERROR(EC, ERR_R_BN_LIB);
  407. goto err;
  408. }
  409. if (!EC_POINT_set_affine_coordinates_GFp(group, P, x, y, ctx)) {
  410. OPENSSL_PUT_ERROR(EC, ERR_R_EC_LIB);
  411. goto err;
  412. }
  413. if (!BN_bin2bn(params + 5 * param_len, param_len, &group->order) ||
  414. !BN_set_word(&group->cofactor, (BN_ULONG)data->cofactor)) {
  415. OPENSSL_PUT_ERROR(EC, ERR_R_BN_LIB);
  416. goto err;
  417. }
  418. CRYPTO_once(&built_in_curve_scalar_field_monts_once,
  419. built_in_curve_scalar_field_monts_init);
  420. if (built_in_curve_scalar_field_monts != NULL) {
  421. group->mont_data = built_in_curve_scalar_field_monts[built_in_index];
  422. }
  423. group->generator = P;
  424. P = NULL;
  425. ok = 1;
  426. err:
  427. if (!ok) {
  428. EC_GROUP_free(group);
  429. group = NULL;
  430. }
  431. EC_POINT_free(P);
  432. BN_CTX_free(ctx);
  433. BN_free(p);
  434. BN_free(a);
  435. BN_free(b);
  436. BN_free(x);
  437. BN_free(y);
  438. return group;
  439. }
  440. EC_GROUP *EC_GROUP_new_by_curve_name(int nid) {
  441. unsigned i;
  442. const struct built_in_curve *curve;
  443. EC_GROUP *ret = NULL;
  444. for (i = 0; OPENSSL_built_in_curves[i].nid != NID_undef; i++) {
  445. curve = &OPENSSL_built_in_curves[i];
  446. if (curve->nid == nid) {
  447. ret = ec_group_new_from_data(i);
  448. break;
  449. }
  450. }
  451. if (ret == NULL) {
  452. OPENSSL_PUT_ERROR(EC, EC_R_UNKNOWN_GROUP);
  453. return NULL;
  454. }
  455. ret->curve_name = nid;
  456. return ret;
  457. }
  458. void EC_GROUP_free(EC_GROUP *group) {
  459. if (!group) {
  460. return;
  461. }
  462. if (group->meth->group_finish != 0) {
  463. group->meth->group_finish(group);
  464. }
  465. EC_POINT_free(group->generator);
  466. BN_free(&group->order);
  467. BN_free(&group->cofactor);
  468. OPENSSL_free(group);
  469. }
  470. int ec_group_copy(EC_GROUP *dest, const EC_GROUP *src) {
  471. if (dest->meth->group_copy == 0) {
  472. OPENSSL_PUT_ERROR(EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  473. return 0;
  474. }
  475. if (dest->meth != src->meth) {
  476. OPENSSL_PUT_ERROR(EC, EC_R_INCOMPATIBLE_OBJECTS);
  477. return 0;
  478. }
  479. if (dest == src) {
  480. return 1;
  481. }
  482. dest->mont_data = src->mont_data;
  483. if (src->generator != NULL) {
  484. if (dest->generator == NULL) {
  485. dest->generator = EC_POINT_new(dest);
  486. if (dest->generator == NULL) {
  487. return 0;
  488. }
  489. }
  490. if (!EC_POINT_copy(dest->generator, src->generator)) {
  491. return 0;
  492. }
  493. } else {
  494. EC_POINT_clear_free(dest->generator);
  495. dest->generator = NULL;
  496. }
  497. if (!BN_copy(&dest->order, &src->order) ||
  498. !BN_copy(&dest->cofactor, &src->cofactor)) {
  499. return 0;
  500. }
  501. dest->curve_name = src->curve_name;
  502. return dest->meth->group_copy(dest, src);
  503. }
  504. const BN_MONT_CTX *ec_group_get_mont_data(const EC_GROUP *group) {
  505. return group->mont_data;
  506. }
  507. EC_GROUP *EC_GROUP_dup(const EC_GROUP *a) {
  508. EC_GROUP *t = NULL;
  509. int ok = 0;
  510. if (a == NULL) {
  511. return NULL;
  512. }
  513. t = ec_group_new(a->meth);
  514. if (t == NULL) {
  515. return NULL;
  516. }
  517. if (!ec_group_copy(t, a)) {
  518. goto err;
  519. }
  520. ok = 1;
  521. err:
  522. if (!ok) {
  523. EC_GROUP_free(t);
  524. return NULL;
  525. } else {
  526. return t;
  527. }
  528. }
  529. int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ignored) {
  530. return a->curve_name == NID_undef ||
  531. b->curve_name == NID_undef ||
  532. a->curve_name != b->curve_name;
  533. }
  534. const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group) {
  535. return group->generator;
  536. }
  537. const BIGNUM *EC_GROUP_get0_order(const EC_GROUP *group) {
  538. assert(!BN_is_zero(&group->order));
  539. return &group->order;
  540. }
  541. int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) {
  542. if (BN_copy(order, EC_GROUP_get0_order(group)) == NULL) {
  543. return 0;
  544. }
  545. return 1;
  546. }
  547. int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor,
  548. BN_CTX *ctx) {
  549. if (!BN_copy(cofactor, &group->cofactor)) {
  550. return 0;
  551. }
  552. return !BN_is_zero(&group->cofactor);
  553. }
  554. int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *out_p, BIGNUM *out_a,
  555. BIGNUM *out_b, BN_CTX *ctx) {
  556. return ec_GFp_simple_group_get_curve(group, out_p, out_a, out_b, ctx);
  557. }
  558. int EC_GROUP_get_curve_name(const EC_GROUP *group) { return group->curve_name; }
  559. unsigned EC_GROUP_get_degree(const EC_GROUP *group) {
  560. return ec_GFp_simple_group_get_degree(group);
  561. }
  562. EC_POINT *EC_POINT_new(const EC_GROUP *group) {
  563. EC_POINT *ret;
  564. if (group == NULL) {
  565. OPENSSL_PUT_ERROR(EC, ERR_R_PASSED_NULL_PARAMETER);
  566. return NULL;
  567. }
  568. ret = OPENSSL_malloc(sizeof *ret);
  569. if (ret == NULL) {
  570. OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE);
  571. return NULL;
  572. }
  573. ret->meth = group->meth;
  574. if (!ec_GFp_simple_point_init(ret)) {
  575. OPENSSL_free(ret);
  576. return NULL;
  577. }
  578. return ret;
  579. }
  580. void EC_POINT_free(EC_POINT *point) {
  581. if (!point) {
  582. return;
  583. }
  584. ec_GFp_simple_point_finish(point);
  585. OPENSSL_free(point);
  586. }
  587. void EC_POINT_clear_free(EC_POINT *point) {
  588. if (!point) {
  589. return;
  590. }
  591. ec_GFp_simple_point_clear_finish(point);
  592. OPENSSL_cleanse(point, sizeof *point);
  593. OPENSSL_free(point);
  594. }
  595. int EC_POINT_copy(EC_POINT *dest, const EC_POINT *src) {
  596. if (dest->meth != src->meth) {
  597. OPENSSL_PUT_ERROR(EC, EC_R_INCOMPATIBLE_OBJECTS);
  598. return 0;
  599. }
  600. if (dest == src) {
  601. return 1;
  602. }
  603. return ec_GFp_simple_point_copy(dest, src);
  604. }
  605. EC_POINT *EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group) {
  606. EC_POINT *t;
  607. int r;
  608. if (a == NULL) {
  609. return NULL;
  610. }
  611. t = EC_POINT_new(group);
  612. if (t == NULL) {
  613. OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE);
  614. return NULL;
  615. }
  616. r = EC_POINT_copy(t, a);
  617. if (!r) {
  618. EC_POINT_free(t);
  619. return NULL;
  620. } else {
  621. return t;
  622. }
  623. }
  624. int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) {
  625. if (group->meth != point->meth) {
  626. OPENSSL_PUT_ERROR(EC, EC_R_INCOMPATIBLE_OBJECTS);
  627. return 0;
  628. }
  629. return ec_GFp_simple_point_set_to_infinity(group, point);
  630. }
  631. int EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) {
  632. if (group->meth != point->meth) {
  633. OPENSSL_PUT_ERROR(EC, EC_R_INCOMPATIBLE_OBJECTS);
  634. return 0;
  635. }
  636. return ec_GFp_simple_is_at_infinity(group, point);
  637. }
  638. int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point,
  639. BN_CTX *ctx) {
  640. if (group->meth != point->meth) {
  641. OPENSSL_PUT_ERROR(EC, EC_R_INCOMPATIBLE_OBJECTS);
  642. return 0;
  643. }
  644. return ec_GFp_simple_is_on_curve(group, point, ctx);
  645. }
  646. int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b,
  647. BN_CTX *ctx) {
  648. if ((group->meth != a->meth) || (a->meth != b->meth)) {
  649. OPENSSL_PUT_ERROR(EC, EC_R_INCOMPATIBLE_OBJECTS);
  650. return -1;
  651. }
  652. return ec_GFp_simple_cmp(group, a, b, ctx);
  653. }
  654. int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) {
  655. if (group->meth != point->meth) {
  656. OPENSSL_PUT_ERROR(EC, EC_R_INCOMPATIBLE_OBJECTS);
  657. return 0;
  658. }
  659. return ec_GFp_simple_make_affine(group, point, ctx);
  660. }
  661. int EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[],
  662. BN_CTX *ctx) {
  663. size_t i;
  664. for (i = 0; i < num; i++) {
  665. if (group->meth != points[i]->meth) {
  666. OPENSSL_PUT_ERROR(EC, EC_R_INCOMPATIBLE_OBJECTS);
  667. return 0;
  668. }
  669. }
  670. return ec_GFp_simple_points_make_affine(group, num, points, ctx);
  671. }
  672. int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group,
  673. const EC_POINT *point, BIGNUM *x,
  674. BIGNUM *y, BN_CTX *ctx) {
  675. if (group->meth->point_get_affine_coordinates == 0) {
  676. OPENSSL_PUT_ERROR(EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  677. return 0;
  678. }
  679. if (group->meth != point->meth) {
  680. OPENSSL_PUT_ERROR(EC, EC_R_INCOMPATIBLE_OBJECTS);
  681. return 0;
  682. }
  683. return group->meth->point_get_affine_coordinates(group, point, x, y, ctx);
  684. }
  685. int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
  686. const BIGNUM *x, const BIGNUM *y,
  687. BN_CTX *ctx) {
  688. if (group->meth != point->meth) {
  689. OPENSSL_PUT_ERROR(EC, EC_R_INCOMPATIBLE_OBJECTS);
  690. return 0;
  691. }
  692. if (!ec_GFp_simple_point_set_affine_coordinates(group, point, x, y, ctx)) {
  693. return 0;
  694. }
  695. if (!EC_POINT_is_on_curve(group, point, ctx)) {
  696. OPENSSL_PUT_ERROR(EC, EC_R_POINT_IS_NOT_ON_CURVE);
  697. return 0;
  698. }
  699. return 1;
  700. }
  701. int EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
  702. const EC_POINT *b, BN_CTX *ctx) {
  703. if ((group->meth != r->meth) || (r->meth != a->meth) ||
  704. (a->meth != b->meth)) {
  705. OPENSSL_PUT_ERROR(EC, EC_R_INCOMPATIBLE_OBJECTS);
  706. return 0;
  707. }
  708. return ec_GFp_simple_add(group, r, a, b, ctx);
  709. }
  710. int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
  711. BN_CTX *ctx) {
  712. if ((group->meth != r->meth) || (r->meth != a->meth)) {
  713. OPENSSL_PUT_ERROR(EC, EC_R_INCOMPATIBLE_OBJECTS);
  714. return 0;
  715. }
  716. return ec_GFp_simple_dbl(group, r, a, ctx);
  717. }
  718. int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx) {
  719. if (group->meth != a->meth) {
  720. OPENSSL_PUT_ERROR(EC, EC_R_INCOMPATIBLE_OBJECTS);
  721. return 0;
  722. }
  723. return ec_GFp_simple_invert(group, a, ctx);
  724. }
  725. int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar,
  726. const EC_POINT *p, const BIGNUM *p_scalar, BN_CTX *ctx) {
  727. /* Previously, this function set |r| to the point at infinity if there was
  728. * nothing to multiply. But, nobody should be calling this function with
  729. * nothing to multiply in the first place. */
  730. if ((g_scalar == NULL && p_scalar == NULL) ||
  731. ((p == NULL) != (p_scalar == NULL))) {
  732. OPENSSL_PUT_ERROR(EC, ERR_R_PASSED_NULL_PARAMETER);
  733. return 0;
  734. }
  735. if (group->meth != r->meth ||
  736. (p != NULL && group->meth != p->meth)) {
  737. OPENSSL_PUT_ERROR(EC, EC_R_INCOMPATIBLE_OBJECTS);
  738. return 0;
  739. }
  740. return group->meth->mul(group, r, g_scalar, p, p_scalar, ctx);
  741. }
  742. int ec_point_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
  743. const BIGNUM *x, const BIGNUM *y,
  744. const BIGNUM *z, BN_CTX *ctx) {
  745. if (group->meth != point->meth) {
  746. OPENSSL_PUT_ERROR(EC, EC_R_INCOMPATIBLE_OBJECTS);
  747. return 0;
  748. }
  749. return ec_GFp_simple_set_Jprojective_coordinates_GFp(group, point, x, y, z,
  750. ctx);
  751. }
  752. void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag) {}
  753. const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group) {
  754. return NULL;
  755. }
  756. int EC_METHOD_get_field_type(const EC_METHOD *meth) {
  757. return NID_X9_62_prime_field;
  758. }
  759. void EC_GROUP_set_point_conversion_form(EC_GROUP *group,
  760. point_conversion_form_t form) {
  761. if (form != POINT_CONVERSION_UNCOMPRESSED) {
  762. abort();
  763. }
  764. }
  765. size_t EC_get_builtin_curves(EC_builtin_curve *out_curves,
  766. size_t max_num_curves) {
  767. unsigned num_built_in_curves;
  768. for (num_built_in_curves = 0;; num_built_in_curves++) {
  769. if (OPENSSL_built_in_curves[num_built_in_curves].nid == NID_undef) {
  770. break;
  771. }
  772. }
  773. unsigned i;
  774. for (i = 0; i < max_num_curves && i < num_built_in_curves; i++) {
  775. out_curves[i].comment = OPENSSL_built_in_curves[i].data->comment;
  776. out_curves[i].nid = OPENSSL_built_in_curves[i].nid;
  777. }
  778. return num_built_in_curves;
  779. }