Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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