blob: e42d114c42160da5e8b00ba14527063c5b62b9f5 [file] [log] [blame]
Manuel Pégourié-Gonnard2aea1412013-01-26 16:33:44 +01001/**
2 * \file ecdsa.h
3 *
Rose Zadik817297f2018-03-27 11:30:14 +01004 * \brief This file contains ECDSA definitions and functions.
Manuel Pégourié-Gonnard2aea1412013-01-26 16:33:44 +01005 *
Rose Zadik817297f2018-03-27 11:30:14 +01006 * The Elliptic Curve Digital Signature Algorithm (ECDSA) is defined in
7 * <em>Standards for Efficient Cryptography Group (SECG):
Rose Zadikbff87d92018-01-25 21:58:53 +00008 * 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 *
Darryl Greena40a1012018-01-05 15:33:17 +000012 */
13/*
Bence Szépkúti1e148272020-08-07 13:07:28 +020014 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +020015 * 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.
Manuel Pégourié-Gonnard2aea1412013-01-26 16:33:44 +010028 */
Rose Zadikbff87d92018-01-25 21:58:53 +000029
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020030#ifndef MBEDTLS_ECDSA_H
31#define MBEDTLS_ECDSA_H
Manuel Pégourié-Gonnard2aea1412013-01-26 16:33:44 +010032
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050033#if !defined(MBEDTLS_CONFIG_FILE)
Jaeden Ameroc49fbbf2019-07-04 20:01:14 +010034#include "mbedtls/config.h"
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050035#else
36#include MBEDTLS_CONFIG_FILE
37#endif
38
Jaeden Ameroc49fbbf2019-07-04 20:01:14 +010039#include "mbedtls/ecp.h"
40#include "mbedtls/md.h"
Manuel Pégourié-Gonnard4daaef72014-01-06 14:25:56 +010041
Manuel Pégourié-Gonnard2f2b3962018-11-12 15:06:57 +010042/**
43 * \brief Maximum ECDSA signature size for a given curve bit size
Manuel Pégourié-Gonnard63e93192015-03-31 11:15:48 +020044 *
Manuel Pégourié-Gonnard2f2b3962018-11-12 15:06:57 +010045 * \param bits Curve size in bits
46 * \return Maximum signature size in bytes
47 *
48 * \note This macro returns a compile-time constant if its argument
49 * is one. It may evaluate its argument multiple times.
50 */
51/*
Manuel Pégourié-Gonnard63e93192015-03-31 11:15:48 +020052 * Ecdsa-Sig-Value ::= SEQUENCE {
53 * r INTEGER,
54 * s INTEGER
55 * }
56 *
Manuel Pégourié-Gonnard2f2b3962018-11-12 15:06:57 +010057 * For each of r and s, the value (V) may include an extra initial "0" bit.
Manuel Pégourié-Gonnard63e93192015-03-31 11:15:48 +020058 */
David Horstmannceeaeb92023-01-05 15:44:23 +000059#define MBEDTLS_ECDSA_MAX_SIG_LEN(bits) \
60 (/*T,L of SEQUENCE*/ ((bits) >= 61 * 8 ? 3 : 2) + \
61 /*T,L of r,s*/ 2 * (((bits) >= 127 * 8 ? 3 : 2) + \
62 /*V of r,s*/ ((bits) + 8) / 8))
Manuel Pégourié-Gonnard2f2b3962018-11-12 15:06:57 +010063
Rose Zadikbff87d92018-01-25 21:58:53 +000064/** The maximal size of an ECDSA signature in Bytes. */
David Horstmannceeaeb92023-01-05 15:44:23 +000065#define MBEDTLS_ECDSA_MAX_LEN MBEDTLS_ECDSA_MAX_SIG_LEN(MBEDTLS_ECP_MAX_BITS)
Manuel Pégourié-Gonnard63e93192015-03-31 11:15:48 +020066
Manuel Pégourié-Gonnard32aa4372017-04-21 10:29:13 +020067#ifdef __cplusplus
68extern "C" {
69#endif
70
Manuel Pégourié-Gonnardbec2f452013-06-27 10:17:07 +020071/**
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +020072 * \brief The ECDSA context structure.
Manuel Pégourié-Gonnardeaf55be2017-08-23 14:40:21 +020073 *
74 * \warning Performing multiple operations concurrently on the same
75 * ECDSA context is not supported; objects of this type
76 * should not be shared between multiple threads.
Manuel Pégourié-Gonnardbec2f452013-06-27 10:17:07 +020077 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020078typedef mbedtls_ecp_keypair mbedtls_ecdsa_context;
Manuel Pégourié-Gonnardbec2f452013-06-27 10:17:07 +020079
Manuel Pégourié-Gonnard32aa4372017-04-21 10:29:13 +020080#if defined(MBEDTLS_ECP_RESTARTABLE)
81
82/**
Manuel Pégourié-Gonnarda0c5bcc2017-04-21 11:33:57 +020083 * \brief Internal restart context for ecdsa_verify()
84 *
Manuel Pégourié-Gonnardf0bbd7e2018-10-15 13:22:41 +020085 * \note Opaque struct, defined in ecdsa.c
Manuel Pégourié-Gonnarda0c5bcc2017-04-21 11:33:57 +020086 */
87typedef struct mbedtls_ecdsa_restart_ver mbedtls_ecdsa_restart_ver_ctx;
88
89/**
Manuel Pégourié-Gonnardb90883d2017-04-25 11:33:10 +020090 * \brief Internal restart context for ecdsa_sign()
91 *
92 * \note Opaque struct, defined in ecdsa.c
93 */
94typedef struct mbedtls_ecdsa_restart_sig mbedtls_ecdsa_restart_sig_ctx;
95
96#if defined(MBEDTLS_ECDSA_DETERMINISTIC)
97/**
98 * \brief Internal restart context for ecdsa_sign_det()
99 *
100 * \note Opaque struct, defined in ecdsa.c
101 */
102typedef struct mbedtls_ecdsa_restart_det mbedtls_ecdsa_restart_det_ctx;
103#endif
104
105/**
Manuel Pégourié-Gonnard32aa4372017-04-21 10:29:13 +0200106 * \brief General context for resuming ECDSA operations
107 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000108typedef struct {
Manuel Pégourié-Gonnard12e4a8b2018-09-12 10:55:15 +0200109 mbedtls_ecp_restart_ctx ecp; /*!< base context for ECP restart and
110 shared administrative info */
Manuel Pégourié-Gonnarda0c5bcc2017-04-21 11:33:57 +0200111 mbedtls_ecdsa_restart_ver_ctx *ver; /*!< ecdsa_verify() sub-context */
Manuel Pégourié-Gonnardb90883d2017-04-25 11:33:10 +0200112 mbedtls_ecdsa_restart_sig_ctx *sig; /*!< ecdsa_sign() sub-context */
113#if defined(MBEDTLS_ECDSA_DETERMINISTIC)
114 mbedtls_ecdsa_restart_det_ctx *det; /*!< ecdsa_sign_det() sub-context */
115#endif
Manuel Pégourié-Gonnard32aa4372017-04-21 10:29:13 +0200116} mbedtls_ecdsa_restart_ctx;
117
118#else /* MBEDTLS_ECP_RESTARTABLE */
119
120/* Now we can declare functions that take a pointer to that */
121typedef void mbedtls_ecdsa_restart_ctx;
122
123#endif /* MBEDTLS_ECP_RESTARTABLE */
Manuel Pégourié-Gonnard2aea1412013-01-26 16:33:44 +0100124
125/**
Christoph M. Wintersteiger0082f9d2019-01-07 13:47:30 +0000126 * \brief This function checks whether a given group can be used
127 * for ECDSA.
128 *
129 * \param gid The ECP group ID to check.
130 *
131 * \return \c 1 if the group can be used, \c 0 otherwise
132 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000133int mbedtls_ecdsa_can_do(mbedtls_ecp_group_id gid);
Christoph M. Wintersteiger0082f9d2019-01-07 13:47:30 +0000134
135/**
Rose Zadikbff87d92018-01-25 21:58:53 +0000136 * \brief This function computes the ECDSA signature of a
137 * previously-hashed message.
Manuel Pégourié-Gonnardb309ab22013-01-26 17:24:59 +0100138 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500139 * \note The deterministic version implemented in
140 * mbedtls_ecdsa_sign_det() is usually preferred.
Manuel Pégourié-Gonnardb309ab22013-01-26 17:24:59 +0100141 *
Janos Follath0a5154b2017-03-10 11:31:41 +0000142 * \note If the bitlength of the message hash is larger than the
Rose Zadik817297f2018-03-27 11:30:14 +0100143 * bitlength of the group order, then the hash is truncated
144 * as defined in <em>Standards for Efficient Cryptography Group
145 * (SECG): SEC1 Elliptic Curve Cryptography</em>, section
146 * 4.1.3, step 5.
Janos Follath0a5154b2017-03-10 11:31:41 +0000147 *
Rose Zadik817297f2018-03-27 11:30:14 +0100148 * \see ecp.h
149 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500150 * \param grp The context for the elliptic curve to use.
151 * This must be initialized and have group parameters
152 * set, for example through mbedtls_ecp_group_load().
153 * \param r The MPI context in which to store the first part
154 * the signature. This must be initialized.
155 * \param s The MPI context in which to store the second part
156 * the signature. This must be initialized.
157 * \param d The private signing key. This must be initialized.
158 * \param buf The content to be signed. This is usually the hash of
159 * the original data to be signed. This must be a readable
160 * buffer of length \p blen Bytes. It may be \c NULL if
161 * \p blen is zero.
162 * \param blen The length of \p buf in Bytes.
163 * \param f_rng The RNG function. This must not be \c NULL.
164 * \param p_rng The RNG context to be passed to \p f_rng. This may be
165 * \c NULL if \p f_rng doesn't need a context parameter.
Manuel Pégourié-Gonnardb309ab22013-01-26 17:24:59 +0100166 *
Rose Zadik817297f2018-03-27 11:30:14 +0100167 * \return \c 0 on success.
168 * \return An \c MBEDTLS_ERR_ECP_XXX
Rose Zadikbff87d92018-01-25 21:58:53 +0000169 * or \c MBEDTLS_MPI_XXX error code on failure.
Manuel Pégourié-Gonnardb309ab22013-01-26 17:24:59 +0100170 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000171int mbedtls_ecdsa_sign(mbedtls_ecp_group *grp, mbedtls_mpi *r, mbedtls_mpi *s,
172 const mbedtls_mpi *d, const unsigned char *buf, size_t blen,
173 int (*f_rng)(void *, unsigned char *, size_t), void *p_rng);
Manuel Pégourié-Gonnardb309ab22013-01-26 17:24:59 +0100174
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200175#if defined(MBEDTLS_ECDSA_DETERMINISTIC)
David Horstmannceeaeb92023-01-05 15:44:23 +0000176#if !defined(MBEDTLS_DEPRECATED_REMOVED)
Janos Follathe65e0592019-01-04 15:55:43 +0000177#if defined(MBEDTLS_DEPRECATED_WARNING)
178#define MBEDTLS_DEPRECATED __attribute__((deprecated))
179#else
180#define MBEDTLS_DEPRECATED
181#endif
Manuel Pégourié-Gonnard4daaef72014-01-06 14:25:56 +0100182/**
Rose Zadikbff87d92018-01-25 21:58:53 +0000183 * \brief This function computes the ECDSA signature of a
184 * previously-hashed message, deterministic version.
Manuel Pégourié-Gonnard4daaef72014-01-06 14:25:56 +0100185 *
Rose Zadikbff87d92018-01-25 21:58:53 +0000186 * For more information, see <em>RFC-6979: Deterministic
187 * Usage of the Digital Signature Algorithm (DSA) and Elliptic
188 * Curve Digital Signature Algorithm (ECDSA)</em>.
Manuel Pégourié-Gonnard4daaef72014-01-06 14:25:56 +0100189 *
Janos Follath0a5154b2017-03-10 11:31:41 +0000190 * \note If the bitlength of the message hash is larger than the
191 * bitlength of the group order, then the hash is truncated as
Rose Zadik817297f2018-03-27 11:30:14 +0100192 * defined in <em>Standards for Efficient Cryptography Group
193 * (SECG): SEC1 Elliptic Curve Cryptography</em>, section
194 * 4.1.3, step 5.
Janos Follath0a5154b2017-03-10 11:31:41 +0000195 *
Janos Follath75f2c202019-01-15 11:44:31 +0000196 * \warning Since the output of the internal RNG is always the same for
197 * the same key and message, this limits the efficiency of
198 * blinding and leaks information through side channels. For
199 * secure behavior use mbedtls_ecdsa_sign_det_ext() instead.
200 *
201 * (Optimally the blinding is a random value that is different
202 * on every execution. In this case the blinding is still
203 * random from the attackers perspective, but is the same on
204 * each execution. This means that this blinding does not
205 * prevent attackers from recovering secrets by combining
206 * several measurement traces, but may prevent some attacks
207 * that exploit relationships between secret data.)
208 *
Rose Zadik817297f2018-03-27 11:30:14 +0100209 * \see ecp.h
210 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500211 * \param grp The context for the elliptic curve to use.
212 * This must be initialized and have group parameters
213 * set, for example through mbedtls_ecp_group_load().
214 * \param r The MPI context in which to store the first part
215 * the signature. This must be initialized.
216 * \param s The MPI context in which to store the second part
217 * the signature. This must be initialized.
218 * \param d The private signing key. This must be initialized
219 * and setup, for example through mbedtls_ecp_gen_privkey().
220 * \param buf The hashed content to be signed. This must be a readable
221 * buffer of length \p blen Bytes. It may be \c NULL if
222 * \p blen is zero.
223 * \param blen The length of \p buf in Bytes.
224 * \param md_alg The hash algorithm used to hash the original data.
Manuel Pégourié-Gonnard4daaef72014-01-06 14:25:56 +0100225 *
Rose Zadik817297f2018-03-27 11:30:14 +0100226 * \return \c 0 on success.
Rose Zadik14d0d572018-04-16 16:09:30 +0100227 * \return An \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_MPI_XXX
Rose Zadikbff87d92018-01-25 21:58:53 +0000228 * error code on failure.
Manuel Pégourié-Gonnard4daaef72014-01-06 14:25:56 +0100229 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000230int mbedtls_ecdsa_sign_det(mbedtls_ecp_group *grp, mbedtls_mpi *r,
231 mbedtls_mpi *s, const mbedtls_mpi *d,
232 const unsigned char *buf, size_t blen,
233 mbedtls_md_type_t md_alg) MBEDTLS_DEPRECATED;
Janos Follathe65e0592019-01-04 15:55:43 +0000234#undef MBEDTLS_DEPRECATED
235#endif /* MBEDTLS_DEPRECATED_REMOVED */
236
Janos Follathdca667a2019-01-04 14:32:30 +0000237/**
238 * \brief This function computes the ECDSA signature of a
239 * previously-hashed message, deterministic version.
240 *
241 * For more information, see <em>RFC-6979: Deterministic
242 * Usage of the Digital Signature Algorithm (DSA) and Elliptic
243 * Curve Digital Signature Algorithm (ECDSA)</em>.
244 *
245 * \note If the bitlength of the message hash is larger than the
246 * bitlength of the group order, then the hash is truncated as
247 * defined in <em>Standards for Efficient Cryptography Group
248 * (SECG): SEC1 Elliptic Curve Cryptography</em>, section
249 * 4.1.3, step 5.
250 *
251 * \see ecp.h
252 *
253 * \param grp The context for the elliptic curve to use.
254 * This must be initialized and have group parameters
255 * set, for example through mbedtls_ecp_group_load().
256 * \param r The MPI context in which to store the first part
257 * the signature. This must be initialized.
258 * \param s The MPI context in which to store the second part
259 * the signature. This must be initialized.
260 * \param d The private signing key. This must be initialized
261 * and setup, for example through mbedtls_ecp_gen_privkey().
262 * \param buf The hashed content to be signed. This must be a readable
263 * buffer of length \p blen Bytes. It may be \c NULL if
264 * \p blen is zero.
265 * \param blen The length of \p buf in Bytes.
266 * \param md_alg The hash algorithm used to hash the original data.
267 * \param f_rng_blind The RNG function used for blinding. This must not be
268 * \c NULL.
269 * \param p_rng_blind The RNG context to be passed to \p f_rng. This may be
270 * \c NULL if \p f_rng doesn't need a context parameter.
271 *
272 * \return \c 0 on success.
273 * \return An \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_MPI_XXX
274 * error code on failure.
275 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000276int mbedtls_ecdsa_sign_det_ext(mbedtls_ecp_group *grp, mbedtls_mpi *r,
277 mbedtls_mpi *s, const mbedtls_mpi *d,
278 const unsigned char *buf, size_t blen,
279 mbedtls_md_type_t md_alg,
280 int (*f_rng_blind)(void *, unsigned char *, size_t),
281 void *p_rng_blind);
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200282#endif /* MBEDTLS_ECDSA_DETERMINISTIC */
Manuel Pégourié-Gonnard4daaef72014-01-06 14:25:56 +0100283
Manuel Pégourié-Gonnardb309ab22013-01-26 17:24:59 +0100284/**
Rose Zadikbff87d92018-01-25 21:58:53 +0000285 * \brief This function verifies the ECDSA signature of a
286 * previously-hashed message.
Manuel Pégourié-Gonnard3aeb5a72013-01-26 18:05:50 +0100287 *
Janos Follath0a5154b2017-03-10 11:31:41 +0000288 * \note If the bitlength of the message hash is larger than the
289 * bitlength of the group order, then the hash is truncated as
Rose Zadik817297f2018-03-27 11:30:14 +0100290 * defined in <em>Standards for Efficient Cryptography Group
291 * (SECG): SEC1 Elliptic Curve Cryptography</em>, section
292 * 4.1.4, step 3.
Janos Follath0a5154b2017-03-10 11:31:41 +0000293 *
Rose Zadik817297f2018-03-27 11:30:14 +0100294 * \see ecp.h
295 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500296 * \param grp The ECP group to use.
297 * This must be initialized and have group parameters
298 * set, for example through mbedtls_ecp_group_load().
299 * \param buf The hashed content that was signed. This must be a readable
300 * buffer of length \p blen Bytes. It may be \c NULL if
301 * \p blen is zero.
302 * \param blen The length of \p buf in Bytes.
303 * \param Q The public key to use for verification. This must be
304 * initialized and setup.
Rose Zadikbff87d92018-01-25 21:58:53 +0000305 * \param r The first integer of the signature.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500306 * This must be initialized.
Rose Zadikbff87d92018-01-25 21:58:53 +0000307 * \param s The second integer of the signature.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500308 * This must be initialized.
Manuel Pégourié-Gonnard3aeb5a72013-01-26 18:05:50 +0100309 *
Rose Zadik817297f2018-03-27 11:30:14 +0100310 * \return \c 0 on success.
Rose Zadik817297f2018-03-27 11:30:14 +0100311 * \return An \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_MPI_XXX
Dave Rodgmanc60b10a2022-08-19 11:08:07 +0100312 * error code on failure.
Manuel Pégourié-Gonnard3aeb5a72013-01-26 18:05:50 +0100313 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000314int mbedtls_ecdsa_verify(mbedtls_ecp_group *grp,
315 const unsigned char *buf, size_t blen,
316 const mbedtls_ecp_point *Q, const mbedtls_mpi *r,
317 const mbedtls_mpi *s);
Manuel Pégourié-Gonnard3aeb5a72013-01-26 18:05:50 +0100318
319/**
Rose Zadikbff87d92018-01-25 21:58:53 +0000320 * \brief This function computes the ECDSA signature and writes it
321 * to a buffer, serialized as defined in <em>RFC-4492:
322 * Elliptic Curve Cryptography (ECC) Cipher Suites for
323 * Transport Layer Security (TLS)</em>.
Manuel Pégourié-Gonnardb694b482013-08-08 13:30:57 +0200324 *
Rose Zadikbff87d92018-01-25 21:58:53 +0000325 * \warning It is not thread-safe to use the same context in
326 * multiple threads.
Manuel Pégourié-Gonnarddfdcac92015-03-31 11:41:42 +0200327 *
Rose Zadikbff87d92018-01-25 21:58:53 +0000328 * \note The deterministic version is used if
329 * #MBEDTLS_ECDSA_DETERMINISTIC is defined. For more
330 * information, see <em>RFC-6979: Deterministic Usage
331 * of the Digital Signature Algorithm (DSA) and Elliptic
332 * Curve Digital Signature Algorithm (ECDSA)</em>.
Manuel Pégourié-Gonnardb694b482013-08-08 13:30:57 +0200333 *
Janos Follath0a5154b2017-03-10 11:31:41 +0000334 * \note If the bitlength of the message hash is larger than the
335 * bitlength of the group order, then the hash is truncated as
Rose Zadikbff87d92018-01-25 21:58:53 +0000336 * defined in <em>Standards for Efficient Cryptography Group
337 * (SECG): SEC1 Elliptic Curve Cryptography</em>, section
338 * 4.1.3, step 5.
Janos Follath0a5154b2017-03-10 11:31:41 +0000339 *
Rose Zadikbff87d92018-01-25 21:58:53 +0000340 * \see ecp.h
Rose Zadik817297f2018-03-27 11:30:14 +0100341 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500342 * \param ctx The ECDSA context to use. This must be initialized
343 * and have a group and private key bound to it, for example
344 * via mbedtls_ecdsa_genkey() or mbedtls_ecdsa_from_keypair().
Rose Zadik817297f2018-03-27 11:30:14 +0100345 * \param md_alg The message digest that was used to hash the message.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500346 * \param hash The message hash to be signed. This must be a readable
347 * buffer of length \p blen Bytes.
348 * \param hlen The length of the hash \p hash in Bytes.
349 * \param sig The buffer to which to write the signature. This must be a
350 * writable buffer of length at least twice as large as the
351 * size of the curve used, plus 9. For example, 73 Bytes if
352 * a 256-bit curve is used. A buffer length of
353 * #MBEDTLS_ECDSA_MAX_LEN is always safe.
354 * \param slen The address at which to store the actual length of
355 * the signature written. Must not be \c NULL.
356 * \param f_rng The RNG function. This must not be \c NULL if
357 * #MBEDTLS_ECDSA_DETERMINISTIC is unset. Otherwise,
Janos Follathe65e0592019-01-04 15:55:43 +0000358 * it is used only for blinding and may be set to \c NULL, but
359 * doing so is DEPRECATED.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500360 * \param p_rng The RNG context to be passed to \p f_rng. This may be
361 * \c NULL if \p f_rng is \c NULL or doesn't use a context.
Rose Zadik817297f2018-03-27 11:30:14 +0100362 *
363 * \return \c 0 on success.
364 * \return An \c MBEDTLS_ERR_ECP_XXX, \c MBEDTLS_ERR_MPI_XXX or
365 * \c MBEDTLS_ERR_ASN1_XXX error code on failure.
Manuel Pégourié-Gonnardb694b482013-08-08 13:30:57 +0200366 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000367int mbedtls_ecdsa_write_signature(mbedtls_ecdsa_context *ctx,
368 mbedtls_md_type_t md_alg,
369 const unsigned char *hash, size_t hlen,
370 unsigned char *sig, size_t *slen,
371 int (*f_rng)(void *, unsigned char *, size_t),
372 void *p_rng);
Manuel Pégourié-Gonnardb694b482013-08-08 13:30:57 +0200373
Manuel Pégourié-Gonnardaddb10e2017-04-21 12:54:46 +0200374/**
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +0200375 * \brief This function computes the ECDSA signature and writes it
376 * to a buffer, in a restartable way.
Manuel Pégourié-Gonnardaddb10e2017-04-21 12:54:46 +0200377 *
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +0200378 * \see \c mbedtls_ecdsa_write_signature()
379 *
380 * \note This function is like \c mbedtls_ecdsa_write_signature()
381 * but it can return early and restart according to the limit
Manuel Pégourié-Gonnardaddb10e2017-04-21 12:54:46 +0200382 * set with \c mbedtls_ecp_set_max_ops() to reduce blocking.
383 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500384 * \param ctx The ECDSA context to use. This must be initialized
385 * and have a group and private key bound to it, for example
386 * via mbedtls_ecdsa_genkey() or mbedtls_ecdsa_from_keypair().
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +0200387 * \param md_alg The message digest that was used to hash the message.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500388 * \param hash The message hash to be signed. This must be a readable
389 * buffer of length \p blen Bytes.
390 * \param hlen The length of the hash \p hash in Bytes.
391 * \param sig The buffer to which to write the signature. This must be a
392 * writable buffer of length at least twice as large as the
393 * size of the curve used, plus 9. For example, 73 Bytes if
394 * a 256-bit curve is used. A buffer length of
395 * #MBEDTLS_ECDSA_MAX_LEN is always safe.
396 * \param slen The address at which to store the actual length of
397 * the signature written. Must not be \c NULL.
398 * \param f_rng The RNG function. This must not be \c NULL if
399 * #MBEDTLS_ECDSA_DETERMINISTIC is unset. Otherwise,
400 * it is unused and may be set to \c NULL.
401 * \param p_rng The RNG context to be passed to \p f_rng. This may be
402 * \c NULL if \p f_rng is \c NULL or doesn't use a context.
403 * \param rs_ctx The restart context to use. This may be \c NULL to disable
404 * restarting. If it is not \c NULL, it must point to an
405 * initialized restart context.
Manuel Pégourié-Gonnardaddb10e2017-04-21 12:54:46 +0200406 *
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +0200407 * \return \c 0 on success.
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +0200408 * \return #MBEDTLS_ERR_ECP_IN_PROGRESS if maximum number of
Manuel Pégourié-Gonnardaddb10e2017-04-21 12:54:46 +0200409 * operations was reached: see \c mbedtls_ecp_set_max_ops().
Manuel Pégourié-Gonnardf0bbd7e2018-10-15 13:22:41 +0200410 * \return Another \c MBEDTLS_ERR_ECP_XXX, \c MBEDTLS_ERR_MPI_XXX or
411 * \c MBEDTLS_ERR_ASN1_XXX error code on failure.
Manuel Pégourié-Gonnardaddb10e2017-04-21 12:54:46 +0200412 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000413int mbedtls_ecdsa_write_signature_restartable(mbedtls_ecdsa_context *ctx,
414 mbedtls_md_type_t md_alg,
415 const unsigned char *hash, size_t hlen,
416 unsigned char *sig, size_t *slen,
417 int (*f_rng)(void *, unsigned char *, size_t),
418 void *p_rng,
419 mbedtls_ecdsa_restart_ctx *rs_ctx);
Manuel Pégourié-Gonnardaddb10e2017-04-21 12:54:46 +0200420
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200421#if defined(MBEDTLS_ECDSA_DETERMINISTIC)
David Horstmannceeaeb92023-01-05 15:44:23 +0000422#if !defined(MBEDTLS_DEPRECATED_REMOVED)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200423#if defined(MBEDTLS_DEPRECATED_WARNING)
424#define MBEDTLS_DEPRECATED __attribute__((deprecated))
Manuel Pégourié-Gonnarddfdcac92015-03-31 11:41:42 +0200425#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200426#define MBEDTLS_DEPRECATED
Manuel Pégourié-Gonnarddfdcac92015-03-31 11:41:42 +0200427#endif
Manuel Pégourié-Gonnard937340b2014-01-06 10:27:16 +0100428/**
Rose Zadik817297f2018-03-27 11:30:14 +0100429 * \brief This function computes an ECDSA signature and writes
430 * it to a buffer, serialized as defined in <em>RFC-4492:
431 * Elliptic Curve Cryptography (ECC) Cipher Suites for
432 * Transport Layer Security (TLS)</em>.
Manuel Pégourié-Gonnard937340b2014-01-06 10:27:16 +0100433 *
Rose Zadik817297f2018-03-27 11:30:14 +0100434 * The deterministic version is defined in <em>RFC-6979:
435 * Deterministic Usage of the Digital Signature Algorithm (DSA)
436 * and Elliptic Curve Digital Signature Algorithm (ECDSA)</em>.
Manuel Pégourié-Gonnarddfdcac92015-03-31 11:41:42 +0200437 *
Rose Zadikbff87d92018-01-25 21:58:53 +0000438 * \warning It is not thread-safe to use the same context in
439 * multiple threads.
Manuel Pégourié-Gonnard937340b2014-01-06 10:27:16 +0100440 *
Janos Follath0a5154b2017-03-10 11:31:41 +0000441 * \note If the bitlength of the message hash is larger than the
442 * bitlength of the group order, then the hash is truncated as
Rose Zadikbff87d92018-01-25 21:58:53 +0000443 * defined in <em>Standards for Efficient Cryptography Group
444 * (SECG): SEC1 Elliptic Curve Cryptography</em>, section
445 * 4.1.3, step 5.
Janos Follath0a5154b2017-03-10 11:31:41 +0000446 *
Rose Zadikbff87d92018-01-25 21:58:53 +0000447 * \see ecp.h
Rose Zadik817297f2018-03-27 11:30:14 +0100448 *
Rose Zadikec5d4162018-04-17 15:55:28 +0100449 * \deprecated Superseded by mbedtls_ecdsa_write_signature() in
450 * Mbed TLS version 2.0 and later.
Rose Zadik817297f2018-03-27 11:30:14 +0100451 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500452 * \param ctx The ECDSA context to use. This must be initialized
453 * and have a group and private key bound to it, for example
454 * via mbedtls_ecdsa_genkey() or mbedtls_ecdsa_from_keypair().
455 * \param hash The message hash to be signed. This must be a readable
456 * buffer of length \p blen Bytes.
457 * \param hlen The length of the hash \p hash in Bytes.
458 * \param sig The buffer to which to write the signature. This must be a
459 * writable buffer of length at least twice as large as the
460 * size of the curve used, plus 9. For example, 73 Bytes if
461 * a 256-bit curve is used. A buffer length of
462 * #MBEDTLS_ECDSA_MAX_LEN is always safe.
463 * \param slen The address at which to store the actual length of
464 * the signature written. Must not be \c NULL.
465 * \param md_alg The message digest that was used to hash the message.
Rose Zadik817297f2018-03-27 11:30:14 +0100466 *
467 * \return \c 0 on success.
468 * \return An \c MBEDTLS_ERR_ECP_XXX, \c MBEDTLS_ERR_MPI_XXX or
469 * \c MBEDTLS_ERR_ASN1_XXX error code on failure.
Manuel Pégourié-Gonnard937340b2014-01-06 10:27:16 +0100470 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000471int mbedtls_ecdsa_write_signature_det(mbedtls_ecdsa_context *ctx,
472 const unsigned char *hash, size_t hlen,
473 unsigned char *sig, size_t *slen,
474 mbedtls_md_type_t md_alg) MBEDTLS_DEPRECATED;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200475#undef MBEDTLS_DEPRECATED
476#endif /* MBEDTLS_DEPRECATED_REMOVED */
477#endif /* MBEDTLS_ECDSA_DETERMINISTIC */
Manuel Pégourié-Gonnard937340b2014-01-06 10:27:16 +0100478
Manuel Pégourié-Gonnardb694b482013-08-08 13:30:57 +0200479/**
Rose Zadikbff87d92018-01-25 21:58:53 +0000480 * \brief This function reads and verifies an ECDSA signature.
Manuel Pégourié-Gonnardb694b482013-08-08 13:30:57 +0200481 *
Janos Follath0a5154b2017-03-10 11:31:41 +0000482 * \note If the bitlength of the message hash is larger than the
483 * bitlength of the group order, then the hash is truncated as
Rose Zadikbff87d92018-01-25 21:58:53 +0000484 * defined in <em>Standards for Efficient Cryptography Group
485 * (SECG): SEC1 Elliptic Curve Cryptography</em>, section
486 * 4.1.4, step 3.
Janos Follath0a5154b2017-03-10 11:31:41 +0000487 *
Rose Zadikbff87d92018-01-25 21:58:53 +0000488 * \see ecp.h
Rose Zadik817297f2018-03-27 11:30:14 +0100489 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500490 * \param ctx The ECDSA context to use. This must be initialized
491 * and have a group and public key bound to it.
492 * \param hash The message hash that was signed. This must be a readable
493 * buffer of length \p size Bytes.
494 * \param hlen The size of the hash \p hash.
495 * \param sig The signature to read and verify. This must be a readable
496 * buffer of length \p slen Bytes.
497 * \param slen The size of \p sig in Bytes.
Rose Zadik817297f2018-03-27 11:30:14 +0100498 *
499 * \return \c 0 on success.
500 * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if signature is invalid.
Rose Zadikabc9ec72018-04-23 06:16:40 +0100501 * \return #MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH if there is a valid
502 * signature in \p sig, but its length is less than \p siglen.
Rose Zadik817297f2018-03-27 11:30:14 +0100503 * \return An \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_ERR_MPI_XXX
504 * error code on failure for any other reason.
Manuel Pégourié-Gonnardb694b482013-08-08 13:30:57 +0200505 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000506int mbedtls_ecdsa_read_signature(mbedtls_ecdsa_context *ctx,
507 const unsigned char *hash, size_t hlen,
508 const unsigned char *sig, size_t slen);
Manuel Pégourié-Gonnardb694b482013-08-08 13:30:57 +0200509
510/**
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +0200511 * \brief This function reads and verifies an ECDSA signature,
512 * in a restartable way.
Manuel Pégourié-Gonnard32aa4372017-04-21 10:29:13 +0200513 *
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +0200514 * \see \c mbedtls_ecdsa_read_signature()
515 *
516 * \note This function is like \c mbedtls_ecdsa_read_signature()
517 * but it can return early and restart according to the limit
Manuel Pégourié-Gonnard32aa4372017-04-21 10:29:13 +0200518 * set with \c mbedtls_ecp_set_max_ops() to reduce blocking.
519 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500520 * \param ctx The ECDSA context to use. This must be initialized
521 * and have a group and public key bound to it.
522 * \param hash The message hash that was signed. This must be a readable
523 * buffer of length \p size Bytes.
524 * \param hlen The size of the hash \p hash.
525 * \param sig The signature to read and verify. This must be a readable
526 * buffer of length \p slen Bytes.
527 * \param slen The size of \p sig in Bytes.
528 * \param rs_ctx The restart context to use. This may be \c NULL to disable
529 * restarting. If it is not \c NULL, it must point to an
530 * initialized restart context.
Manuel Pégourié-Gonnard32aa4372017-04-21 10:29:13 +0200531 *
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +0200532 * \return \c 0 on success.
533 * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if signature is invalid.
534 * \return #MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH if there is a valid
535 * signature in \p sig, but its length is less than \p siglen.
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +0200536 * \return #MBEDTLS_ERR_ECP_IN_PROGRESS if maximum number of
Manuel Pégourié-Gonnard32aa4372017-04-21 10:29:13 +0200537 * operations was reached: see \c mbedtls_ecp_set_max_ops().
Manuel Pégourié-Gonnardf0bbd7e2018-10-15 13:22:41 +0200538 * \return Another \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_ERR_MPI_XXX
539 * error code on failure for any other reason.
Manuel Pégourié-Gonnard32aa4372017-04-21 10:29:13 +0200540 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000541int mbedtls_ecdsa_read_signature_restartable(mbedtls_ecdsa_context *ctx,
542 const unsigned char *hash, size_t hlen,
543 const unsigned char *sig, size_t slen,
544 mbedtls_ecdsa_restart_ctx *rs_ctx);
Christoph M. Wintersteigeref17e3b2019-02-15 12:52:09 +0000545
Manuel Pégourié-Gonnard32aa4372017-04-21 10:29:13 +0200546/**
Rose Zadikbff87d92018-01-25 21:58:53 +0000547 * \brief This function generates an ECDSA keypair on the given curve.
Manuel Pégourié-Gonnard8eebd012013-08-09 16:21:34 +0200548 *
Rose Zadik817297f2018-03-27 11:30:14 +0100549 * \see ecp.h
Manuel Pégourié-Gonnard8eebd012013-08-09 16:21:34 +0200550 *
Rose Zadikbff87d92018-01-25 21:58:53 +0000551 * \param ctx The ECDSA context to store the keypair in.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500552 * This must be initialized.
Rose Zadikbff87d92018-01-25 21:58:53 +0000553 * \param gid The elliptic curve to use. One of the various
554 * \c MBEDTLS_ECP_DP_XXX macros depending on configuration.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500555 * \param f_rng The RNG function to use. This must not be \c NULL.
556 * \param p_rng The RNG context to be passed to \p f_rng. This may be
557 * \c NULL if \p f_rng doesn't need a context argument.
Manuel Pégourié-Gonnard8eebd012013-08-09 16:21:34 +0200558 *
Rose Zadik817297f2018-03-27 11:30:14 +0100559 * \return \c 0 on success.
560 * \return An \c MBEDTLS_ERR_ECP_XXX code on failure.
Manuel Pégourié-Gonnard8eebd012013-08-09 16:21:34 +0200561 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000562int mbedtls_ecdsa_genkey(mbedtls_ecdsa_context *ctx, mbedtls_ecp_group_id gid,
563 int (*f_rng)(void *, unsigned char *, size_t), void *p_rng);
Manuel Pégourié-Gonnard8eebd012013-08-09 16:21:34 +0200564
565/**
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500566 * \brief This function sets up an ECDSA context from an EC key pair.
Manuel Pégourié-Gonnardf4999932013-08-12 17:02:59 +0200567 *
Rose Zadik817297f2018-03-27 11:30:14 +0100568 * \see ecp.h
Manuel Pégourié-Gonnardf4999932013-08-12 17:02:59 +0200569 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500570 * \param ctx The ECDSA context to setup. This must be initialized.
571 * \param key The EC key to use. This must be initialized and hold
572 * a private-public key pair or a public key. In the former
573 * case, the ECDSA context may be used for signature creation
574 * and verification after this call. In the latter case, it
575 * may be used for signature verification.
Manuel Pégourié-Gonnardf4999932013-08-12 17:02:59 +0200576 *
Rose Zadik817297f2018-03-27 11:30:14 +0100577 * \return \c 0 on success.
578 * \return An \c MBEDTLS_ERR_ECP_XXX code on failure.
Manuel Pégourié-Gonnardf4999932013-08-12 17:02:59 +0200579 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000580int mbedtls_ecdsa_from_keypair(mbedtls_ecdsa_context *ctx,
581 const mbedtls_ecp_keypair *key);
Manuel Pégourié-Gonnardf4999932013-08-12 17:02:59 +0200582
583/**
Rose Zadikbff87d92018-01-25 21:58:53 +0000584 * \brief This function initializes an ECDSA context.
Manuel Pégourié-Gonnard7c8934e2013-06-27 12:54:02 +0200585 *
Rose Zadikbff87d92018-01-25 21:58:53 +0000586 * \param ctx The ECDSA context to initialize.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500587 * This must not be \c NULL.
Manuel Pégourié-Gonnard7c8934e2013-06-27 12:54:02 +0200588 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000589void mbedtls_ecdsa_init(mbedtls_ecdsa_context *ctx);
Manuel Pégourié-Gonnard7c8934e2013-06-27 12:54:02 +0200590
591/**
Rose Zadikbff87d92018-01-25 21:58:53 +0000592 * \brief This function frees an ECDSA context.
Manuel Pégourié-Gonnard7c8934e2013-06-27 12:54:02 +0200593 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500594 * \param ctx The ECDSA context to free. This may be \c NULL,
595 * in which case this function does nothing. If it
596 * is not \c NULL, it must be initialized.
Manuel Pégourié-Gonnard7c8934e2013-06-27 12:54:02 +0200597 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000598void mbedtls_ecdsa_free(mbedtls_ecdsa_context *ctx);
Manuel Pégourié-Gonnard7c8934e2013-06-27 12:54:02 +0200599
Manuel Pégourié-Gonnard32aa4372017-04-21 10:29:13 +0200600#if defined(MBEDTLS_ECP_RESTARTABLE)
601/**
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500602 * \brief Initialize a restart context.
603 *
604 * \param ctx The restart context to initialize.
605 * This must not be \c NULL.
Manuel Pégourié-Gonnard32aa4372017-04-21 10:29:13 +0200606 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000607void mbedtls_ecdsa_restart_init(mbedtls_ecdsa_restart_ctx *ctx);
Manuel Pégourié-Gonnard32aa4372017-04-21 10:29:13 +0200608
609/**
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500610 * \brief Free the components of a restart context.
611 *
612 * \param ctx The restart context to free. This may be \c NULL,
613 * in which case this function does nothing. If it
614 * is not \c NULL, it must be initialized.
Manuel Pégourié-Gonnard32aa4372017-04-21 10:29:13 +0200615 */
David Horstmannceeaeb92023-01-05 15:44:23 +0000616void mbedtls_ecdsa_restart_free(mbedtls_ecdsa_restart_ctx *ctx);
Manuel Pégourié-Gonnard32aa4372017-04-21 10:29:13 +0200617#endif /* MBEDTLS_ECP_RESTARTABLE */
618
Manuel Pégourié-Gonnard2aea1412013-01-26 16:33:44 +0100619#ifdef __cplusplus
620}
621#endif
622
Paul Bakker9af723c2014-05-01 13:03:14 +0200623#endif /* ecdsa.h */