@scriptc/runtime 0.0.0 → 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (416) hide show
  1. package/LICENSE +202 -0
  2. package/package.json +16 -6
  3. package/src/scr_array.c +488 -0
  4. package/src/scr_assert.c +1393 -0
  5. package/src/scr_async.c +2593 -0
  6. package/src/scr_async_dyn.c +607 -0
  7. package/src/scr_bytes.c +1425 -0
  8. package/src/scr_bytes_io.c +161 -0
  9. package/src/scr_child.c +3587 -0
  10. package/src/scr_closure.c +214 -0
  11. package/src/scr_console.c +143 -0
  12. package/src/scr_cycle.c +218 -0
  13. package/src/scr_dc.c +805 -0
  14. package/src/scr_dgram.c +1007 -0
  15. package/src/scr_dyn_handle.c +154 -0
  16. package/src/scr_dyn_invoke.c +644 -0
  17. package/src/scr_error.c +332 -0
  18. package/src/scr_events.c +714 -0
  19. package/src/scr_events_emitter.c +699 -0
  20. package/src/scr_exception.c +242 -0
  21. package/src/scr_fetch.c +1130 -0
  22. package/src/scr_fetch_curl.c +654 -0
  23. package/src/scr_http.c +3482 -0
  24. package/src/scr_http2.c +3030 -0
  25. package/src/scr_inspect.c +803 -0
  26. package/src/scr_inspect_island.c +51 -0
  27. package/src/scr_island.c +9363 -0
  28. package/src/scr_json.c +2151 -0
  29. package/src/scr_lib.c +3612 -0
  30. package/src/scr_loop_epoll.c +241 -0
  31. package/src/scr_loop_kqueue.c +121 -0
  32. package/src/scr_loop_wsapoll.c +208 -0
  33. package/src/scr_map.c +591 -0
  34. package/src/scr_net.c +3017 -0
  35. package/src/scr_net_island.c +458 -0
  36. package/src/scr_number.c +115 -0
  37. package/src/scr_object.c +25 -0
  38. package/src/scr_path.c +1266 -0
  39. package/src/scr_platform.h +119 -0
  40. package/src/scr_readline.c +287 -0
  41. package/src/scr_regex.c +1080 -0
  42. package/src/scr_runtime.h +5036 -0
  43. package/src/scr_stream.c +2877 -0
  44. package/src/scr_string.c +1176 -0
  45. package/src/scr_symbol.c +132 -0
  46. package/src/scr_test.c +662 -0
  47. package/src/scr_tls.c +1520 -0
  48. package/src/scr_union.c +105 -0
  49. package/src/scr_url.c +911 -0
  50. package/src/scr_url_internal.h +29 -0
  51. package/src/scr_url_params.c +561 -0
  52. package/src/scr_watch.c +568 -0
  53. package/src/scr_web.c +1778 -0
  54. package/src/scr_win.c +76 -0
  55. package/src/scr_zlib.c +197 -0
  56. package/src/scr_zlib_island.c +15 -0
  57. package/vendor/README.md +52 -0
  58. package/vendor/curl/COPYRIGHT +534 -0
  59. package/vendor/curl/include/curl/curl.h +3214 -0
  60. package/vendor/curl/include/curl/curlver.h +79 -0
  61. package/vendor/curl/include/curl/easy.h +125 -0
  62. package/vendor/curl/include/curl/header.h +74 -0
  63. package/vendor/curl/include/curl/mprintf.h +52 -0
  64. package/vendor/curl/include/curl/multi.h +460 -0
  65. package/vendor/curl/include/curl/options.h +70 -0
  66. package/vendor/curl/include/curl/stdcheaders.h +35 -0
  67. package/vendor/curl/include/curl/system.h +508 -0
  68. package/vendor/curl/include/curl/typecheck-gcc.h +716 -0
  69. package/vendor/curl/include/curl/urlapi.h +149 -0
  70. package/vendor/curl/include/curl/websockets.h +84 -0
  71. package/vendor/mbedtls/LICENSE +553 -0
  72. package/vendor/mbedtls/include/CMakeLists.txt +22 -0
  73. package/vendor/mbedtls/include/mbedtls/aes.h +631 -0
  74. package/vendor/mbedtls/include/mbedtls/aria.h +343 -0
  75. package/vendor/mbedtls/include/mbedtls/asn1.h +642 -0
  76. package/vendor/mbedtls/include/mbedtls/asn1write.h +390 -0
  77. package/vendor/mbedtls/include/mbedtls/base64.h +82 -0
  78. package/vendor/mbedtls/include/mbedtls/bignum.h +1088 -0
  79. package/vendor/mbedtls/include/mbedtls/block_cipher.h +76 -0
  80. package/vendor/mbedtls/include/mbedtls/build_info.h +194 -0
  81. package/vendor/mbedtls/include/mbedtls/camellia.h +305 -0
  82. package/vendor/mbedtls/include/mbedtls/ccm.h +526 -0
  83. package/vendor/mbedtls/include/mbedtls/chacha20.h +209 -0
  84. package/vendor/mbedtls/include/mbedtls/chachapoly.h +351 -0
  85. package/vendor/mbedtls/include/mbedtls/check_config.h +1149 -0
  86. package/vendor/mbedtls/include/mbedtls/cipher.h +1250 -0
  87. package/vendor/mbedtls/include/mbedtls/cmac.h +246 -0
  88. package/vendor/mbedtls/include/mbedtls/compat-2.x.h +46 -0
  89. package/vendor/mbedtls/include/mbedtls/config_adjust_legacy_crypto.h +578 -0
  90. package/vendor/mbedtls/include/mbedtls/config_adjust_legacy_from_psa.h +873 -0
  91. package/vendor/mbedtls/include/mbedtls/config_adjust_psa_from_legacy.h +359 -0
  92. package/vendor/mbedtls/include/mbedtls/config_adjust_psa_superset_legacy.h +145 -0
  93. package/vendor/mbedtls/include/mbedtls/config_adjust_ssl.h +91 -0
  94. package/vendor/mbedtls/include/mbedtls/config_adjust_x509.h +35 -0
  95. package/vendor/mbedtls/include/mbedtls/config_psa.h +61 -0
  96. package/vendor/mbedtls/include/mbedtls/constant_time.h +36 -0
  97. package/vendor/mbedtls/include/mbedtls/ctr_drbg.h +596 -0
  98. package/vendor/mbedtls/include/mbedtls/debug.h +156 -0
  99. package/vendor/mbedtls/include/mbedtls/des.h +385 -0
  100. package/vendor/mbedtls/include/mbedtls/dhm.h +972 -0
  101. package/vendor/mbedtls/include/mbedtls/ecdh.h +455 -0
  102. package/vendor/mbedtls/include/mbedtls/ecdsa.h +674 -0
  103. package/vendor/mbedtls/include/mbedtls/ecjpake.h +298 -0
  104. package/vendor/mbedtls/include/mbedtls/ecp.h +1517 -0
  105. package/vendor/mbedtls/include/mbedtls/entropy.h +274 -0
  106. package/vendor/mbedtls/include/mbedtls/error.h +201 -0
  107. package/vendor/mbedtls/include/mbedtls/gcm.h +387 -0
  108. package/vendor/mbedtls/include/mbedtls/hkdf.h +124 -0
  109. package/vendor/mbedtls/include/mbedtls/hmac_drbg.h +434 -0
  110. package/vendor/mbedtls/include/mbedtls/lms.h +440 -0
  111. package/vendor/mbedtls/include/mbedtls/mbedtls_config.h +4446 -0
  112. package/vendor/mbedtls/include/mbedtls/md.h +526 -0
  113. package/vendor/mbedtls/include/mbedtls/md5.h +190 -0
  114. package/vendor/mbedtls/include/mbedtls/memory_buffer_alloc.h +142 -0
  115. package/vendor/mbedtls/include/mbedtls/net_sockets.h +299 -0
  116. package/vendor/mbedtls/include/mbedtls/nist_kw.h +166 -0
  117. package/vendor/mbedtls/include/mbedtls/oid.h +727 -0
  118. package/vendor/mbedtls/include/mbedtls/pem.h +160 -0
  119. package/vendor/mbedtls/include/mbedtls/pk.h +1303 -0
  120. package/vendor/mbedtls/include/mbedtls/pkcs12.h +186 -0
  121. package/vendor/mbedtls/include/mbedtls/pkcs5.h +198 -0
  122. package/vendor/mbedtls/include/mbedtls/pkcs7.h +252 -0
  123. package/vendor/mbedtls/include/mbedtls/platform.h +516 -0
  124. package/vendor/mbedtls/include/mbedtls/platform_time.h +79 -0
  125. package/vendor/mbedtls/include/mbedtls/platform_util.h +247 -0
  126. package/vendor/mbedtls/include/mbedtls/poly1305.h +168 -0
  127. package/vendor/mbedtls/include/mbedtls/private_access.h +20 -0
  128. package/vendor/mbedtls/include/mbedtls/psa_util.h +207 -0
  129. package/vendor/mbedtls/include/mbedtls/ripemd160.h +136 -0
  130. package/vendor/mbedtls/include/mbedtls/rsa.h +1170 -0
  131. package/vendor/mbedtls/include/mbedtls/sha1.h +219 -0
  132. package/vendor/mbedtls/include/mbedtls/sha256.h +200 -0
  133. package/vendor/mbedtls/include/mbedtls/sha3.h +172 -0
  134. package/vendor/mbedtls/include/mbedtls/sha512.h +208 -0
  135. package/vendor/mbedtls/include/mbedtls/ssl.h +5887 -0
  136. package/vendor/mbedtls/include/mbedtls/ssl_cache.h +187 -0
  137. package/vendor/mbedtls/include/mbedtls/ssl_ciphersuites.h +482 -0
  138. package/vendor/mbedtls/include/mbedtls/ssl_cookie.h +106 -0
  139. package/vendor/mbedtls/include/mbedtls/ssl_ticket.h +199 -0
  140. package/vendor/mbedtls/include/mbedtls/threading.h +167 -0
  141. package/vendor/mbedtls/include/mbedtls/timing.h +94 -0
  142. package/vendor/mbedtls/include/mbedtls/version.h +78 -0
  143. package/vendor/mbedtls/include/mbedtls/x509.h +500 -0
  144. package/vendor/mbedtls/include/mbedtls/x509_crl.h +184 -0
  145. package/vendor/mbedtls/include/mbedtls/x509_crt.h +1208 -0
  146. package/vendor/mbedtls/include/mbedtls/x509_csr.h +382 -0
  147. package/vendor/mbedtls/include/psa/build_info.h +20 -0
  148. package/vendor/mbedtls/include/psa/crypto.h +4998 -0
  149. package/vendor/mbedtls/include/psa/crypto_adjust_auto_enabled.h +31 -0
  150. package/vendor/mbedtls/include/psa/crypto_adjust_config_dependencies.h +51 -0
  151. package/vendor/mbedtls/include/psa/crypto_adjust_config_key_pair_types.h +101 -0
  152. package/vendor/mbedtls/include/psa/crypto_adjust_config_synonyms.h +49 -0
  153. package/vendor/mbedtls/include/psa/crypto_builtin_composites.h +214 -0
  154. package/vendor/mbedtls/include/psa/crypto_builtin_key_derivation.h +118 -0
  155. package/vendor/mbedtls/include/psa/crypto_builtin_primitives.h +114 -0
  156. package/vendor/mbedtls/include/psa/crypto_compat.h +230 -0
  157. package/vendor/mbedtls/include/psa/crypto_config.h +145 -0
  158. package/vendor/mbedtls/include/psa/crypto_driver_common.h +44 -0
  159. package/vendor/mbedtls/include/psa/crypto_driver_contexts_composites.h +151 -0
  160. package/vendor/mbedtls/include/psa/crypto_driver_contexts_key_derivation.h +52 -0
  161. package/vendor/mbedtls/include/psa/crypto_driver_contexts_primitives.h +105 -0
  162. package/vendor/mbedtls/include/psa/crypto_extra.h +2145 -0
  163. package/vendor/mbedtls/include/psa/crypto_legacy.h +88 -0
  164. package/vendor/mbedtls/include/psa/crypto_platform.h +102 -0
  165. package/vendor/mbedtls/include/psa/crypto_se_driver.h +1383 -0
  166. package/vendor/mbedtls/include/psa/crypto_sizes.h +1319 -0
  167. package/vendor/mbedtls/include/psa/crypto_struct.h +527 -0
  168. package/vendor/mbedtls/include/psa/crypto_types.h +508 -0
  169. package/vendor/mbedtls/include/psa/crypto_values.h +2782 -0
  170. package/vendor/mbedtls/library/aes.c +2294 -0
  171. package/vendor/mbedtls/library/aesce.c +624 -0
  172. package/vendor/mbedtls/library/aesce.h +136 -0
  173. package/vendor/mbedtls/library/aesni.c +846 -0
  174. package/vendor/mbedtls/library/aesni.h +162 -0
  175. package/vendor/mbedtls/library/alignment.h +704 -0
  176. package/vendor/mbedtls/library/aria.c +969 -0
  177. package/vendor/mbedtls/library/asn1parse.c +468 -0
  178. package/vendor/mbedtls/library/asn1write.c +440 -0
  179. package/vendor/mbedtls/library/base64.c +322 -0
  180. package/vendor/mbedtls/library/base64_internal.h +45 -0
  181. package/vendor/mbedtls/library/bignum.c +2583 -0
  182. package/vendor/mbedtls/library/bignum_core.c +1240 -0
  183. package/vendor/mbedtls/library/bignum_core.h +872 -0
  184. package/vendor/mbedtls/library/bignum_core_invasive.h +38 -0
  185. package/vendor/mbedtls/library/bignum_internal.h +122 -0
  186. package/vendor/mbedtls/library/bignum_mod.c +394 -0
  187. package/vendor/mbedtls/library/bignum_mod.h +452 -0
  188. package/vendor/mbedtls/library/bignum_mod_raw.c +276 -0
  189. package/vendor/mbedtls/library/bignum_mod_raw.h +416 -0
  190. package/vendor/mbedtls/library/bignum_mod_raw_invasive.h +34 -0
  191. package/vendor/mbedtls/library/block_cipher.c +207 -0
  192. package/vendor/mbedtls/library/block_cipher_internal.h +99 -0
  193. package/vendor/mbedtls/library/bn_mul.h +1094 -0
  194. package/vendor/mbedtls/library/camellia.c +1058 -0
  195. package/vendor/mbedtls/library/ccm.c +777 -0
  196. package/vendor/mbedtls/library/chacha20.c +563 -0
  197. package/vendor/mbedtls/library/chacha20_internal.h +23 -0
  198. package/vendor/mbedtls/library/chachapoly.c +487 -0
  199. package/vendor/mbedtls/library/check_crypto_config.h +136 -0
  200. package/vendor/mbedtls/library/cipher.c +1712 -0
  201. package/vendor/mbedtls/library/cipher_invasive.h +28 -0
  202. package/vendor/mbedtls/library/cipher_wrap.c +2482 -0
  203. package/vendor/mbedtls/library/cipher_wrap.h +178 -0
  204. package/vendor/mbedtls/library/cmac.c +1067 -0
  205. package/vendor/mbedtls/library/common.h +487 -0
  206. package/vendor/mbedtls/library/constant_time.c +247 -0
  207. package/vendor/mbedtls/library/constant_time_impl.h +541 -0
  208. package/vendor/mbedtls/library/constant_time_internal.h +579 -0
  209. package/vendor/mbedtls/library/ctr.h +35 -0
  210. package/vendor/mbedtls/library/ctr_drbg.c +1016 -0
  211. package/vendor/mbedtls/library/debug.c +475 -0
  212. package/vendor/mbedtls/library/debug_internal.h +185 -0
  213. package/vendor/mbedtls/library/des.c +1042 -0
  214. package/vendor/mbedtls/library/dhm.c +700 -0
  215. package/vendor/mbedtls/library/ecdh.c +696 -0
  216. package/vendor/mbedtls/library/ecdsa.c +858 -0
  217. package/vendor/mbedtls/library/ecjpake.c +1216 -0
  218. package/vendor/mbedtls/library/ecp.c +3674 -0
  219. package/vendor/mbedtls/library/ecp_curves.c +6125 -0
  220. package/vendor/mbedtls/library/ecp_curves_new.c +9 -0
  221. package/vendor/mbedtls/library/ecp_internal_alt.h +287 -0
  222. package/vendor/mbedtls/library/ecp_invasive.h +305 -0
  223. package/vendor/mbedtls/library/entropy.c +680 -0
  224. package/vendor/mbedtls/library/entropy_poll.c +233 -0
  225. package/vendor/mbedtls/library/entropy_poll.h +64 -0
  226. package/vendor/mbedtls/library/error.c +878 -0
  227. package/vendor/mbedtls/library/gcm.c +1330 -0
  228. package/vendor/mbedtls/library/hkdf.c +161 -0
  229. package/vendor/mbedtls/library/hmac_drbg.c +633 -0
  230. package/vendor/mbedtls/library/lmots.c +789 -0
  231. package/vendor/mbedtls/library/lmots.h +288 -0
  232. package/vendor/mbedtls/library/lms.c +778 -0
  233. package/vendor/mbedtls/library/md.c +1108 -0
  234. package/vendor/mbedtls/library/md5.c +426 -0
  235. package/vendor/mbedtls/library/md_psa.h +26 -0
  236. package/vendor/mbedtls/library/md_wrap.h +46 -0
  237. package/vendor/mbedtls/library/memory_buffer_alloc.c +751 -0
  238. package/vendor/mbedtls/library/mps_common.h +181 -0
  239. package/vendor/mbedtls/library/mps_error.h +89 -0
  240. package/vendor/mbedtls/library/mps_reader.c +538 -0
  241. package/vendor/mbedtls/library/mps_reader.h +366 -0
  242. package/vendor/mbedtls/library/mps_trace.c +112 -0
  243. package/vendor/mbedtls/library/mps_trace.h +154 -0
  244. package/vendor/mbedtls/library/net_sockets.c +694 -0
  245. package/vendor/mbedtls/library/nist_kw.c +729 -0
  246. package/vendor/mbedtls/library/oid.c +1166 -0
  247. package/vendor/mbedtls/library/padlock.c +157 -0
  248. package/vendor/mbedtls/library/padlock.h +111 -0
  249. package/vendor/mbedtls/library/pem.c +554 -0
  250. package/vendor/mbedtls/library/pk.c +1602 -0
  251. package/vendor/mbedtls/library/pk_ecc.c +261 -0
  252. package/vendor/mbedtls/library/pk_internal.h +241 -0
  253. package/vendor/mbedtls/library/pk_wrap.c +1618 -0
  254. package/vendor/mbedtls/library/pk_wrap.h +138 -0
  255. package/vendor/mbedtls/library/pkcs12.c +437 -0
  256. package/vendor/mbedtls/library/pkcs5.c +500 -0
  257. package/vendor/mbedtls/library/pkcs7.c +787 -0
  258. package/vendor/mbedtls/library/pkparse.c +1392 -0
  259. package/vendor/mbedtls/library/pkwrite.c +631 -0
  260. package/vendor/mbedtls/library/pkwrite.h +121 -0
  261. package/vendor/mbedtls/library/platform.c +402 -0
  262. package/vendor/mbedtls/library/platform_util.c +258 -0
  263. package/vendor/mbedtls/library/poly1305.c +492 -0
  264. package/vendor/mbedtls/library/psa_crypto.c +9532 -0
  265. package/vendor/mbedtls/library/psa_crypto_aead.c +646 -0
  266. package/vendor/mbedtls/library/psa_crypto_aead.h +499 -0
  267. package/vendor/mbedtls/library/psa_crypto_cipher.c +747 -0
  268. package/vendor/mbedtls/library/psa_crypto_cipher.h +316 -0
  269. package/vendor/mbedtls/library/psa_crypto_client.c +22 -0
  270. package/vendor/mbedtls/library/psa_crypto_core.h +983 -0
  271. package/vendor/mbedtls/library/psa_crypto_core_common.h +52 -0
  272. package/vendor/mbedtls/library/psa_crypto_driver_wrappers.h +2896 -0
  273. package/vendor/mbedtls/library/psa_crypto_driver_wrappers_no_static.c +256 -0
  274. package/vendor/mbedtls/library/psa_crypto_driver_wrappers_no_static.h +31 -0
  275. package/vendor/mbedtls/library/psa_crypto_ecp.c +594 -0
  276. package/vendor/mbedtls/library/psa_crypto_ecp.h +267 -0
  277. package/vendor/mbedtls/library/psa_crypto_ffdh.c +361 -0
  278. package/vendor/mbedtls/library/psa_crypto_ffdh.h +131 -0
  279. package/vendor/mbedtls/library/psa_crypto_hash.c +470 -0
  280. package/vendor/mbedtls/library/psa_crypto_hash.h +211 -0
  281. package/vendor/mbedtls/library/psa_crypto_invasive.h +92 -0
  282. package/vendor/mbedtls/library/psa_crypto_its.h +131 -0
  283. package/vendor/mbedtls/library/psa_crypto_mac.c +505 -0
  284. package/vendor/mbedtls/library/psa_crypto_mac.h +264 -0
  285. package/vendor/mbedtls/library/psa_crypto_pake.c +571 -0
  286. package/vendor/mbedtls/library/psa_crypto_pake.h +159 -0
  287. package/vendor/mbedtls/library/psa_crypto_random.c +181 -0
  288. package/vendor/mbedtls/library/psa_crypto_random.h +72 -0
  289. package/vendor/mbedtls/library/psa_crypto_random_impl.h +200 -0
  290. package/vendor/mbedtls/library/psa_crypto_rsa.c +714 -0
  291. package/vendor/mbedtls/library/psa_crypto_rsa.h +321 -0
  292. package/vendor/mbedtls/library/psa_crypto_se.c +373 -0
  293. package/vendor/mbedtls/library/psa_crypto_se.h +192 -0
  294. package/vendor/mbedtls/library/psa_crypto_slot_management.c +1137 -0
  295. package/vendor/mbedtls/library/psa_crypto_slot_management.h +344 -0
  296. package/vendor/mbedtls/library/psa_crypto_storage.c +481 -0
  297. package/vendor/mbedtls/library/psa_crypto_storage.h +392 -0
  298. package/vendor/mbedtls/library/psa_its_file.c +254 -0
  299. package/vendor/mbedtls/library/psa_util.c +614 -0
  300. package/vendor/mbedtls/library/psa_util_internal.h +100 -0
  301. package/vendor/mbedtls/library/ripemd160.c +490 -0
  302. package/vendor/mbedtls/library/rsa.c +3121 -0
  303. package/vendor/mbedtls/library/rsa_alt_helpers.c +455 -0
  304. package/vendor/mbedtls/library/rsa_alt_helpers.h +209 -0
  305. package/vendor/mbedtls/library/rsa_internal.h +188 -0
  306. package/vendor/mbedtls/library/sha1.c +480 -0
  307. package/vendor/mbedtls/library/sha256.c +983 -0
  308. package/vendor/mbedtls/library/sha3.c +721 -0
  309. package/vendor/mbedtls/library/sha512.c +1115 -0
  310. package/vendor/mbedtls/library/ssl_cache.c +410 -0
  311. package/vendor/mbedtls/library/ssl_ciphersuites.c +2050 -0
  312. package/vendor/mbedtls/library/ssl_ciphersuites_internal.h +154 -0
  313. package/vendor/mbedtls/library/ssl_client.c +1023 -0
  314. package/vendor/mbedtls/library/ssl_client.h +22 -0
  315. package/vendor/mbedtls/library/ssl_cookie.c +384 -0
  316. package/vendor/mbedtls/library/ssl_debug_helpers.h +85 -0
  317. package/vendor/mbedtls/library/ssl_debug_helpers_generated.c +251 -0
  318. package/vendor/mbedtls/library/ssl_misc.h +3198 -0
  319. package/vendor/mbedtls/library/ssl_msg.c +6619 -0
  320. package/vendor/mbedtls/library/ssl_ticket.c +556 -0
  321. package/vendor/mbedtls/library/ssl_tls.c +10234 -0
  322. package/vendor/mbedtls/library/ssl_tls12_client.c +3688 -0
  323. package/vendor/mbedtls/library/ssl_tls12_server.c +4311 -0
  324. package/vendor/mbedtls/library/ssl_tls13_client.c +3208 -0
  325. package/vendor/mbedtls/library/ssl_tls13_generic.c +1793 -0
  326. package/vendor/mbedtls/library/ssl_tls13_invasive.h +23 -0
  327. package/vendor/mbedtls/library/ssl_tls13_keys.c +1918 -0
  328. package/vendor/mbedtls/library/ssl_tls13_keys.h +668 -0
  329. package/vendor/mbedtls/library/ssl_tls13_server.c +3624 -0
  330. package/vendor/mbedtls/library/threading.c +193 -0
  331. package/vendor/mbedtls/library/threading_internal.h +28 -0
  332. package/vendor/mbedtls/library/timing.c +152 -0
  333. package/vendor/mbedtls/library/version.c +32 -0
  334. package/vendor/mbedtls/library/version_features.c +856 -0
  335. package/vendor/mbedtls/library/x509.c +1776 -0
  336. package/vendor/mbedtls/library/x509_create.c +570 -0
  337. package/vendor/mbedtls/library/x509_crl.c +708 -0
  338. package/vendor/mbedtls/library/x509_crt.c +3311 -0
  339. package/vendor/mbedtls/library/x509_csr.c +648 -0
  340. package/vendor/mbedtls/library/x509_internal.h +101 -0
  341. package/vendor/mbedtls/library/x509write.c +174 -0
  342. package/vendor/mbedtls/library/x509write_crt.c +688 -0
  343. package/vendor/mbedtls/library/x509write_csr.c +336 -0
  344. package/vendor/quickjs-ng/CMakeLists.txt +566 -0
  345. package/vendor/quickjs-ng/LICENSE +24 -0
  346. package/vendor/quickjs-ng/README.md +24 -0
  347. package/vendor/quickjs-ng/api-test.c +1195 -0
  348. package/vendor/quickjs-ng/builtin-array-fromasync.h +119 -0
  349. package/vendor/quickjs-ng/builtin-iterator-zip-keyed.h +332 -0
  350. package/vendor/quickjs-ng/builtin-iterator-zip.h +337 -0
  351. package/vendor/quickjs-ng/cutils.h +1998 -0
  352. package/vendor/quickjs-ng/dtoa.c +1619 -0
  353. package/vendor/quickjs-ng/dtoa.h +87 -0
  354. package/vendor/quickjs-ng/gen/function_source.c +81 -0
  355. package/vendor/quickjs-ng/gen/hello.c +53 -0
  356. package/vendor/quickjs-ng/gen/hello_module.c +106 -0
  357. package/vendor/quickjs-ng/gen/repl.c +3036 -0
  358. package/vendor/quickjs-ng/gen/standalone.c +323 -0
  359. package/vendor/quickjs-ng/gen/test_fib.c +81 -0
  360. package/vendor/quickjs-ng/libregexp-opcode.h +73 -0
  361. package/vendor/quickjs-ng/libregexp.c +3474 -0
  362. package/vendor/quickjs-ng/libregexp.h +101 -0
  363. package/vendor/quickjs-ng/libunicode-table.h +5173 -0
  364. package/vendor/quickjs-ng/libunicode.c +2069 -0
  365. package/vendor/quickjs-ng/libunicode.h +172 -0
  366. package/vendor/quickjs-ng/list.h +107 -0
  367. package/vendor/quickjs-ng/lre-test.c +52 -0
  368. package/vendor/quickjs-ng/qjs.c +762 -0
  369. package/vendor/quickjs-ng/qjsc.c +673 -0
  370. package/vendor/quickjs-ng/quickjs-atom.h +280 -0
  371. package/vendor/quickjs-ng/quickjs-c-atomics.h +54 -0
  372. package/vendor/quickjs-ng/quickjs-libc.c +5037 -0
  373. package/vendor/quickjs-ng/quickjs-libc.h +87 -0
  374. package/vendor/quickjs-ng/quickjs-opcode.h +377 -0
  375. package/vendor/quickjs-ng/quickjs.c +64041 -0
  376. package/vendor/quickjs-ng/quickjs.h +1447 -0
  377. package/vendor/quickjs-ng/run-test262.c +2374 -0
  378. package/vendor/quickjs-ng/unicode_gen.c +3121 -0
  379. package/vendor/quickjs-ng/unicode_gen_def.h +310 -0
  380. package/vendor/ryu/LICENSE-Boost +23 -0
  381. package/vendor/ryu/common.h +114 -0
  382. package/vendor/ryu/d2s.c +509 -0
  383. package/vendor/ryu/d2s_full_table.h +367 -0
  384. package/vendor/ryu/d2s_intrinsics.h +357 -0
  385. package/vendor/ryu/d2s_small_table.h +186 -0
  386. package/vendor/ryu/digit_table.h +35 -0
  387. package/vendor/ryu/ryu.h +46 -0
  388. package/vendor/zlib/LICENSE +22 -0
  389. package/vendor/zlib/adler32.c +164 -0
  390. package/vendor/zlib/compress.c +75 -0
  391. package/vendor/zlib/crc32.c +1049 -0
  392. package/vendor/zlib/crc32.h +9446 -0
  393. package/vendor/zlib/deflate.c +2139 -0
  394. package/vendor/zlib/deflate.h +377 -0
  395. package/vendor/zlib/gzclose.c +23 -0
  396. package/vendor/zlib/gzguts.h +214 -0
  397. package/vendor/zlib/gzlib.c +582 -0
  398. package/vendor/zlib/gzread.c +602 -0
  399. package/vendor/zlib/gzwrite.c +631 -0
  400. package/vendor/zlib/infback.c +628 -0
  401. package/vendor/zlib/inffast.c +320 -0
  402. package/vendor/zlib/inffast.h +11 -0
  403. package/vendor/zlib/inffixed.h +94 -0
  404. package/vendor/zlib/inflate.c +1526 -0
  405. package/vendor/zlib/inflate.h +126 -0
  406. package/vendor/zlib/inftrees.c +299 -0
  407. package/vendor/zlib/inftrees.h +62 -0
  408. package/vendor/zlib/trees.c +1117 -0
  409. package/vendor/zlib/trees.h +128 -0
  410. package/vendor/zlib/uncompr.c +85 -0
  411. package/vendor/zlib/zconf.h +543 -0
  412. package/vendor/zlib/zlib.h +1938 -0
  413. package/vendor/zlib/zutil.c +299 -0
  414. package/vendor/zlib/zutil.h +254 -0
  415. package/README.md +0 -3
  416. package/index.js +0 -2
@@ -0,0 +1,1517 @@
1
+ /**
2
+ * \file ecp.h
3
+ *
4
+ * \brief This file provides an API for Elliptic Curves over GF(P) (ECP).
5
+ *
6
+ * The use of ECP in cryptography and TLS is defined in
7
+ * <em>Standards for Efficient Cryptography Group (SECG): SEC1
8
+ * Elliptic Curve Cryptography</em> and
9
+ * <em>RFC-4492: Elliptic Curve Cryptography (ECC) Cipher Suites
10
+ * for Transport Layer Security (TLS)</em>.
11
+ *
12
+ * <em>RFC-2409: The Internet Key Exchange (IKE)</em> defines ECP
13
+ * group types.
14
+ *
15
+ */
16
+
17
+ /*
18
+ * Copyright The Mbed TLS Contributors
19
+ * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
20
+ */
21
+
22
+ #ifndef MBEDTLS_ECP_H
23
+ #define MBEDTLS_ECP_H
24
+ #include "mbedtls/private_access.h"
25
+
26
+ #include "mbedtls/build_info.h"
27
+ #include "mbedtls/platform_util.h"
28
+
29
+ #include "mbedtls/bignum.h"
30
+
31
+ /*
32
+ * ECP error codes
33
+ */
34
+ /** Bad input parameters to function. */
35
+ #define MBEDTLS_ERR_ECP_BAD_INPUT_DATA -0x4F80
36
+ /** The buffer is too small to write to. */
37
+ #define MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL -0x4F00
38
+ /** The requested feature is not available, for example, the requested curve is not supported. */
39
+ #define MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE -0x4E80
40
+ /** The signature is not valid. */
41
+ #define MBEDTLS_ERR_ECP_VERIFY_FAILED -0x4E00
42
+ /** Memory allocation failed. */
43
+ #define MBEDTLS_ERR_ECP_ALLOC_FAILED -0x4D80
44
+ /** Generation of random value, such as ephemeral key, failed. */
45
+ #define MBEDTLS_ERR_ECP_RANDOM_FAILED -0x4D00
46
+ /** Invalid private or public key. */
47
+ #define MBEDTLS_ERR_ECP_INVALID_KEY -0x4C80
48
+ /** The buffer contains a valid signature followed by more data. */
49
+ #define MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH -0x4C00
50
+ /** Operation in progress, call again with the same parameters to continue. */
51
+ #define MBEDTLS_ERR_ECP_IN_PROGRESS -0x4B00
52
+
53
+ /* Flags indicating whether to include code that is specific to certain
54
+ * types of curves. These flags are for internal library use only. */
55
+ #if defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED) || \
56
+ defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED) || \
57
+ defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED) || \
58
+ defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED) || \
59
+ defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED) || \
60
+ defined(MBEDTLS_ECP_DP_BP256R1_ENABLED) || \
61
+ defined(MBEDTLS_ECP_DP_BP384R1_ENABLED) || \
62
+ defined(MBEDTLS_ECP_DP_BP512R1_ENABLED) || \
63
+ defined(MBEDTLS_ECP_DP_SECP192K1_ENABLED) || \
64
+ defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED) || \
65
+ defined(MBEDTLS_ECP_DP_SECP256K1_ENABLED)
66
+ #define MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED
67
+ #endif
68
+ #if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED) || \
69
+ defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
70
+ #define MBEDTLS_ECP_MONTGOMERY_ENABLED
71
+ #endif
72
+
73
+ #ifdef __cplusplus
74
+ extern "C" {
75
+ #endif
76
+
77
+ /**
78
+ * Domain-parameter identifiers: curve, subgroup, and generator.
79
+ *
80
+ * \note Only curves over prime fields are supported.
81
+ *
82
+ * \warning This library does not support validation of arbitrary domain
83
+ * parameters. Therefore, only standardized domain parameters from trusted
84
+ * sources should be used. See mbedtls_ecp_group_load().
85
+ */
86
+ /* Note: when adding a new curve:
87
+ * - Add it at the end of this enum, otherwise you'll break the ABI by
88
+ * changing the numerical value for existing curves.
89
+ * - Increment MBEDTLS_ECP_DP_MAX below if needed.
90
+ * - Update the calculation of MBEDTLS_ECP_MAX_BITS below.
91
+ * - Add the corresponding MBEDTLS_ECP_DP_xxx_ENABLED macro definition to
92
+ * mbedtls_config.h.
93
+ * - List the curve as a dependency of MBEDTLS_ECP_C and
94
+ * MBEDTLS_ECDSA_C if supported in check_config.h.
95
+ * - Add the curve to the appropriate curve type macro
96
+ * MBEDTLS_ECP_yyy_ENABLED above.
97
+ * - Add the necessary definitions to ecp_curves.c.
98
+ * - Add the curve to the ecp_supported_curves array in ecp.c.
99
+ * - Add the curve to applicable profiles in x509_crt.c.
100
+ * - Add the curve to applicable presets in ssl_tls.c.
101
+ */
102
+ typedef enum {
103
+ MBEDTLS_ECP_DP_NONE = 0, /*!< Curve not defined. */
104
+ MBEDTLS_ECP_DP_SECP192R1, /*!< Domain parameters for the 192-bit curve defined by FIPS 186-4 and SEC1. */
105
+ MBEDTLS_ECP_DP_SECP224R1, /*!< Domain parameters for the 224-bit curve defined by FIPS 186-4 and SEC1. */
106
+ MBEDTLS_ECP_DP_SECP256R1, /*!< Domain parameters for the 256-bit curve defined by FIPS 186-4 and SEC1. */
107
+ MBEDTLS_ECP_DP_SECP384R1, /*!< Domain parameters for the 384-bit curve defined by FIPS 186-4 and SEC1. */
108
+ MBEDTLS_ECP_DP_SECP521R1, /*!< Domain parameters for the 521-bit curve defined by FIPS 186-4 and SEC1. */
109
+ MBEDTLS_ECP_DP_BP256R1, /*!< Domain parameters for 256-bit Brainpool curve. */
110
+ MBEDTLS_ECP_DP_BP384R1, /*!< Domain parameters for 384-bit Brainpool curve. */
111
+ MBEDTLS_ECP_DP_BP512R1, /*!< Domain parameters for 512-bit Brainpool curve. */
112
+ MBEDTLS_ECP_DP_CURVE25519, /*!< Domain parameters for Curve25519. */
113
+ MBEDTLS_ECP_DP_SECP192K1, /*!< Domain parameters for 192-bit "Koblitz" curve. */
114
+ MBEDTLS_ECP_DP_SECP224K1, /*!< Domain parameters for 224-bit "Koblitz" curve. */
115
+ MBEDTLS_ECP_DP_SECP256K1, /*!< Domain parameters for 256-bit "Koblitz" curve. */
116
+ MBEDTLS_ECP_DP_CURVE448, /*!< Domain parameters for Curve448. */
117
+ } mbedtls_ecp_group_id;
118
+
119
+ /**
120
+ * The number of supported curves, plus one for #MBEDTLS_ECP_DP_NONE.
121
+ */
122
+ #define MBEDTLS_ECP_DP_MAX 14
123
+
124
+ /*
125
+ * Curve types
126
+ */
127
+ typedef enum {
128
+ MBEDTLS_ECP_TYPE_NONE = 0,
129
+ MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS, /* y^2 = x^3 + a x + b */
130
+ MBEDTLS_ECP_TYPE_MONTGOMERY, /* y^2 = x^3 + a x^2 + x */
131
+ } mbedtls_ecp_curve_type;
132
+
133
+ /**
134
+ * Curve information, for use by other modules.
135
+ *
136
+ * The fields of this structure are part of the public API and can be
137
+ * accessed directly by applications. Future versions of the library may
138
+ * add extra fields or reorder existing fields.
139
+ */
140
+ typedef struct mbedtls_ecp_curve_info {
141
+ mbedtls_ecp_group_id grp_id; /*!< An internal identifier. */
142
+ uint16_t tls_id; /*!< The TLS NamedCurve identifier. */
143
+ uint16_t bit_size; /*!< The curve size in bits. */
144
+ const char *name; /*!< A human-friendly name. */
145
+ } mbedtls_ecp_curve_info;
146
+
147
+ /**
148
+ * \brief The ECP point structure, in Jacobian coordinates.
149
+ *
150
+ * \note All functions expect and return points satisfying
151
+ * the following condition: <code>Z == 0</code> or
152
+ * <code>Z == 1</code>. Other values of \p Z are
153
+ * used only by internal functions.
154
+ * The point is zero, or "at infinity", if <code>Z == 0</code>.
155
+ * Otherwise, \p X and \p Y are its standard (affine)
156
+ * coordinates.
157
+ */
158
+ typedef struct mbedtls_ecp_point {
159
+ mbedtls_mpi MBEDTLS_PRIVATE(X); /*!< The X coordinate of the ECP point. */
160
+ mbedtls_mpi MBEDTLS_PRIVATE(Y); /*!< The Y coordinate of the ECP point. */
161
+ mbedtls_mpi MBEDTLS_PRIVATE(Z); /*!< The Z coordinate of the ECP point. */
162
+ }
163
+ mbedtls_ecp_point;
164
+
165
+ #if !defined(MBEDTLS_ECP_ALT)
166
+ /*
167
+ * default Mbed TLS elliptic curve arithmetic implementation
168
+ *
169
+ * (in case MBEDTLS_ECP_ALT is defined then the developer has to provide an
170
+ * alternative implementation for the whole module and it will replace this
171
+ * one.)
172
+ */
173
+
174
+ /**
175
+ * \brief The ECP group structure.
176
+ *
177
+ * We consider two types of curve equations:
178
+ * <ul><li>Short Weierstrass: <code>y^2 = x^3 + A x + B mod P</code>
179
+ * (SEC1 + RFC-4492)</li>
180
+ * <li>Montgomery: <code>y^2 = x^3 + A x^2 + x mod P</code> (Curve25519,
181
+ * Curve448)</li></ul>
182
+ * In both cases, the generator (\p G) for a prime-order subgroup is fixed.
183
+ *
184
+ * For Short Weierstrass, this subgroup is the whole curve, and its
185
+ * cardinality is denoted by \p N. Our code requires that \p N is an
186
+ * odd prime as mbedtls_ecp_mul() requires an odd number, and
187
+ * mbedtls_ecdsa_sign() requires that it is prime for blinding purposes.
188
+ *
189
+ * The default implementation only initializes \p A without setting it to the
190
+ * authentic value for curves with <code>A = -3</code>(SECP256R1, etc), in which
191
+ * case you need to load \p A by yourself when using domain parameters directly,
192
+ * for example:
193
+ * \code
194
+ * mbedtls_mpi_init(&A);
195
+ * mbedtls_ecp_group_init(&grp);
196
+ * CHECK_RETURN(mbedtls_ecp_group_load(&grp, grp_id));
197
+ * if (mbedtls_ecp_group_a_is_minus_3(&grp)) {
198
+ * CHECK_RETURN(mbedtls_mpi_sub_int(&A, &grp.P, 3));
199
+ * } else {
200
+ * CHECK_RETURN(mbedtls_mpi_copy(&A, &grp.A));
201
+ * }
202
+ *
203
+ * do_something_with_a(&A);
204
+ *
205
+ * cleanup:
206
+ * mbedtls_mpi_free(&A);
207
+ * mbedtls_ecp_group_free(&grp);
208
+ * \endcode
209
+ *
210
+ * For Montgomery curves, we do not store \p A, but <code>(A + 2) / 4</code>,
211
+ * which is the quantity used in the formulas. Additionally, \p nbits is
212
+ * not the size of \p N but the required size for private keys.
213
+ *
214
+ * If \p modp is NULL, reduction modulo \p P is done using a generic algorithm.
215
+ * Otherwise, \p modp must point to a function that takes an \p mbedtls_mpi in the
216
+ * range of [0, 2^(2*pbits)), and transforms it in-place to an integer which is
217
+ * congruent mod \p P to the given MPI, is in the range [0, 2P), and has no more
218
+ * non-zero limbs than P, so that it may be efficiently brought into the range
219
+ * [0, P) by a single constant-time conditional subtraction.
220
+ * It must return 0 on success and non-zero on failure.
221
+ */
222
+ typedef struct mbedtls_ecp_group {
223
+ mbedtls_ecp_group_id id; /*!< An internal group identifier. */
224
+ mbedtls_mpi P; /*!< The prime modulus of the base field. */
225
+ mbedtls_mpi A; /*!< For Short Weierstrass: \p A in the equation. Note that
226
+ \p A is not set to the authentic value in some cases.
227
+ Refer to detailed description of ::mbedtls_ecp_group if
228
+ using domain parameters in the structure.
229
+ For Montgomery curves: <code>(A + 2) / 4</code>. */
230
+ mbedtls_mpi B; /*!< For Short Weierstrass: \p B in the equation.
231
+ For Montgomery curves: unused. */
232
+ mbedtls_ecp_point G; /*!< The generator of the subgroup used. */
233
+ mbedtls_mpi N; /*!< The order of \p G. */
234
+ size_t pbits; /*!< The number of bits in \p P.*/
235
+ size_t nbits; /*!< For Short Weierstrass: The number of bits in \p P.
236
+ For Montgomery curves: the number of bits in the
237
+ private keys. */
238
+ /* End of public fields */
239
+
240
+ unsigned int MBEDTLS_PRIVATE(h); /*!< \internal 1 if all the constants are static, 2 if only N and P are static */
241
+ int(*MBEDTLS_PRIVATE(modp))(mbedtls_mpi *); /*!< The function for fast pseudo-reduction
242
+ mod \p P (see above).*/
243
+ int(*MBEDTLS_PRIVATE(t_pre))(mbedtls_ecp_point *, void *); /*!< Unused. */
244
+ int(*MBEDTLS_PRIVATE(t_post))(mbedtls_ecp_point *, void *); /*!< Unused. */
245
+ void *MBEDTLS_PRIVATE(t_data); /*!< Unused. */
246
+ mbedtls_ecp_point *MBEDTLS_PRIVATE(T); /*!< Pre-computed points for ecp_mul_comb(). */
247
+ size_t MBEDTLS_PRIVATE(T_size); /*!< The number of dynamic allocated pre-computed points. */
248
+ }
249
+ mbedtls_ecp_group;
250
+
251
+ /**
252
+ * \name SECTION: Module settings
253
+ *
254
+ * The configuration options you can set for this module are in this section.
255
+ * Either change them in mbedtls_config.h, or define them using the compiler command line.
256
+ * \{
257
+ */
258
+
259
+ #if !defined(MBEDTLS_ECP_WINDOW_SIZE)
260
+ /*
261
+ * Maximum "window" size used for point multiplication.
262
+ * Default: a point where higher memory usage yields diminishing performance
263
+ * returns.
264
+ * Minimum value: 2. Maximum value: 7.
265
+ *
266
+ * Result is an array of at most ( 1 << ( MBEDTLS_ECP_WINDOW_SIZE - 1 ) )
267
+ * points used for point multiplication. This value is directly tied to EC
268
+ * peak memory usage, so decreasing it by one should roughly cut memory usage
269
+ * by two (if large curves are in use).
270
+ *
271
+ * Reduction in size may reduce speed, but larger curves are impacted first.
272
+ * Sample performances (in ECDHE handshakes/s, with FIXED_POINT_OPTIM = 1):
273
+ * w-size: 6 5 4 3 2
274
+ * 521 145 141 135 120 97
275
+ * 384 214 209 198 177 146
276
+ * 256 320 320 303 262 226
277
+ * 224 475 475 453 398 342
278
+ * 192 640 640 633 587 476
279
+ */
280
+ #define MBEDTLS_ECP_WINDOW_SIZE 4 /**< The maximum window size used. */
281
+ #endif /* MBEDTLS_ECP_WINDOW_SIZE */
282
+
283
+ #if !defined(MBEDTLS_ECP_FIXED_POINT_OPTIM)
284
+ /*
285
+ * Trade code size for speed on fixed-point multiplication.
286
+ *
287
+ * This speeds up repeated multiplication of the generator (that is, the
288
+ * multiplication in ECDSA signatures, and half of the multiplications in
289
+ * ECDSA verification and ECDHE) by a factor roughly 3 to 4.
290
+ *
291
+ * For each n-bit Short Weierstrass curve that is enabled, this adds 4n bytes
292
+ * of code size if n < 384 and 8n otherwise.
293
+ *
294
+ * Change this value to 0 to reduce code size.
295
+ */
296
+ #define MBEDTLS_ECP_FIXED_POINT_OPTIM 1 /**< Enable fixed-point speed-up. */
297
+ #endif /* MBEDTLS_ECP_FIXED_POINT_OPTIM */
298
+
299
+ /** \} name SECTION: Module settings */
300
+
301
+ #else /* MBEDTLS_ECP_ALT */
302
+ #include "ecp_alt.h"
303
+ #endif /* MBEDTLS_ECP_ALT */
304
+
305
+ /**
306
+ * The maximum size of the groups, that is, of \c N and \c P.
307
+ */
308
+ #if !defined(MBEDTLS_ECP_LIGHT)
309
+ /* Dummy definition to help code that has optional ECP support and
310
+ * defines an MBEDTLS_ECP_MAX_BYTES-sized array unconditionally. */
311
+ #define MBEDTLS_ECP_MAX_BITS 1
312
+ /* Note: the curves must be listed in DECREASING size! */
313
+ #elif defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED)
314
+ #define MBEDTLS_ECP_MAX_BITS 521
315
+ #elif defined(MBEDTLS_ECP_DP_BP512R1_ENABLED)
316
+ #define MBEDTLS_ECP_MAX_BITS 512
317
+ #elif defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
318
+ #define MBEDTLS_ECP_MAX_BITS 448
319
+ #elif defined(MBEDTLS_ECP_DP_BP384R1_ENABLED)
320
+ #define MBEDTLS_ECP_MAX_BITS 384
321
+ #elif defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED)
322
+ #define MBEDTLS_ECP_MAX_BITS 384
323
+ #elif defined(MBEDTLS_ECP_DP_BP256R1_ENABLED)
324
+ #define MBEDTLS_ECP_MAX_BITS 256
325
+ #elif defined(MBEDTLS_ECP_DP_SECP256K1_ENABLED)
326
+ #define MBEDTLS_ECP_MAX_BITS 256
327
+ #elif defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED)
328
+ #define MBEDTLS_ECP_MAX_BITS 256
329
+ #elif defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
330
+ #define MBEDTLS_ECP_MAX_BITS 255
331
+ #elif defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED)
332
+ #define MBEDTLS_ECP_MAX_BITS 225 // n is slightly above 2^224
333
+ #elif defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED)
334
+ #define MBEDTLS_ECP_MAX_BITS 224
335
+ #elif defined(MBEDTLS_ECP_DP_SECP192K1_ENABLED)
336
+ #define MBEDTLS_ECP_MAX_BITS 192
337
+ #elif defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED)
338
+ #define MBEDTLS_ECP_MAX_BITS 192
339
+ #else /* !MBEDTLS_ECP_LIGHT */
340
+ #error "Missing definition of MBEDTLS_ECP_MAX_BITS"
341
+ #endif /* !MBEDTLS_ECP_LIGHT */
342
+
343
+ #define MBEDTLS_ECP_MAX_BYTES ((MBEDTLS_ECP_MAX_BITS + 7) / 8)
344
+ #define MBEDTLS_ECP_MAX_PT_LEN (2 * MBEDTLS_ECP_MAX_BYTES + 1)
345
+
346
+ #if defined(MBEDTLS_ECP_RESTARTABLE)
347
+
348
+ /**
349
+ * \brief Internal restart context for multiplication
350
+ *
351
+ * \note Opaque struct
352
+ */
353
+ typedef struct mbedtls_ecp_restart_mul mbedtls_ecp_restart_mul_ctx;
354
+
355
+ /**
356
+ * \brief Internal restart context for ecp_muladd()
357
+ *
358
+ * \note Opaque struct
359
+ */
360
+ typedef struct mbedtls_ecp_restart_muladd mbedtls_ecp_restart_muladd_ctx;
361
+
362
+ /**
363
+ * \brief General context for resuming ECC operations
364
+ */
365
+ typedef struct {
366
+ unsigned MBEDTLS_PRIVATE(ops_done); /*!< current ops count */
367
+ unsigned MBEDTLS_PRIVATE(depth); /*!< call depth (0 = top-level) */
368
+ mbedtls_ecp_restart_mul_ctx *MBEDTLS_PRIVATE(rsm); /*!< ecp_mul_comb() sub-context */
369
+ mbedtls_ecp_restart_muladd_ctx *MBEDTLS_PRIVATE(ma); /*!< ecp_muladd() sub-context */
370
+ } mbedtls_ecp_restart_ctx;
371
+
372
+ /*
373
+ * Operation counts for restartable functions
374
+ */
375
+ #define MBEDTLS_ECP_OPS_CHK 3 /*!< basic ops count for ecp_check_pubkey() */
376
+ #define MBEDTLS_ECP_OPS_DBL 8 /*!< basic ops count for ecp_double_jac() */
377
+ #define MBEDTLS_ECP_OPS_ADD 11 /*!< basic ops count for see ecp_add_mixed() */
378
+ #define MBEDTLS_ECP_OPS_INV 120 /*!< empirical equivalent for mpi_mod_inv() */
379
+
380
+ /**
381
+ * \brief Internal; for restartable functions in other modules.
382
+ * Check and update basic ops budget.
383
+ *
384
+ * \param grp Group structure
385
+ * \param rs_ctx Restart context
386
+ * \param ops Number of basic ops to do
387
+ *
388
+ * \return \c 0 if doing \p ops basic ops is still allowed,
389
+ * \return #MBEDTLS_ERR_ECP_IN_PROGRESS otherwise.
390
+ */
391
+ int mbedtls_ecp_check_budget(const mbedtls_ecp_group *grp,
392
+ mbedtls_ecp_restart_ctx *rs_ctx,
393
+ unsigned ops);
394
+
395
+ /* Utility macro for checking and updating ops budget */
396
+ #define MBEDTLS_ECP_BUDGET(ops) \
397
+ MBEDTLS_MPI_CHK(mbedtls_ecp_check_budget(grp, rs_ctx, \
398
+ (unsigned) (ops)));
399
+
400
+ #else /* MBEDTLS_ECP_RESTARTABLE */
401
+
402
+ #define MBEDTLS_ECP_BUDGET(ops) /* no-op; for compatibility */
403
+
404
+ /* We want to declare restartable versions of existing functions anyway */
405
+ typedef void mbedtls_ecp_restart_ctx;
406
+
407
+ #endif /* MBEDTLS_ECP_RESTARTABLE */
408
+
409
+ /**
410
+ * \brief The ECP key-pair structure.
411
+ *
412
+ * A generic key-pair that may be used for ECDSA and fixed ECDH, for example.
413
+ *
414
+ * \note Members are deliberately in the same order as in the
415
+ * ::mbedtls_ecdsa_context structure.
416
+ */
417
+ typedef struct mbedtls_ecp_keypair {
418
+ mbedtls_ecp_group MBEDTLS_PRIVATE(grp); /*!< Elliptic curve and base point */
419
+ mbedtls_mpi MBEDTLS_PRIVATE(d); /*!< our secret value */
420
+ mbedtls_ecp_point MBEDTLS_PRIVATE(Q); /*!< our public value */
421
+ }
422
+ mbedtls_ecp_keypair;
423
+
424
+ /**
425
+ * The uncompressed point format for Short Weierstrass curves
426
+ * (MBEDTLS_ECP_DP_SECP_XXX and MBEDTLS_ECP_DP_BP_XXX).
427
+ */
428
+ #define MBEDTLS_ECP_PF_UNCOMPRESSED 0
429
+ /**
430
+ * The compressed point format for Short Weierstrass curves
431
+ * (MBEDTLS_ECP_DP_SECP_XXX and MBEDTLS_ECP_DP_BP_XXX).
432
+ *
433
+ * \warning While this format is supported for all concerned curves for
434
+ * writing, when it comes to parsing, it is not supported for all
435
+ * curves. Specifically, parsing compressed points on
436
+ * MBEDTLS_ECP_DP_SECP224R1 and MBEDTLS_ECP_DP_SECP224K1 is not
437
+ * supported.
438
+ */
439
+ #define MBEDTLS_ECP_PF_COMPRESSED 1
440
+
441
+ /*
442
+ * Some other constants from RFC 4492
443
+ */
444
+ #define MBEDTLS_ECP_TLS_NAMED_CURVE 3 /**< The named_curve of ECCurveType. */
445
+
446
+ #if defined(MBEDTLS_ECP_RESTARTABLE)
447
+ /**
448
+ * \brief Set the maximum number of basic operations done in a row.
449
+ *
450
+ * If more operations are needed to complete a computation,
451
+ * #MBEDTLS_ERR_ECP_IN_PROGRESS will be returned by the
452
+ * function performing the computation. It is then the
453
+ * caller's responsibility to either call again with the same
454
+ * parameters until it returns 0 or an error code; or to free
455
+ * the restart context if the operation is to be aborted.
456
+ *
457
+ * It is strictly required that all input parameters and the
458
+ * restart context be the same on successive calls for the
459
+ * same operation, but output parameters need not be the
460
+ * same; they must not be used until the function finally
461
+ * returns 0.
462
+ *
463
+ * This only applies to functions whose documentation
464
+ * mentions they may return #MBEDTLS_ERR_ECP_IN_PROGRESS (or
465
+ * #MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS for functions in the
466
+ * SSL module). For functions that accept a "restart context"
467
+ * argument, passing NULL disables restart and makes the
468
+ * function equivalent to the function with the same name
469
+ * with \c _restartable removed. For functions in the ECDH
470
+ * module, restart is disabled unless the function accepts
471
+ * an "ECDH context" argument and
472
+ * mbedtls_ecdh_enable_restart() was previously called on
473
+ * that context. For function in the SSL module, restart is
474
+ * only enabled for specific sides and key exchanges
475
+ * (currently only for clients and ECDHE-ECDSA).
476
+ *
477
+ * \warning Using the PSA interruptible interfaces with keys in local
478
+ * storage and no accelerator driver will also call this
479
+ * function to set the values specified via those interfaces,
480
+ * overwriting values previously set. Care should be taken if
481
+ * mixing these two interfaces.
482
+ *
483
+ * \param max_ops Maximum number of basic operations done in a row.
484
+ * Default: 0 (unlimited).
485
+ * Lower (non-zero) values mean ECC functions will block for
486
+ * a lesser maximum amount of time.
487
+ *
488
+ * \note A "basic operation" is defined as a rough equivalent of a
489
+ * multiplication in GF(p) for the NIST P-256 curve.
490
+ * As an indication, with default settings, a scalar
491
+ * multiplication (full run of \c mbedtls_ecp_mul()) is:
492
+ * - about 3300 basic operations for P-256
493
+ * - about 9400 basic operations for P-384
494
+ *
495
+ * \note Very low values are not always respected: sometimes
496
+ * functions need to block for a minimum number of
497
+ * operations, and will do so even if max_ops is set to a
498
+ * lower value. That minimum depends on the curve size, and
499
+ * can be made lower by decreasing the value of
500
+ * \c MBEDTLS_ECP_WINDOW_SIZE. As an indication, here is the
501
+ * lowest effective value for various curves and values of
502
+ * that parameter (w for short):
503
+ * w=6 w=5 w=4 w=3 w=2
504
+ * P-256 208 208 160 136 124
505
+ * P-384 682 416 320 272 248
506
+ * P-521 1364 832 640 544 496
507
+ *
508
+ * \note This setting is currently ignored by Curve25519.
509
+ */
510
+ void mbedtls_ecp_set_max_ops(unsigned max_ops);
511
+
512
+ /**
513
+ * \brief Check if restart is enabled (max_ops != 0)
514
+ *
515
+ * \return \c 0 if \c max_ops == 0 (restart disabled)
516
+ * \return \c 1 otherwise (restart enabled)
517
+ */
518
+ int mbedtls_ecp_restart_is_enabled(void);
519
+ #endif /* MBEDTLS_ECP_RESTARTABLE */
520
+
521
+ /*
522
+ * Get the type of a curve
523
+ */
524
+ mbedtls_ecp_curve_type mbedtls_ecp_get_type(const mbedtls_ecp_group *grp);
525
+
526
+ /**
527
+ * \brief This function retrieves the information defined in
528
+ * mbedtls_ecp_curve_info() for all supported curves.
529
+ *
530
+ * \note This function returns information about all curves
531
+ * supported by the library. Some curves may not be
532
+ * supported for all algorithms. Call mbedtls_ecdh_can_do()
533
+ * or mbedtls_ecdsa_can_do() to check if a curve is
534
+ * supported for ECDH or ECDSA.
535
+ *
536
+ * \return A statically allocated array. The last entry is 0.
537
+ */
538
+ const mbedtls_ecp_curve_info *mbedtls_ecp_curve_list(void);
539
+
540
+ /**
541
+ * \brief This function retrieves the list of internal group
542
+ * identifiers of all supported curves in the order of
543
+ * preference.
544
+ *
545
+ * \note This function returns information about all curves
546
+ * supported by the library. Some curves may not be
547
+ * supported for all algorithms. Call mbedtls_ecdh_can_do()
548
+ * or mbedtls_ecdsa_can_do() to check if a curve is
549
+ * supported for ECDH or ECDSA.
550
+ *
551
+ * \return A statically allocated array,
552
+ * terminated with MBEDTLS_ECP_DP_NONE.
553
+ */
554
+ const mbedtls_ecp_group_id *mbedtls_ecp_grp_id_list(void);
555
+
556
+ /**
557
+ * \brief This function retrieves curve information from an internal
558
+ * group identifier.
559
+ *
560
+ * \param grp_id An \c MBEDTLS_ECP_DP_XXX value.
561
+ *
562
+ * \return The associated curve information on success.
563
+ * \return NULL on failure.
564
+ */
565
+ const mbedtls_ecp_curve_info *mbedtls_ecp_curve_info_from_grp_id(mbedtls_ecp_group_id grp_id);
566
+
567
+ /**
568
+ * \brief This function retrieves curve information from a TLS
569
+ * NamedCurve value.
570
+ *
571
+ * \param tls_id An \c MBEDTLS_ECP_DP_XXX value.
572
+ *
573
+ * \return The associated curve information on success.
574
+ * \return NULL on failure.
575
+ */
576
+ const mbedtls_ecp_curve_info *mbedtls_ecp_curve_info_from_tls_id(uint16_t tls_id);
577
+
578
+ /**
579
+ * \brief This function retrieves curve information from a
580
+ * human-readable name.
581
+ *
582
+ * \param name The human-readable name.
583
+ *
584
+ * \return The associated curve information on success.
585
+ * \return NULL on failure.
586
+ */
587
+ const mbedtls_ecp_curve_info *mbedtls_ecp_curve_info_from_name(const char *name);
588
+
589
+ /**
590
+ * \brief This function initializes a point as zero.
591
+ *
592
+ * \param pt The point to initialize.
593
+ */
594
+ void mbedtls_ecp_point_init(mbedtls_ecp_point *pt);
595
+
596
+ /**
597
+ * \brief This function initializes an ECP group context
598
+ * without loading any domain parameters.
599
+ *
600
+ * \note After this function is called, domain parameters
601
+ * for various ECP groups can be loaded through the
602
+ * mbedtls_ecp_group_load() or mbedtls_ecp_tls_read_group()
603
+ * functions.
604
+ */
605
+ void mbedtls_ecp_group_init(mbedtls_ecp_group *grp);
606
+
607
+ /**
608
+ * \brief This function initializes a key pair as an invalid one.
609
+ *
610
+ * \param key The key pair to initialize.
611
+ */
612
+ void mbedtls_ecp_keypair_init(mbedtls_ecp_keypair *key);
613
+
614
+ /**
615
+ * \brief This function frees the components of a point.
616
+ *
617
+ * \param pt The point to free.
618
+ */
619
+ void mbedtls_ecp_point_free(mbedtls_ecp_point *pt);
620
+
621
+ /**
622
+ * \brief This function frees the components of an ECP group.
623
+ *
624
+ * \param grp The group to free. This may be \c NULL, in which
625
+ * case this function returns immediately. If it is not
626
+ * \c NULL, it must point to an initialized ECP group.
627
+ */
628
+ void mbedtls_ecp_group_free(mbedtls_ecp_group *grp);
629
+
630
+ /**
631
+ * \brief This function frees the components of a key pair.
632
+ *
633
+ * \param key The key pair to free. This may be \c NULL, in which
634
+ * case this function returns immediately. If it is not
635
+ * \c NULL, it must point to an initialized ECP key pair.
636
+ */
637
+ void mbedtls_ecp_keypair_free(mbedtls_ecp_keypair *key);
638
+
639
+ #if defined(MBEDTLS_ECP_RESTARTABLE)
640
+ /**
641
+ * \brief Initialize a restart context.
642
+ *
643
+ * \param ctx The restart context to initialize. This must
644
+ * not be \c NULL.
645
+ */
646
+ void mbedtls_ecp_restart_init(mbedtls_ecp_restart_ctx *ctx);
647
+
648
+ /**
649
+ * \brief Free the components of a restart context.
650
+ *
651
+ * \param ctx The restart context to free. This may be \c NULL, in which
652
+ * case this function returns immediately. If it is not
653
+ * \c NULL, it must point to an initialized restart context.
654
+ */
655
+ void mbedtls_ecp_restart_free(mbedtls_ecp_restart_ctx *ctx);
656
+ #endif /* MBEDTLS_ECP_RESTARTABLE */
657
+
658
+ /**
659
+ * \brief This function copies the contents of point \p Q into
660
+ * point \p P.
661
+ *
662
+ * \param P The destination point. This must be initialized.
663
+ * \param Q The source point. This must be initialized.
664
+ *
665
+ * \return \c 0 on success.
666
+ * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure.
667
+ * \return Another negative error code for other kinds of failure.
668
+ */
669
+ int mbedtls_ecp_copy(mbedtls_ecp_point *P, const mbedtls_ecp_point *Q);
670
+
671
+ /**
672
+ * \brief This function copies the contents of group \p src into
673
+ * group \p dst.
674
+ *
675
+ * \param dst The destination group. This must be initialized.
676
+ * \param src The source group. This must be initialized.
677
+ *
678
+ * \return \c 0 on success.
679
+ * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure.
680
+ * \return Another negative error code on other kinds of failure.
681
+ */
682
+ int mbedtls_ecp_group_copy(mbedtls_ecp_group *dst,
683
+ const mbedtls_ecp_group *src);
684
+
685
+ /**
686
+ * \brief This function sets a point to the point at infinity.
687
+ *
688
+ * \param pt The point to set. This must be initialized.
689
+ *
690
+ * \return \c 0 on success.
691
+ * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure.
692
+ * \return Another negative error code on other kinds of failure.
693
+ */
694
+ int mbedtls_ecp_set_zero(mbedtls_ecp_point *pt);
695
+
696
+ /**
697
+ * \brief This function checks if a point is the point at infinity.
698
+ *
699
+ * \param pt The point to test. This must be initialized.
700
+ *
701
+ * \return \c 1 if the point is zero.
702
+ * \return \c 0 if the point is non-zero.
703
+ * \return A negative error code on failure.
704
+ */
705
+ int mbedtls_ecp_is_zero(mbedtls_ecp_point *pt);
706
+
707
+ /**
708
+ * \brief This function compares two points.
709
+ *
710
+ * \note This assumes that the points are normalized. Otherwise,
711
+ * they may compare as "not equal" even if they are.
712
+ *
713
+ * \param P The first point to compare. This must be initialized.
714
+ * \param Q The second point to compare. This must be initialized.
715
+ *
716
+ * \return \c 0 if the points are equal.
717
+ * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if the points are not equal.
718
+ */
719
+ int mbedtls_ecp_point_cmp(const mbedtls_ecp_point *P,
720
+ const mbedtls_ecp_point *Q);
721
+
722
+ /**
723
+ * \brief This function imports a non-zero point from two ASCII
724
+ * strings.
725
+ *
726
+ * \param P The destination point. This must be initialized.
727
+ * \param radix The numeric base of the input.
728
+ * \param x The first affine coordinate, as a null-terminated string.
729
+ * \param y The second affine coordinate, as a null-terminated string.
730
+ *
731
+ * \return \c 0 on success.
732
+ * \return An \c MBEDTLS_ERR_MPI_XXX error code on failure.
733
+ */
734
+ int mbedtls_ecp_point_read_string(mbedtls_ecp_point *P, int radix,
735
+ const char *x, const char *y);
736
+
737
+ /**
738
+ * \brief This function exports a point into unsigned binary data.
739
+ *
740
+ * \param grp The group to which the point should belong.
741
+ * This must be initialized and have group parameters
742
+ * set, for example through mbedtls_ecp_group_load().
743
+ * \param P The point to export. This must be initialized.
744
+ * \param format The point format. This must be either
745
+ * #MBEDTLS_ECP_PF_COMPRESSED or #MBEDTLS_ECP_PF_UNCOMPRESSED.
746
+ * (For groups without these formats, this parameter is
747
+ * ignored. But it still has to be either of the above
748
+ * values.)
749
+ * \param olen The address at which to store the length of
750
+ * the output in Bytes. This must not be \c NULL.
751
+ * \param buf The output buffer. This must be a writable buffer
752
+ * of length \p buflen Bytes.
753
+ * \param buflen The length of the output buffer \p buf in Bytes.
754
+ *
755
+ * \return \c 0 on success.
756
+ * \return #MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL if the output buffer
757
+ * is too small to hold the point.
758
+ * \return #MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE if the point format
759
+ * or the export for the given group is not implemented.
760
+ * \return Another negative error code on other kinds of failure.
761
+ */
762
+ int mbedtls_ecp_point_write_binary(const mbedtls_ecp_group *grp,
763
+ const mbedtls_ecp_point *P,
764
+ int format, size_t *olen,
765
+ unsigned char *buf, size_t buflen);
766
+
767
+ /**
768
+ * \brief This function imports a point from unsigned binary data.
769
+ *
770
+ * \note This function does not check that the point actually
771
+ * belongs to the given group, see mbedtls_ecp_check_pubkey()
772
+ * for that.
773
+ *
774
+ * \note For compressed points, see #MBEDTLS_ECP_PF_COMPRESSED for
775
+ * limitations.
776
+ *
777
+ * \param grp The group to which the point should belong.
778
+ * This must be initialized and have group parameters
779
+ * set, for example through mbedtls_ecp_group_load().
780
+ * \param P The destination context to import the point to.
781
+ * This must be initialized.
782
+ * \param buf The input buffer. This must be a readable buffer
783
+ * of length \p ilen Bytes.
784
+ * \param ilen The length of the input buffer \p buf in Bytes.
785
+ *
786
+ * \return \c 0 on success.
787
+ * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if the input is invalid.
788
+ * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure.
789
+ * \return #MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE if the import for the
790
+ * given group is not implemented.
791
+ */
792
+ int mbedtls_ecp_point_read_binary(const mbedtls_ecp_group *grp,
793
+ mbedtls_ecp_point *P,
794
+ const unsigned char *buf, size_t ilen);
795
+
796
+ /**
797
+ * \brief This function imports a point from a TLS ECPoint record.
798
+ *
799
+ * \note On function return, \p *buf is updated to point immediately
800
+ * after the ECPoint record.
801
+ *
802
+ * \param grp The ECP group to use.
803
+ * This must be initialized and have group parameters
804
+ * set, for example through mbedtls_ecp_group_load().
805
+ * \param pt The destination point.
806
+ * \param buf The address of the pointer to the start of the input buffer.
807
+ * \param len The length of the buffer.
808
+ *
809
+ * \return \c 0 on success.
810
+ * \return An \c MBEDTLS_ERR_MPI_XXX error code on initialization
811
+ * failure.
812
+ * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if input is invalid.
813
+ */
814
+ int mbedtls_ecp_tls_read_point(const mbedtls_ecp_group *grp,
815
+ mbedtls_ecp_point *pt,
816
+ const unsigned char **buf, size_t len);
817
+
818
+ /**
819
+ * \brief This function exports a point as a TLS ECPoint record
820
+ * defined in RFC 4492, Section 5.4.
821
+ *
822
+ * \param grp The ECP group to use.
823
+ * This must be initialized and have group parameters
824
+ * set, for example through mbedtls_ecp_group_load().
825
+ * \param pt The point to be exported. This must be initialized.
826
+ * \param format The point format to use. This must be either
827
+ * #MBEDTLS_ECP_PF_COMPRESSED or #MBEDTLS_ECP_PF_UNCOMPRESSED.
828
+ * \param olen The address at which to store the length in Bytes
829
+ * of the data written.
830
+ * \param buf The target buffer. This must be a writable buffer of
831
+ * length \p blen Bytes.
832
+ * \param blen The length of the target buffer \p buf in Bytes.
833
+ *
834
+ * \return \c 0 on success.
835
+ * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if the input is invalid.
836
+ * \return #MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL if the target buffer
837
+ * is too small to hold the exported point.
838
+ * \return Another negative error code on other kinds of failure.
839
+ */
840
+ int mbedtls_ecp_tls_write_point(const mbedtls_ecp_group *grp,
841
+ const mbedtls_ecp_point *pt,
842
+ int format, size_t *olen,
843
+ unsigned char *buf, size_t blen);
844
+
845
+ /**
846
+ * \brief This function sets up an ECP group context
847
+ * from a standardized set of domain parameters.
848
+ *
849
+ * \note The index should be a value of the NamedCurve enum,
850
+ * as defined in <em>RFC-4492: Elliptic Curve Cryptography
851
+ * (ECC) Cipher Suites for Transport Layer Security (TLS)</em>,
852
+ * usually in the form of an \c MBEDTLS_ECP_DP_XXX macro.
853
+ *
854
+ * \param grp The group context to setup. This must be initialized.
855
+ * \param id The identifier of the domain parameter set to load.
856
+ *
857
+ * \return \c 0 on success.
858
+ * \return #MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE if \p id doesn't
859
+ * correspond to a known group.
860
+ * \return Another negative error code on other kinds of failure.
861
+ */
862
+ int mbedtls_ecp_group_load(mbedtls_ecp_group *grp, mbedtls_ecp_group_id id);
863
+
864
+ /**
865
+ * \brief This function sets up an ECP group context from a TLS
866
+ * ECParameters record as defined in RFC 4492, Section 5.4.
867
+ *
868
+ * \note The read pointer \p buf is updated to point right after
869
+ * the ECParameters record on exit.
870
+ *
871
+ * \param grp The group context to setup. This must be initialized.
872
+ * \param buf The address of the pointer to the start of the input buffer.
873
+ * \param len The length of the input buffer \c *buf in Bytes.
874
+ *
875
+ * \return \c 0 on success.
876
+ * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if input is invalid.
877
+ * \return #MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE if the group is not
878
+ * recognized.
879
+ * \return Another negative error code on other kinds of failure.
880
+ */
881
+ int mbedtls_ecp_tls_read_group(mbedtls_ecp_group *grp,
882
+ const unsigned char **buf, size_t len);
883
+
884
+ /**
885
+ * \brief This function extracts an elliptic curve group ID from a
886
+ * TLS ECParameters record as defined in RFC 4492, Section 5.4.
887
+ *
888
+ * \note The read pointer \p buf is updated to point right after
889
+ * the ECParameters record on exit.
890
+ *
891
+ * \param grp The address at which to store the group id.
892
+ * This must not be \c NULL.
893
+ * \param buf The address of the pointer to the start of the input buffer.
894
+ * \param len The length of the input buffer \c *buf in Bytes.
895
+ *
896
+ * \return \c 0 on success.
897
+ * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if input is invalid.
898
+ * \return #MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE if the group is not
899
+ * recognized.
900
+ * \return Another negative error code on other kinds of failure.
901
+ */
902
+ int mbedtls_ecp_tls_read_group_id(mbedtls_ecp_group_id *grp,
903
+ const unsigned char **buf,
904
+ size_t len);
905
+ /**
906
+ * \brief This function exports an elliptic curve as a TLS
907
+ * ECParameters record as defined in RFC 4492, Section 5.4.
908
+ *
909
+ * \param grp The ECP group to be exported.
910
+ * This must be initialized and have group parameters
911
+ * set, for example through mbedtls_ecp_group_load().
912
+ * \param olen The address at which to store the number of Bytes written.
913
+ * This must not be \c NULL.
914
+ * \param buf The buffer to write to. This must be a writable buffer
915
+ * of length \p blen Bytes.
916
+ * \param blen The length of the output buffer \p buf in Bytes.
917
+ *
918
+ * \return \c 0 on success.
919
+ * \return #MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL if the output
920
+ * buffer is too small to hold the exported group.
921
+ * \return Another negative error code on other kinds of failure.
922
+ */
923
+ int mbedtls_ecp_tls_write_group(const mbedtls_ecp_group *grp,
924
+ size_t *olen,
925
+ unsigned char *buf, size_t blen);
926
+
927
+ /**
928
+ * \brief This function performs a scalar multiplication of a point
929
+ * by an integer: \p R = \p m * \p P.
930
+ *
931
+ * It is not thread-safe to use same group in multiple threads.
932
+ *
933
+ * \note To prevent timing attacks, this function
934
+ * executes the exact same sequence of base-field
935
+ * operations for any valid \p m. It avoids any if-branch or
936
+ * array index depending on the value of \p m. It also uses
937
+ * \p f_rng to randomize some intermediate results.
938
+ *
939
+ * \param grp The ECP group to use.
940
+ * This must be initialized and have group parameters
941
+ * set, for example through mbedtls_ecp_group_load().
942
+ * \param R The point in which to store the result of the calculation.
943
+ * This must be initialized.
944
+ * \param m The integer by which to multiply. This must be initialized.
945
+ * \param P The point to multiply. This must be initialized.
946
+ * \param f_rng The RNG function. This must not be \c NULL.
947
+ * \param p_rng The RNG context to be passed to \p f_rng. This may be \c
948
+ * NULL if \p f_rng doesn't need a context.
949
+ *
950
+ * \return \c 0 on success.
951
+ * \return #MBEDTLS_ERR_ECP_INVALID_KEY if \p m is not a valid private
952
+ * key, or \p P is not a valid public key.
953
+ * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure.
954
+ * \return Another negative error code on other kinds of failure.
955
+ */
956
+ int mbedtls_ecp_mul(mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
957
+ const mbedtls_mpi *m, const mbedtls_ecp_point *P,
958
+ mbedtls_f_rng_t *f_rng, void *p_rng);
959
+
960
+ /**
961
+ * \brief This function performs multiplication of a point by
962
+ * an integer: \p R = \p m * \p P in a restartable way.
963
+ *
964
+ * \see mbedtls_ecp_mul()
965
+ *
966
+ * \note This function does the same as \c mbedtls_ecp_mul(), but
967
+ * it can return early and restart according to the limit set
968
+ * with \c mbedtls_ecp_set_max_ops() to reduce blocking.
969
+ *
970
+ * \param grp The ECP group to use.
971
+ * This must be initialized and have group parameters
972
+ * set, for example through mbedtls_ecp_group_load().
973
+ * \param R The point in which to store the result of the calculation.
974
+ * This must be initialized.
975
+ * \param m The integer by which to multiply. This must be initialized.
976
+ * \param P The point to multiply. This must be initialized.
977
+ * \param f_rng The RNG function. This must not be \c NULL.
978
+ * \param p_rng The RNG context to be passed to \p f_rng. This may be \c
979
+ * NULL if \p f_rng doesn't need a context.
980
+ * \param rs_ctx The restart context (NULL disables restart).
981
+ *
982
+ * \return \c 0 on success.
983
+ * \return #MBEDTLS_ERR_ECP_INVALID_KEY if \p m is not a valid private
984
+ * key, or \p P is not a valid public key.
985
+ * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure.
986
+ * \return #MBEDTLS_ERR_ECP_IN_PROGRESS if maximum number of
987
+ * operations was reached: see \c mbedtls_ecp_set_max_ops().
988
+ * \return Another negative error code on other kinds of failure.
989
+ */
990
+ int mbedtls_ecp_mul_restartable(mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
991
+ const mbedtls_mpi *m, const mbedtls_ecp_point *P,
992
+ mbedtls_f_rng_t *f_rng, void *p_rng,
993
+ mbedtls_ecp_restart_ctx *rs_ctx);
994
+
995
+ #if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
996
+ /**
997
+ * \brief This function checks if domain parameter A of the curve is
998
+ * \c -3.
999
+ *
1000
+ * \note This function is only defined for short Weierstrass curves.
1001
+ * It may not be included in builds without any short
1002
+ * Weierstrass curve.
1003
+ *
1004
+ * \param grp The ECP group to use.
1005
+ * This must be initialized and have group parameters
1006
+ * set, for example through mbedtls_ecp_group_load().
1007
+ *
1008
+ * \return \c 1 if <code>A = -3</code>.
1009
+ * \return \c 0 Otherwise.
1010
+ */
1011
+ static inline int mbedtls_ecp_group_a_is_minus_3(const mbedtls_ecp_group *grp)
1012
+ {
1013
+ return grp->A.MBEDTLS_PRIVATE(p) == NULL;
1014
+ }
1015
+
1016
+ /**
1017
+ * \brief This function performs multiplication and addition of two
1018
+ * points by integers: \p R = \p m * \p P + \p n * \p Q
1019
+ *
1020
+ * It is not thread-safe to use same group in multiple threads.
1021
+ *
1022
+ * \note In contrast to mbedtls_ecp_mul(), this function does not
1023
+ * guarantee a constant execution flow and timing.
1024
+ *
1025
+ * \note This function is only defined for short Weierstrass curves.
1026
+ * It may not be included in builds without any short
1027
+ * Weierstrass curve.
1028
+ *
1029
+ * \param grp The ECP group to use.
1030
+ * This must be initialized and have group parameters
1031
+ * set, for example through mbedtls_ecp_group_load().
1032
+ * \param R The point in which to store the result of the calculation.
1033
+ * This must be initialized.
1034
+ * \param m The integer by which to multiply \p P.
1035
+ * This must be initialized.
1036
+ * \param P The point to multiply by \p m. This must be initialized.
1037
+ * \param n The integer by which to multiply \p Q.
1038
+ * This must be initialized.
1039
+ * \param Q The point to be multiplied by \p n.
1040
+ * This must be initialized.
1041
+ *
1042
+ * \return \c 0 on success.
1043
+ * \return #MBEDTLS_ERR_ECP_INVALID_KEY if \p m or \p n are not
1044
+ * valid private keys, or \p P or \p Q are not valid public
1045
+ * keys.
1046
+ * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure.
1047
+ * \return #MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE if \p grp does not
1048
+ * designate a short Weierstrass curve.
1049
+ * \return Another negative error code on other kinds of failure.
1050
+ */
1051
+ int mbedtls_ecp_muladd(mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
1052
+ const mbedtls_mpi *m, const mbedtls_ecp_point *P,
1053
+ const mbedtls_mpi *n, const mbedtls_ecp_point *Q);
1054
+
1055
+ /**
1056
+ * \brief This function performs multiplication and addition of two
1057
+ * points by integers: \p R = \p m * \p P + \p n * \p Q in a
1058
+ * restartable way.
1059
+ *
1060
+ * \see \c mbedtls_ecp_muladd()
1061
+ *
1062
+ * \note This function works the same as \c mbedtls_ecp_muladd(),
1063
+ * but it can return early and restart according to the limit
1064
+ * set with \c mbedtls_ecp_set_max_ops() to reduce blocking.
1065
+ *
1066
+ * \note This function is only defined for short Weierstrass curves.
1067
+ * It may not be included in builds without any short
1068
+ * Weierstrass curve.
1069
+ *
1070
+ * \param grp The ECP group to use.
1071
+ * This must be initialized and have group parameters
1072
+ * set, for example through mbedtls_ecp_group_load().
1073
+ * \param R The point in which to store the result of the calculation.
1074
+ * This must be initialized.
1075
+ * \param m The integer by which to multiply \p P.
1076
+ * This must be initialized.
1077
+ * \param P The point to multiply by \p m. This must be initialized.
1078
+ * \param n The integer by which to multiply \p Q.
1079
+ * This must be initialized.
1080
+ * \param Q The point to be multiplied by \p n.
1081
+ * This must be initialized.
1082
+ * \param rs_ctx The restart context (NULL disables restart).
1083
+ *
1084
+ * \return \c 0 on success.
1085
+ * \return #MBEDTLS_ERR_ECP_INVALID_KEY if \p m or \p n are not
1086
+ * valid private keys, or \p P or \p Q are not valid public
1087
+ * keys.
1088
+ * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure.
1089
+ * \return #MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE if \p grp does not
1090
+ * designate a short Weierstrass curve.
1091
+ * \return #MBEDTLS_ERR_ECP_IN_PROGRESS if maximum number of
1092
+ * operations was reached: see \c mbedtls_ecp_set_max_ops().
1093
+ * \return Another negative error code on other kinds of failure.
1094
+ */
1095
+ int mbedtls_ecp_muladd_restartable(
1096
+ mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
1097
+ const mbedtls_mpi *m, const mbedtls_ecp_point *P,
1098
+ const mbedtls_mpi *n, const mbedtls_ecp_point *Q,
1099
+ mbedtls_ecp_restart_ctx *rs_ctx);
1100
+ #endif /* MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED */
1101
+
1102
+ /**
1103
+ * \brief This function checks that a point is a valid public key
1104
+ * on this curve.
1105
+ *
1106
+ * It only checks that the point is non-zero, has
1107
+ * valid coordinates and lies on the curve. It does not verify
1108
+ * that it is indeed a multiple of \c G. This additional
1109
+ * check is computationally more expensive, is not required
1110
+ * by standards, and should not be necessary if the group
1111
+ * used has a small cofactor. In particular, it is useless for
1112
+ * the NIST groups which all have a cofactor of 1.
1113
+ *
1114
+ * \note This function uses bare components rather than an
1115
+ * ::mbedtls_ecp_keypair structure, to ease use with other
1116
+ * structures, such as ::mbedtls_ecdh_context or
1117
+ * ::mbedtls_ecdsa_context.
1118
+ *
1119
+ * \param grp The ECP group the point should belong to.
1120
+ * This must be initialized and have group parameters
1121
+ * set, for example through mbedtls_ecp_group_load().
1122
+ * \param pt The point to check. This must be initialized.
1123
+ *
1124
+ * \return \c 0 if the point is a valid public key.
1125
+ * \return #MBEDTLS_ERR_ECP_INVALID_KEY if the point is not
1126
+ * a valid public key for the given curve.
1127
+ * \return Another negative error code on other kinds of failure.
1128
+ */
1129
+ int mbedtls_ecp_check_pubkey(const mbedtls_ecp_group *grp,
1130
+ const mbedtls_ecp_point *pt);
1131
+
1132
+ /**
1133
+ * \brief This function checks that an \c mbedtls_mpi is a
1134
+ * valid private key for this curve.
1135
+ *
1136
+ * \note This function uses bare components rather than an
1137
+ * ::mbedtls_ecp_keypair structure to ease use with other
1138
+ * structures, such as ::mbedtls_ecdh_context or
1139
+ * ::mbedtls_ecdsa_context.
1140
+ *
1141
+ * \param grp The ECP group the private key should belong to.
1142
+ * This must be initialized and have group parameters
1143
+ * set, for example through mbedtls_ecp_group_load().
1144
+ * \param d The integer to check. This must be initialized.
1145
+ *
1146
+ * \return \c 0 if the point is a valid private key.
1147
+ * \return #MBEDTLS_ERR_ECP_INVALID_KEY if the point is not a valid
1148
+ * private key for the given curve.
1149
+ * \return Another negative error code on other kinds of failure.
1150
+ */
1151
+ int mbedtls_ecp_check_privkey(const mbedtls_ecp_group *grp,
1152
+ const mbedtls_mpi *d);
1153
+
1154
+ /**
1155
+ * \brief This function generates a private key.
1156
+ *
1157
+ * \param grp The ECP group to generate a private key for.
1158
+ * This must be initialized and have group parameters
1159
+ * set, for example through mbedtls_ecp_group_load().
1160
+ * \param d The destination MPI (secret part). This must be initialized.
1161
+ * \param f_rng The RNG function. This must not be \c NULL.
1162
+ * \param p_rng The RNG parameter to be passed to \p f_rng. This may be
1163
+ * \c NULL if \p f_rng doesn't need a context argument.
1164
+ *
1165
+ * \return \c 0 on success.
1166
+ * \return An \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_MPI_XXX error code
1167
+ * on failure.
1168
+ */
1169
+ int mbedtls_ecp_gen_privkey(const mbedtls_ecp_group *grp,
1170
+ mbedtls_mpi *d,
1171
+ mbedtls_f_rng_t *f_rng,
1172
+ void *p_rng);
1173
+
1174
+ /**
1175
+ * \brief This function generates a keypair with a configurable base
1176
+ * point.
1177
+ *
1178
+ * \note This function uses bare components rather than an
1179
+ * ::mbedtls_ecp_keypair structure to ease use with other
1180
+ * structures, such as ::mbedtls_ecdh_context or
1181
+ * ::mbedtls_ecdsa_context.
1182
+ *
1183
+ * \param grp The ECP group to generate a key pair for.
1184
+ * This must be initialized and have group parameters
1185
+ * set, for example through mbedtls_ecp_group_load().
1186
+ * \param G The base point to use. This must be initialized
1187
+ * and belong to \p grp. It replaces the default base
1188
+ * point \c grp->G used by mbedtls_ecp_gen_keypair().
1189
+ * \param d The destination MPI (secret part).
1190
+ * This must be initialized.
1191
+ * \param Q The destination point (public part).
1192
+ * This must be initialized.
1193
+ * \param f_rng The RNG function. This must not be \c NULL.
1194
+ * \param p_rng The RNG context to be passed to \p f_rng. This may
1195
+ * be \c NULL if \p f_rng doesn't need a context argument.
1196
+ *
1197
+ * \return \c 0 on success.
1198
+ * \return An \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_MPI_XXX error code
1199
+ * on failure.
1200
+ */
1201
+ int mbedtls_ecp_gen_keypair_base(mbedtls_ecp_group *grp,
1202
+ const mbedtls_ecp_point *G,
1203
+ mbedtls_mpi *d, mbedtls_ecp_point *Q,
1204
+ mbedtls_f_rng_t *f_rng,
1205
+ void *p_rng);
1206
+
1207
+ /**
1208
+ * \brief This function generates an ECP keypair.
1209
+ *
1210
+ * \note This function uses bare components rather than an
1211
+ * ::mbedtls_ecp_keypair structure to ease use with other
1212
+ * structures, such as ::mbedtls_ecdh_context or
1213
+ * ::mbedtls_ecdsa_context.
1214
+ *
1215
+ * \param grp The ECP group to generate a key pair for.
1216
+ * This must be initialized and have group parameters
1217
+ * set, for example through mbedtls_ecp_group_load().
1218
+ * \param d The destination MPI (secret part).
1219
+ * This must be initialized.
1220
+ * \param Q The destination point (public part).
1221
+ * This must be initialized.
1222
+ * \param f_rng The RNG function. This must not be \c NULL.
1223
+ * \param p_rng The RNG context to be passed to \p f_rng. This may
1224
+ * be \c NULL if \p f_rng doesn't need a context argument.
1225
+ *
1226
+ * \return \c 0 on success.
1227
+ * \return An \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_MPI_XXX error code
1228
+ * on failure.
1229
+ */
1230
+ int mbedtls_ecp_gen_keypair(mbedtls_ecp_group *grp, mbedtls_mpi *d,
1231
+ mbedtls_ecp_point *Q,
1232
+ mbedtls_f_rng_t *f_rng,
1233
+ void *p_rng);
1234
+
1235
+ /**
1236
+ * \brief This function generates an ECP key.
1237
+ *
1238
+ * \param grp_id The ECP group identifier.
1239
+ * \param key The destination key. This must be initialized.
1240
+ * \param f_rng The RNG function to use. This must not be \c NULL.
1241
+ * \param p_rng The RNG context to be passed to \p f_rng. This may
1242
+ * be \c NULL if \p f_rng doesn't need a context argument.
1243
+ *
1244
+ * \return \c 0 on success.
1245
+ * \return An \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_MPI_XXX error code
1246
+ * on failure.
1247
+ */
1248
+ int mbedtls_ecp_gen_key(mbedtls_ecp_group_id grp_id, mbedtls_ecp_keypair *key,
1249
+ mbedtls_f_rng_t *f_rng,
1250
+ void *p_rng);
1251
+
1252
+ /** \brief Set the public key in a key pair object.
1253
+ *
1254
+ * \note This function does not check that the point actually
1255
+ * belongs to the given group. Call mbedtls_ecp_check_pubkey()
1256
+ * on \p Q before calling this function to check that.
1257
+ *
1258
+ * \note This function does not check that the public key matches
1259
+ * the private key that is already in \p key, if any.
1260
+ * To check the consistency of the resulting key pair object,
1261
+ * call mbedtls_ecp_check_pub_priv() after setting both
1262
+ * the public key and the private key.
1263
+ *
1264
+ * \param grp_id The ECP group identifier.
1265
+ * \param key The key pair object. It must be initialized.
1266
+ * If its group has already been set, it must match \p grp_id.
1267
+ * If its group has not been set, it will be set to \p grp_id.
1268
+ * If the public key has already been set, it is overwritten.
1269
+ * \param Q The public key to copy. This must be a point on the
1270
+ * curve indicated by \p grp_id.
1271
+ *
1272
+ * \return \c 0 on success.
1273
+ * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if \p key does not
1274
+ * match \p grp_id.
1275
+ * \return #MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE if the operation for
1276
+ * the group is not implemented.
1277
+ * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure.
1278
+ * \return Another negative error code on other kinds of failure.
1279
+ */
1280
+ int mbedtls_ecp_set_public_key(mbedtls_ecp_group_id grp_id,
1281
+ mbedtls_ecp_keypair *key,
1282
+ const mbedtls_ecp_point *Q);
1283
+
1284
+ /**
1285
+ * \brief This function reads an elliptic curve private key.
1286
+ *
1287
+ * \note This function does not set the public key in the
1288
+ * key pair object. Without a public key, the key pair object
1289
+ * cannot be used with operations that require the public key.
1290
+ * Call mbedtls_ecp_keypair_calc_public() to set the public
1291
+ * key from the private key. Alternatively, you can call
1292
+ * mbedtls_ecp_set_public_key() to set the public key part,
1293
+ * and then optionally mbedtls_ecp_check_pub_priv() to check
1294
+ * that the private and public parts are consistent.
1295
+ *
1296
+ * \note If a public key has already been set in the key pair
1297
+ * object, this function does not check that it is consistent
1298
+ * with the private key. Call mbedtls_ecp_check_pub_priv()
1299
+ * after setting both the public key and the private key
1300
+ * to make that check.
1301
+ *
1302
+ * \param grp_id The ECP group identifier.
1303
+ * \param key The destination key.
1304
+ * \param buf The buffer containing the binary representation of the
1305
+ * key. (Big endian integer for Weierstrass curves, byte
1306
+ * string for Montgomery curves.)
1307
+ * \param buflen The length of the buffer in bytes.
1308
+ *
1309
+ * \return \c 0 on success.
1310
+ * \return #MBEDTLS_ERR_ECP_INVALID_KEY error if the key is
1311
+ * invalid.
1312
+ * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED if memory allocation failed.
1313
+ * \return #MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE if the operation for
1314
+ * the group is not implemented.
1315
+ * \return Another negative error code on different kinds of failure.
1316
+ */
1317
+ int mbedtls_ecp_read_key(mbedtls_ecp_group_id grp_id, mbedtls_ecp_keypair *key,
1318
+ const unsigned char *buf, size_t buflen);
1319
+
1320
+ #if !defined(MBEDTLS_DEPRECATED_REMOVED)
1321
+ /**
1322
+ * \brief This function exports an elliptic curve private key.
1323
+ *
1324
+ * \deprecated Note that although this function accepts an output
1325
+ * buffer that is smaller or larger than the key, most key
1326
+ * import interfaces require the output to have exactly
1327
+ * key's nominal length. It is generally simplest to
1328
+ * pass the key's nominal length as \c buflen, after
1329
+ * checking that the output buffer is large enough.
1330
+ * See the description of the \p buflen parameter for
1331
+ * how to calculate the nominal length.
1332
+ * To avoid this difficulty, use mbedtls_ecp_write_key_ext()
1333
+ * instead.
1334
+ * mbedtls_ecp_write_key() is deprecated and will be
1335
+ * removed in a future version of the library.
1336
+ *
1337
+ * \note If the private key was not set in \p key,
1338
+ * the output is unspecified. Future versions
1339
+ * may return an error in that case.
1340
+ *
1341
+ * \param key The private key.
1342
+ * \param buf The output buffer for containing the binary representation
1343
+ * of the key.
1344
+ * For Weierstrass curves, this is the big-endian
1345
+ * representation, padded with null bytes at the beginning
1346
+ * to reach \p buflen bytes.
1347
+ * For Montgomery curves, this is the standard byte string
1348
+ * representation (which is little-endian), padded with
1349
+ * null bytes at the end to reach \p buflen bytes.
1350
+ * \param buflen The total length of the buffer in bytes.
1351
+ * The length of the output is
1352
+ * (`grp->nbits` + 7) / 8 bytes
1353
+ * where `grp->nbits` is the private key size in bits.
1354
+ * For Weierstrass keys, if the output buffer is smaller,
1355
+ * leading zeros are trimmed to fit if possible. For
1356
+ * Montgomery keys, the output buffer must always be large
1357
+ * enough for the nominal length.
1358
+ *
1359
+ * \return \c 0 on success.
1360
+ * \return #MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL or
1361
+ * #MBEDTLS_ERR_MPI_BUFFER_TOO_SMALL if the \p key
1362
+ * representation is larger than the available space in \p buf.
1363
+ * \return Another negative error code on different kinds of failure.
1364
+ */
1365
+ int MBEDTLS_DEPRECATED mbedtls_ecp_write_key(mbedtls_ecp_keypair *key,
1366
+ unsigned char *buf, size_t buflen);
1367
+ #endif /* MBEDTLS_DEPRECATED_REMOVED */
1368
+
1369
+ /**
1370
+ * \brief This function exports an elliptic curve private key.
1371
+ *
1372
+ * \param key The private key.
1373
+ * \param olen On success, the length of the private key.
1374
+ * This is always (`grp->nbits` + 7) / 8 bytes
1375
+ * where `grp->nbits` is the private key size in bits.
1376
+ * \param buf The output buffer for containing the binary representation
1377
+ * of the key.
1378
+ * \param buflen The total length of the buffer in bytes.
1379
+ * #MBEDTLS_ECP_MAX_BYTES is always sufficient.
1380
+ *
1381
+ * \return \c 0 on success.
1382
+ * \return #MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL if the \p key
1383
+ * representation is larger than the available space in \p buf.
1384
+ * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if no private key is
1385
+ * set in \p key.
1386
+ * \return Another negative error code on different kinds of failure.
1387
+ */
1388
+ int mbedtls_ecp_write_key_ext(const mbedtls_ecp_keypair *key,
1389
+ size_t *olen, unsigned char *buf, size_t buflen);
1390
+
1391
+ /**
1392
+ * \brief This function exports an elliptic curve public key.
1393
+ *
1394
+ * \note If the public key was not set in \p key,
1395
+ * the output is unspecified. Future versions
1396
+ * may return an error in that case.
1397
+ *
1398
+ * \param key The public key.
1399
+ * \param format The point format. This must be either
1400
+ * #MBEDTLS_ECP_PF_COMPRESSED or #MBEDTLS_ECP_PF_UNCOMPRESSED.
1401
+ * (For groups without these formats, this parameter is
1402
+ * ignored. But it still has to be either of the above
1403
+ * values.)
1404
+ * \param olen The address at which to store the length of
1405
+ * the output in Bytes. This must not be \c NULL.
1406
+ * \param buf The output buffer. This must be a writable buffer
1407
+ * of length \p buflen Bytes.
1408
+ * \param buflen The length of the output buffer \p buf in Bytes.
1409
+ *
1410
+ * \return \c 0 on success.
1411
+ * \return #MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL if the output buffer
1412
+ * is too small to hold the point.
1413
+ * \return #MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE if the point format
1414
+ * or the export for the given group is not implemented.
1415
+ * \return Another negative error code on other kinds of failure.
1416
+ */
1417
+ int mbedtls_ecp_write_public_key(const mbedtls_ecp_keypair *key,
1418
+ int format, size_t *olen,
1419
+ unsigned char *buf, size_t buflen);
1420
+
1421
+ /**
1422
+ * \brief This function checks that the keypair objects
1423
+ * \p pub and \p prv have the same group and the
1424
+ * same public point, and that the private key in
1425
+ * \p prv is consistent with the public key.
1426
+ *
1427
+ * \param pub The keypair structure holding the public key. This
1428
+ * must be initialized. If it contains a private key, that
1429
+ * part is ignored.
1430
+ * \param prv The keypair structure holding the full keypair.
1431
+ * This must be initialized.
1432
+ * \param f_rng The RNG function. This must not be \c NULL.
1433
+ * \param p_rng The RNG context to be passed to \p f_rng. This may be \c
1434
+ * NULL if \p f_rng doesn't need a context.
1435
+ *
1436
+ * \return \c 0 on success, meaning that the keys are valid and match.
1437
+ * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if the keys are invalid or do not match.
1438
+ * \return An \c MBEDTLS_ERR_ECP_XXX or an \c MBEDTLS_ERR_MPI_XXX
1439
+ * error code on calculation failure.
1440
+ */
1441
+ int mbedtls_ecp_check_pub_priv(
1442
+ const mbedtls_ecp_keypair *pub, const mbedtls_ecp_keypair *prv,
1443
+ mbedtls_f_rng_t *f_rng, void *p_rng);
1444
+
1445
+ /** \brief Calculate the public key from a private key in a key pair.
1446
+ *
1447
+ * \param key A keypair structure. It must have a private key set.
1448
+ * If the public key is set, it will be overwritten.
1449
+ * \param f_rng The RNG function. This must not be \c NULL.
1450
+ * \param p_rng The RNG context to be passed to \p f_rng. This may be \c
1451
+ * NULL if \p f_rng doesn't need a context.
1452
+ *
1453
+ * \return \c 0 on success. The key pair object can be used for
1454
+ * operations that require the public key.
1455
+ * \return An \c MBEDTLS_ERR_ECP_XXX or an \c MBEDTLS_ERR_MPI_XXX
1456
+ * error code on calculation failure.
1457
+ */
1458
+ int mbedtls_ecp_keypair_calc_public(
1459
+ mbedtls_ecp_keypair *key,
1460
+ mbedtls_f_rng_t *f_rng, void *p_rng);
1461
+
1462
+ /** \brief Query the group that a key pair belongs to.
1463
+ *
1464
+ * \param key The key pair to query.
1465
+ *
1466
+ * \return The group ID for the group registered in the key pair
1467
+ * object.
1468
+ * This is \c MBEDTLS_ECP_DP_NONE if no group has been set
1469
+ * in the key pair object.
1470
+ */
1471
+ mbedtls_ecp_group_id mbedtls_ecp_keypair_get_group_id(
1472
+ const mbedtls_ecp_keypair *key);
1473
+
1474
+ /**
1475
+ * \brief This function exports generic key-pair parameters.
1476
+ *
1477
+ * Each of the output parameters can be a null pointer
1478
+ * if you do not need that parameter.
1479
+ *
1480
+ * \note If the private key or the public key was not set in \p key,
1481
+ * the corresponding output is unspecified. Future versions
1482
+ * may return an error in that case.
1483
+ *
1484
+ * \param key The key pair to export from.
1485
+ * \param grp Slot for exported ECP group.
1486
+ * It must either be null or point to an initialized ECP group.
1487
+ * \param d Slot for the exported secret value.
1488
+ * It must either be null or point to an initialized mpi.
1489
+ * \param Q Slot for the exported public value.
1490
+ * It must either be null or point to an initialized ECP point.
1491
+ *
1492
+ * \return \c 0 on success,
1493
+ * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure.
1494
+ * \return #MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE if key id doesn't
1495
+ * correspond to a known group.
1496
+ * \return Another negative error code on other kinds of failure.
1497
+ */
1498
+ int mbedtls_ecp_export(const mbedtls_ecp_keypair *key, mbedtls_ecp_group *grp,
1499
+ mbedtls_mpi *d, mbedtls_ecp_point *Q);
1500
+
1501
+ #if defined(MBEDTLS_SELF_TEST)
1502
+
1503
+ /**
1504
+ * \brief The ECP checkup routine.
1505
+ *
1506
+ * \return \c 0 on success.
1507
+ * \return \c 1 on failure.
1508
+ */
1509
+ int mbedtls_ecp_self_test(int verbose);
1510
+
1511
+ #endif /* MBEDTLS_SELF_TEST */
1512
+
1513
+ #ifdef __cplusplus
1514
+ }
1515
+ #endif
1516
+
1517
+ #endif /* ecp.h */