ecdsa.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  1. /**
  2. * \file ecdsa.h
  3. *
  4. * \brief This file contains ECDSA definitions and functions.
  5. *
  6. * The Elliptic Curve Digital Signature Algorithm (ECDSA) is defined in
  7. * <em>Standards for Efficient Cryptography Group (SECG):
  8. * SEC1 Elliptic Curve Cryptography</em>.
  9. * The use of ECDSA for TLS is defined in <em>RFC-4492: Elliptic Curve
  10. * Cryptography (ECC) Cipher Suites for Transport Layer Security (TLS)</em>.
  11. *
  12. */
  13. /*
  14. * Copyright (C) 2006-2018, Arm Limited (or its affiliates), All Rights Reserved
  15. * SPDX-License-Identifier: Apache-2.0
  16. *
  17. * Licensed under the Apache License, Version 2.0 (the "License"); you may
  18. * not use this file except in compliance with the License.
  19. * You may obtain a copy of the License at
  20. *
  21. * http://www.apache.org/licenses/LICENSE-2.0
  22. *
  23. * Unless required by applicable law or agreed to in writing, software
  24. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  25. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  26. * See the License for the specific language governing permissions and
  27. * limitations under the License.
  28. *
  29. * This file is part of Mbed TLS (https://tls.mbed.org)
  30. */
  31. #ifndef MBEDTLS_ECDSA_H
  32. #define MBEDTLS_ECDSA_H
  33. #if !defined(MBEDTLS_CONFIG_FILE)
  34. #include "config.h"
  35. #else
  36. #include MBEDTLS_CONFIG_FILE
  37. #endif
  38. #include "ecp.h"
  39. #include "md.h"
  40. /*
  41. * RFC-4492 page 20:
  42. *
  43. * Ecdsa-Sig-Value ::= SEQUENCE {
  44. * r INTEGER,
  45. * s INTEGER
  46. * }
  47. *
  48. * Size is at most
  49. * 1 (tag) + 1 (len) + 1 (initial 0) + ECP_MAX_BYTES for each of r and s,
  50. * twice that + 1 (tag) + 2 (len) for the sequence
  51. * (assuming ECP_MAX_BYTES is less than 126 for r and s,
  52. * and less than 124 (total len <= 255) for the sequence)
  53. */
  54. #if MBEDTLS_ECP_MAX_BYTES > 124
  55. #error "MBEDTLS_ECP_MAX_BYTES bigger than expected, please fix MBEDTLS_ECDSA_MAX_LEN"
  56. #endif
  57. /** The maximal size of an ECDSA signature in Bytes. */
  58. #define MBEDTLS_ECDSA_MAX_LEN ( 3 + 2 * ( 3 + MBEDTLS_ECP_MAX_BYTES ) )
  59. #ifdef __cplusplus
  60. extern "C" {
  61. #endif
  62. /**
  63. * \brief The ECDSA context structure.
  64. *
  65. * \warning Performing multiple operations concurrently on the same
  66. * ECDSA context is not supported; objects of this type
  67. * should not be shared between multiple threads.
  68. */
  69. typedef mbedtls_ecp_keypair mbedtls_ecdsa_context;
  70. #if defined(MBEDTLS_ECP_RESTARTABLE)
  71. /**
  72. * \brief Internal restart context for ecdsa_verify()
  73. *
  74. * \note Opaque struct, defined in ecdsa.c
  75. */
  76. typedef struct mbedtls_ecdsa_restart_ver mbedtls_ecdsa_restart_ver_ctx;
  77. /**
  78. * \brief Internal restart context for ecdsa_sign()
  79. *
  80. * \note Opaque struct, defined in ecdsa.c
  81. */
  82. typedef struct mbedtls_ecdsa_restart_sig mbedtls_ecdsa_restart_sig_ctx;
  83. #if defined(MBEDTLS_ECDSA_DETERMINISTIC)
  84. /**
  85. * \brief Internal restart context for ecdsa_sign_det()
  86. *
  87. * \note Opaque struct, defined in ecdsa.c
  88. */
  89. typedef struct mbedtls_ecdsa_restart_det mbedtls_ecdsa_restart_det_ctx;
  90. #endif
  91. /**
  92. * \brief General context for resuming ECDSA operations
  93. */
  94. typedef struct
  95. {
  96. mbedtls_ecp_restart_ctx ecp; /*!< base context for ECP restart and
  97. shared administrative info */
  98. mbedtls_ecdsa_restart_ver_ctx *ver; /*!< ecdsa_verify() sub-context */
  99. mbedtls_ecdsa_restart_sig_ctx *sig; /*!< ecdsa_sign() sub-context */
  100. #if defined(MBEDTLS_ECDSA_DETERMINISTIC)
  101. mbedtls_ecdsa_restart_det_ctx *det; /*!< ecdsa_sign_det() sub-context */
  102. #endif
  103. } mbedtls_ecdsa_restart_ctx;
  104. #else /* MBEDTLS_ECP_RESTARTABLE */
  105. /* Now we can declare functions that take a pointer to that */
  106. typedef void mbedtls_ecdsa_restart_ctx;
  107. #endif /* MBEDTLS_ECP_RESTARTABLE */
  108. /**
  109. * \brief This function computes the ECDSA signature of a
  110. * previously-hashed message.
  111. *
  112. * \note The deterministic version implemented in
  113. * mbedtls_ecdsa_sign_det() is usually preferred.
  114. *
  115. * \note If the bitlength of the message hash is larger than the
  116. * bitlength of the group order, then the hash is truncated
  117. * as defined in <em>Standards for Efficient Cryptography Group
  118. * (SECG): SEC1 Elliptic Curve Cryptography</em>, section
  119. * 4.1.3, step 5.
  120. *
  121. * \see ecp.h
  122. *
  123. * \param grp The context for the elliptic curve to use.
  124. * This must be initialized and have group parameters
  125. * set, for example through mbedtls_ecp_group_load().
  126. * \param r The MPI context in which to store the first part
  127. * the signature. This must be initialized.
  128. * \param s The MPI context in which to store the second part
  129. * the signature. This must be initialized.
  130. * \param d The private signing key. This must be initialized.
  131. * \param buf The content to be signed. This is usually the hash of
  132. * the original data to be signed. This must be a readable
  133. * buffer of length \p blen Bytes. It may be \c NULL if
  134. * \p blen is zero.
  135. * \param blen The length of \p buf in Bytes.
  136. * \param f_rng The RNG function. This must not be \c NULL.
  137. * \param p_rng The RNG context to be passed to \p f_rng. This may be
  138. * \c NULL if \p f_rng doesn't need a context parameter.
  139. *
  140. * \return \c 0 on success.
  141. * \return An \c MBEDTLS_ERR_ECP_XXX
  142. * or \c MBEDTLS_MPI_XXX error code on failure.
  143. */
  144. int mbedtls_ecdsa_sign( mbedtls_ecp_group *grp, mbedtls_mpi *r, mbedtls_mpi *s,
  145. const mbedtls_mpi *d, const unsigned char *buf, size_t blen,
  146. int (*f_rng)(void *, unsigned char *, size_t), void *p_rng );
  147. #if defined(MBEDTLS_ECDSA_DETERMINISTIC)
  148. /**
  149. * \brief This function computes the ECDSA signature of a
  150. * previously-hashed message, deterministic version.
  151. *
  152. * For more information, see <em>RFC-6979: Deterministic
  153. * Usage of the Digital Signature Algorithm (DSA) and Elliptic
  154. * Curve Digital Signature Algorithm (ECDSA)</em>.
  155. *
  156. * \note If the bitlength of the message hash is larger than the
  157. * bitlength of the group order, then the hash is truncated as
  158. * defined in <em>Standards for Efficient Cryptography Group
  159. * (SECG): SEC1 Elliptic Curve Cryptography</em>, section
  160. * 4.1.3, step 5.
  161. *
  162. * \see ecp.h
  163. *
  164. * \param grp The context for the elliptic curve to use.
  165. * This must be initialized and have group parameters
  166. * set, for example through mbedtls_ecp_group_load().
  167. * \param r The MPI context in which to store the first part
  168. * the signature. This must be initialized.
  169. * \param s The MPI context in which to store the second part
  170. * the signature. This must be initialized.
  171. * \param d The private signing key. This must be initialized
  172. * and setup, for example through mbedtls_ecp_gen_privkey().
  173. * \param buf The hashed content to be signed. This must be a readable
  174. * buffer of length \p blen Bytes. It may be \c NULL if
  175. * \p blen is zero.
  176. * \param blen The length of \p buf in Bytes.
  177. * \param md_alg The hash algorithm used to hash the original data.
  178. *
  179. * \return \c 0 on success.
  180. * \return An \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_MPI_XXX
  181. * error code on failure.
  182. */
  183. int mbedtls_ecdsa_sign_det( mbedtls_ecp_group *grp, mbedtls_mpi *r,
  184. mbedtls_mpi *s, const mbedtls_mpi *d,
  185. const unsigned char *buf, size_t blen,
  186. mbedtls_md_type_t md_alg );
  187. #endif /* MBEDTLS_ECDSA_DETERMINISTIC */
  188. /**
  189. * \brief This function verifies the ECDSA signature of a
  190. * previously-hashed message.
  191. *
  192. * \note If the bitlength of the message hash is larger than the
  193. * bitlength of the group order, then the hash is truncated as
  194. * defined in <em>Standards for Efficient Cryptography Group
  195. * (SECG): SEC1 Elliptic Curve Cryptography</em>, section
  196. * 4.1.4, step 3.
  197. *
  198. * \see ecp.h
  199. *
  200. * \param grp The ECP group to use.
  201. * This must be initialized and have group parameters
  202. * set, for example through mbedtls_ecp_group_load().
  203. * \param buf The hashed content that was signed. This must be a readable
  204. * buffer of length \p blen Bytes. It may be \c NULL if
  205. * \p blen is zero.
  206. * \param blen The length of \p buf in Bytes.
  207. * \param Q The public key to use for verification. This must be
  208. * initialized and setup.
  209. * \param r The first integer of the signature.
  210. * This must be initialized.
  211. * \param s The second integer of the signature.
  212. * This must be initialized.
  213. *
  214. * \return \c 0 on success.
  215. * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if the signature
  216. * is invalid.
  217. * \return An \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_MPI_XXX
  218. * error code on failure for any other reason.
  219. */
  220. int mbedtls_ecdsa_verify( mbedtls_ecp_group *grp,
  221. const unsigned char *buf, size_t blen,
  222. const mbedtls_ecp_point *Q, const mbedtls_mpi *r,
  223. const mbedtls_mpi *s);
  224. /**
  225. * \brief This function computes the ECDSA signature and writes it
  226. * to a buffer, serialized as defined in <em>RFC-4492:
  227. * Elliptic Curve Cryptography (ECC) Cipher Suites for
  228. * Transport Layer Security (TLS)</em>.
  229. *
  230. * \warning It is not thread-safe to use the same context in
  231. * multiple threads.
  232. *
  233. * \note The deterministic version is used if
  234. * #MBEDTLS_ECDSA_DETERMINISTIC is defined. For more
  235. * information, see <em>RFC-6979: Deterministic Usage
  236. * of the Digital Signature Algorithm (DSA) and Elliptic
  237. * Curve Digital Signature Algorithm (ECDSA)</em>.
  238. *
  239. * \note If the bitlength of the message hash is larger than the
  240. * bitlength of the group order, then the hash is truncated as
  241. * defined in <em>Standards for Efficient Cryptography Group
  242. * (SECG): SEC1 Elliptic Curve Cryptography</em>, section
  243. * 4.1.3, step 5.
  244. *
  245. * \see ecp.h
  246. *
  247. * \param ctx The ECDSA context to use. This must be initialized
  248. * and have a group and private key bound to it, for example
  249. * via mbedtls_ecdsa_genkey() or mbedtls_ecdsa_from_keypair().
  250. * \param md_alg The message digest that was used to hash the message.
  251. * \param hash The message hash to be signed. This must be a readable
  252. * buffer of length \p blen Bytes.
  253. * \param hlen The length of the hash \p hash in Bytes.
  254. * \param sig The buffer to which to write the signature. This must be a
  255. * writable buffer of length at least twice as large as the
  256. * size of the curve used, plus 9. For example, 73 Bytes if
  257. * a 256-bit curve is used. A buffer length of
  258. * #MBEDTLS_ECDSA_MAX_LEN is always safe.
  259. * \param slen The address at which to store the actual length of
  260. * the signature written. Must not be \c NULL.
  261. * \param f_rng The RNG function. This must not be \c NULL if
  262. * #MBEDTLS_ECDSA_DETERMINISTIC is unset. Otherwise,
  263. * it is unused and may be set to \c NULL.
  264. * \param p_rng The RNG context to be passed to \p f_rng. This may be
  265. * \c NULL if \p f_rng is \c NULL or doesn't use a context.
  266. *
  267. * \return \c 0 on success.
  268. * \return An \c MBEDTLS_ERR_ECP_XXX, \c MBEDTLS_ERR_MPI_XXX or
  269. * \c MBEDTLS_ERR_ASN1_XXX error code on failure.
  270. */
  271. int mbedtls_ecdsa_write_signature( mbedtls_ecdsa_context *ctx,
  272. mbedtls_md_type_t md_alg,
  273. const unsigned char *hash, size_t hlen,
  274. unsigned char *sig, size_t *slen,
  275. int (*f_rng)(void *, unsigned char *, size_t),
  276. void *p_rng );
  277. /**
  278. * \brief This function computes the ECDSA signature and writes it
  279. * to a buffer, in a restartable way.
  280. *
  281. * \see \c mbedtls_ecdsa_write_signature()
  282. *
  283. * \note This function is like \c mbedtls_ecdsa_write_signature()
  284. * but it can return early and restart according to the limit
  285. * set with \c mbedtls_ecp_set_max_ops() to reduce blocking.
  286. *
  287. * \param ctx The ECDSA context to use. This must be initialized
  288. * and have a group and private key bound to it, for example
  289. * via mbedtls_ecdsa_genkey() or mbedtls_ecdsa_from_keypair().
  290. * \param md_alg The message digest that was used to hash the message.
  291. * \param hash The message hash to be signed. This must be a readable
  292. * buffer of length \p blen Bytes.
  293. * \param hlen The length of the hash \p hash in Bytes.
  294. * \param sig The buffer to which to write the signature. This must be a
  295. * writable buffer of length at least twice as large as the
  296. * size of the curve used, plus 9. For example, 73 Bytes if
  297. * a 256-bit curve is used. A buffer length of
  298. * #MBEDTLS_ECDSA_MAX_LEN is always safe.
  299. * \param slen The address at which to store the actual length of
  300. * the signature written. Must not be \c NULL.
  301. * \param f_rng The RNG function. This must not be \c NULL if
  302. * #MBEDTLS_ECDSA_DETERMINISTIC is unset. Otherwise,
  303. * it is unused and may be set to \c NULL.
  304. * \param p_rng The RNG context to be passed to \p f_rng. This may be
  305. * \c NULL if \p f_rng is \c NULL or doesn't use a context.
  306. * \param rs_ctx The restart context to use. This may be \c NULL to disable
  307. * restarting. If it is not \c NULL, it must point to an
  308. * initialized restart context.
  309. *
  310. * \return \c 0 on success.
  311. * \return #MBEDTLS_ERR_ECP_IN_PROGRESS if maximum number of
  312. * operations was reached: see \c mbedtls_ecp_set_max_ops().
  313. * \return Another \c MBEDTLS_ERR_ECP_XXX, \c MBEDTLS_ERR_MPI_XXX or
  314. * \c MBEDTLS_ERR_ASN1_XXX error code on failure.
  315. */
  316. int mbedtls_ecdsa_write_signature_restartable( mbedtls_ecdsa_context *ctx,
  317. mbedtls_md_type_t md_alg,
  318. const unsigned char *hash, size_t hlen,
  319. unsigned char *sig, size_t *slen,
  320. int (*f_rng)(void *, unsigned char *, size_t),
  321. void *p_rng,
  322. mbedtls_ecdsa_restart_ctx *rs_ctx );
  323. #if defined(MBEDTLS_ECDSA_DETERMINISTIC)
  324. #if ! defined(MBEDTLS_DEPRECATED_REMOVED)
  325. #if defined(MBEDTLS_DEPRECATED_WARNING)
  326. #define MBEDTLS_DEPRECATED __attribute__((deprecated))
  327. #else
  328. #define MBEDTLS_DEPRECATED
  329. #endif
  330. /**
  331. * \brief This function computes an ECDSA signature and writes
  332. * it to a buffer, serialized as defined in <em>RFC-4492:
  333. * Elliptic Curve Cryptography (ECC) Cipher Suites for
  334. * Transport Layer Security (TLS)</em>.
  335. *
  336. * The deterministic version is defined in <em>RFC-6979:
  337. * Deterministic Usage of the Digital Signature Algorithm (DSA)
  338. * and Elliptic Curve Digital Signature Algorithm (ECDSA)</em>.
  339. *
  340. * \warning It is not thread-safe to use the same context in
  341. * multiple threads.
  342. *
  343. * \note If the bitlength of the message hash is larger than the
  344. * bitlength of the group order, then the hash is truncated as
  345. * defined in <em>Standards for Efficient Cryptography Group
  346. * (SECG): SEC1 Elliptic Curve Cryptography</em>, section
  347. * 4.1.3, step 5.
  348. *
  349. * \see ecp.h
  350. *
  351. * \deprecated Superseded by mbedtls_ecdsa_write_signature() in
  352. * Mbed TLS version 2.0 and later.
  353. *
  354. * \param ctx The ECDSA context to use. This must be initialized
  355. * and have a group and private key bound to it, for example
  356. * via mbedtls_ecdsa_genkey() or mbedtls_ecdsa_from_keypair().
  357. * \param hash The message hash to be signed. This must be a readable
  358. * buffer of length \p blen Bytes.
  359. * \param hlen The length of the hash \p hash in Bytes.
  360. * \param sig The buffer to which to write the signature. This must be a
  361. * writable buffer of length at least twice as large as the
  362. * size of the curve used, plus 9. For example, 73 Bytes if
  363. * a 256-bit curve is used. A buffer length of
  364. * #MBEDTLS_ECDSA_MAX_LEN is always safe.
  365. * \param slen The address at which to store the actual length of
  366. * the signature written. Must not be \c NULL.
  367. * \param md_alg The message digest that was used to hash the message.
  368. *
  369. * \return \c 0 on success.
  370. * \return An \c MBEDTLS_ERR_ECP_XXX, \c MBEDTLS_ERR_MPI_XXX or
  371. * \c MBEDTLS_ERR_ASN1_XXX error code on failure.
  372. */
  373. int mbedtls_ecdsa_write_signature_det( mbedtls_ecdsa_context *ctx,
  374. const unsigned char *hash, size_t hlen,
  375. unsigned char *sig, size_t *slen,
  376. mbedtls_md_type_t md_alg ) MBEDTLS_DEPRECATED;
  377. #undef MBEDTLS_DEPRECATED
  378. #endif /* MBEDTLS_DEPRECATED_REMOVED */
  379. #endif /* MBEDTLS_ECDSA_DETERMINISTIC */
  380. /**
  381. * \brief This function reads and verifies an ECDSA signature.
  382. *
  383. * \note If the bitlength of the message hash is larger than the
  384. * bitlength of the group order, then the hash is truncated as
  385. * defined in <em>Standards for Efficient Cryptography Group
  386. * (SECG): SEC1 Elliptic Curve Cryptography</em>, section
  387. * 4.1.4, step 3.
  388. *
  389. * \see ecp.h
  390. *
  391. * \param ctx The ECDSA context to use. This must be initialized
  392. * and have a group and public key bound to it.
  393. * \param hash The message hash that was signed. This must be a readable
  394. * buffer of length \p size Bytes.
  395. * \param hlen The size of the hash \p hash.
  396. * \param sig The signature to read and verify. This must be a readable
  397. * buffer of length \p slen Bytes.
  398. * \param slen The size of \p sig in Bytes.
  399. *
  400. * \return \c 0 on success.
  401. * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if signature is invalid.
  402. * \return #MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH if there is a valid
  403. * signature in \p sig, but its length is less than \p siglen.
  404. * \return An \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_ERR_MPI_XXX
  405. * error code on failure for any other reason.
  406. */
  407. int mbedtls_ecdsa_read_signature( mbedtls_ecdsa_context *ctx,
  408. const unsigned char *hash, size_t hlen,
  409. const unsigned char *sig, size_t slen );
  410. /**
  411. * \brief This function reads and verifies an ECDSA signature,
  412. * in a restartable way.
  413. *
  414. * \see \c mbedtls_ecdsa_read_signature()
  415. *
  416. * \note This function is like \c mbedtls_ecdsa_read_signature()
  417. * but it can return early and restart according to the limit
  418. * set with \c mbedtls_ecp_set_max_ops() to reduce blocking.
  419. *
  420. * \param ctx The ECDSA context to use. This must be initialized
  421. * and have a group and public key bound to it.
  422. * \param hash The message hash that was signed. This must be a readable
  423. * buffer of length \p size Bytes.
  424. * \param hlen The size of the hash \p hash.
  425. * \param sig The signature to read and verify. This must be a readable
  426. * buffer of length \p slen Bytes.
  427. * \param slen The size of \p sig in Bytes.
  428. * \param rs_ctx The restart context to use. This may be \c NULL to disable
  429. * restarting. If it is not \c NULL, it must point to an
  430. * initialized restart context.
  431. *
  432. * \return \c 0 on success.
  433. * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if signature is invalid.
  434. * \return #MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH if there is a valid
  435. * signature in \p sig, but its length is less than \p siglen.
  436. * \return #MBEDTLS_ERR_ECP_IN_PROGRESS if maximum number of
  437. * operations was reached: see \c mbedtls_ecp_set_max_ops().
  438. * \return Another \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_ERR_MPI_XXX
  439. * error code on failure for any other reason.
  440. */
  441. int mbedtls_ecdsa_read_signature_restartable( mbedtls_ecdsa_context *ctx,
  442. const unsigned char *hash, size_t hlen,
  443. const unsigned char *sig, size_t slen,
  444. mbedtls_ecdsa_restart_ctx *rs_ctx );
  445. /**
  446. * \brief This function generates an ECDSA keypair on the given curve.
  447. *
  448. * \see ecp.h
  449. *
  450. * \param ctx The ECDSA context to store the keypair in.
  451. * This must be initialized.
  452. * \param gid The elliptic curve to use. One of the various
  453. * \c MBEDTLS_ECP_DP_XXX macros depending on configuration.
  454. * \param f_rng The RNG function to use. This must not be \c NULL.
  455. * \param p_rng The RNG context to be passed to \p f_rng. This may be
  456. * \c NULL if \p f_rng doesn't need a context argument.
  457. *
  458. * \return \c 0 on success.
  459. * \return An \c MBEDTLS_ERR_ECP_XXX code on failure.
  460. */
  461. int mbedtls_ecdsa_genkey( mbedtls_ecdsa_context *ctx, mbedtls_ecp_group_id gid,
  462. int (*f_rng)(void *, unsigned char *, size_t), void *p_rng );
  463. /**
  464. * \brief This function sets up an ECDSA context from an EC key pair.
  465. *
  466. * \see ecp.h
  467. *
  468. * \param ctx The ECDSA context to setup. This must be initialized.
  469. * \param key The EC key to use. This must be initialized and hold
  470. * a private-public key pair or a public key. In the former
  471. * case, the ECDSA context may be used for signature creation
  472. * and verification after this call. In the latter case, it
  473. * may be used for signature verification.
  474. *
  475. * \return \c 0 on success.
  476. * \return An \c MBEDTLS_ERR_ECP_XXX code on failure.
  477. */
  478. int mbedtls_ecdsa_from_keypair( mbedtls_ecdsa_context *ctx,
  479. const mbedtls_ecp_keypair *key );
  480. /**
  481. * \brief This function initializes an ECDSA context.
  482. *
  483. * \param ctx The ECDSA context to initialize.
  484. * This must not be \c NULL.
  485. */
  486. void mbedtls_ecdsa_init( mbedtls_ecdsa_context *ctx );
  487. /**
  488. * \brief This function frees an ECDSA context.
  489. *
  490. * \param ctx The ECDSA context to free. This may be \c NULL,
  491. * in which case this function does nothing. If it
  492. * is not \c NULL, it must be initialized.
  493. */
  494. void mbedtls_ecdsa_free( mbedtls_ecdsa_context *ctx );
  495. #if defined(MBEDTLS_ECP_RESTARTABLE)
  496. /**
  497. * \brief Initialize a restart context.
  498. *
  499. * \param ctx The restart context to initialize.
  500. * This must not be \c NULL.
  501. */
  502. void mbedtls_ecdsa_restart_init( mbedtls_ecdsa_restart_ctx *ctx );
  503. /**
  504. * \brief Free the components of a restart context.
  505. *
  506. * \param ctx The restart context to free. This may be \c NULL,
  507. * in which case this function does nothing. If it
  508. * is not \c NULL, it must be initialized.
  509. */
  510. void mbedtls_ecdsa_restart_free( mbedtls_ecdsa_restart_ctx *ctx );
  511. #endif /* MBEDTLS_ECP_RESTARTABLE */
  512. #ifdef __cplusplus
  513. }
  514. #endif
  515. #endif /* ecdsa.h */