| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  Elliptic curve DSA | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  |  *  Copyright The Mbed TLS Contributors | 
					
						
							| 
									
										
										
										
											2024-01-30 14:09:13 +01:00
										 |  |  |  *  SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * References: | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2023-08-04 18:09:03 +02:00
										 |  |  |  * SEC1 https://www.secg.org/sec1-v2.pdf
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #include "common.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECDSA_C)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "mbedtls/ecdsa.h"
 | 
					
						
							|  |  |  | #include "mbedtls/asn1write.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECDSA_DETERMINISTIC)
 | 
					
						
							|  |  |  | #include "mbedtls/hmac_drbg.h"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #include "mbedtls/platform.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "mbedtls/platform_util.h"
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #include "mbedtls/error.h"
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Parameter validation macros based on platform_util.h */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | #define ECDSA_VALIDATE_RET(cond)    \
 | 
					
						
							|  |  |  |     MBEDTLS_INTERNAL_VALIDATE_RET(cond, MBEDTLS_ERR_ECP_BAD_INPUT_DATA) | 
					
						
							|  |  |  | #define ECDSA_VALIDATE(cond)        \
 | 
					
						
							|  |  |  |     MBEDTLS_INTERNAL_VALIDATE(cond) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_RESTARTABLE)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Sub-context for ecdsa_verify() | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | struct mbedtls_ecdsa_restart_ver { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     mbedtls_mpi u1, u2;     /* intermediate values  */ | 
					
						
							|  |  |  |     enum {                  /* what to do next?     */ | 
					
						
							|  |  |  |         ecdsa_ver_init = 0, /* getting started      */ | 
					
						
							|  |  |  |         ecdsa_ver_muladd,   /* muladd step          */ | 
					
						
							|  |  |  |     } state; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Init verify restart sub-context | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ecdsa_restart_ver_init(mbedtls_ecdsa_restart_ver_ctx *ctx) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_init(&ctx->u1); | 
					
						
							|  |  |  |     mbedtls_mpi_init(&ctx->u2); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     ctx->state = ecdsa_ver_init; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Free the components of a verify restart sub-context | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ecdsa_restart_ver_free(mbedtls_ecdsa_restart_ver_ctx *ctx) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ctx == NULL) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&ctx->u1); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&ctx->u2); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ecdsa_restart_ver_init(ctx); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Sub-context for ecdsa_sign() | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | struct mbedtls_ecdsa_restart_sig { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     int sign_tries; | 
					
						
							|  |  |  |     int key_tries; | 
					
						
							|  |  |  |     mbedtls_mpi k;          /* per-signature random */ | 
					
						
							|  |  |  |     mbedtls_mpi r;          /* r value              */ | 
					
						
							|  |  |  |     enum {                  /* what to do next?     */ | 
					
						
							|  |  |  |         ecdsa_sig_init = 0, /* getting started      */ | 
					
						
							|  |  |  |         ecdsa_sig_mul,      /* doing ecp_mul()      */ | 
					
						
							|  |  |  |         ecdsa_sig_modn,     /* mod N computations   */ | 
					
						
							|  |  |  |     } state; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Init verify sign sub-context | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ecdsa_restart_sig_init(mbedtls_ecdsa_restart_sig_ctx *ctx) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     ctx->sign_tries = 0; | 
					
						
							|  |  |  |     ctx->key_tries = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_init(&ctx->k); | 
					
						
							|  |  |  |     mbedtls_mpi_init(&ctx->r); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     ctx->state = ecdsa_sig_init; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Free the components of a sign restart sub-context | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ecdsa_restart_sig_free(mbedtls_ecdsa_restart_sig_ctx *ctx) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ctx == NULL) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&ctx->k); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&ctx->r); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECDSA_DETERMINISTIC)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Sub-context for ecdsa_sign_det() | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | struct mbedtls_ecdsa_restart_det { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     mbedtls_hmac_drbg_context rng_ctx;  /* DRBG state   */ | 
					
						
							|  |  |  |     enum {                      /* what to do next?     */ | 
					
						
							|  |  |  |         ecdsa_det_init = 0,     /* getting started      */ | 
					
						
							|  |  |  |         ecdsa_det_sign,         /* make signature       */ | 
					
						
							|  |  |  |     } state; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Init verify sign_det sub-context | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ecdsa_restart_det_init(mbedtls_ecdsa_restart_det_ctx *ctx) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_hmac_drbg_init(&ctx->rng_ctx); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     ctx->state = ecdsa_det_init; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Free the components of a sign_det restart sub-context | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ecdsa_restart_det_free(mbedtls_ecdsa_restart_det_ctx *ctx) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ctx == NULL) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_hmac_drbg_free(&ctx->rng_ctx); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ecdsa_restart_det_init(ctx); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_ECDSA_DETERMINISTIC */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | #define ECDSA_RS_ECP    (rs_ctx == NULL ? NULL : &rs_ctx->ecp)
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Utility macro for checking and updating ops budget */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | #define ECDSA_BUDGET(ops)   \
 | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_ecp_check_budget(grp, ECDSA_RS_ECP, ops)); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Call this when entering a function that needs its own sub-context */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | #define ECDSA_RS_ENTER(SUB)   do {                                 \
 | 
					
						
							|  |  |  |         /* reset ops count for this call if top-level */                 \ | 
					
						
							|  |  |  |         if (rs_ctx != NULL && rs_ctx->ecp.depth++ == 0)                 \ | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         rs_ctx->ecp.ops_done = 0;                                    \ | 
					
						
							|  |  |  |                                                                      \ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         /* set up our own sub-context if needed */                       \ | 
					
						
							|  |  |  |         if (mbedtls_ecp_restart_is_enabled() &&                          \ | 
					
						
							|  |  |  |             rs_ctx != NULL && rs_ctx->SUB == NULL)                      \ | 
					
						
							|  |  |  |         {                                                                \ | 
					
						
							|  |  |  |             rs_ctx->SUB = mbedtls_calloc(1, sizeof(*rs_ctx->SUB));   \ | 
					
						
							|  |  |  |             if (rs_ctx->SUB == NULL)                                    \ | 
					
						
							|  |  |  |             return MBEDTLS_ERR_ECP_ALLOC_FAILED;                  \ | 
					
						
							|  |  |  |                                                                    \ | 
					
						
							|  |  |  |             ecdsa_restart_## SUB ##_init(rs_ctx->SUB);                 \ | 
					
						
							|  |  |  |         }                                                                \ | 
					
						
							|  |  |  | } while (0) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Call this when leaving a function that needs its own sub-context */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | #define ECDSA_RS_LEAVE(SUB)   do {                                 \
 | 
					
						
							|  |  |  |         /* clear our sub-context when not in progress (done or error) */ \ | 
					
						
							|  |  |  |         if (rs_ctx != NULL && rs_ctx->SUB != NULL &&                     \ | 
					
						
							|  |  |  |             ret != MBEDTLS_ERR_ECP_IN_PROGRESS)                         \ | 
					
						
							|  |  |  |         {                                                                \ | 
					
						
							|  |  |  |             ecdsa_restart_## SUB ##_free(rs_ctx->SUB);                 \ | 
					
						
							|  |  |  |             mbedtls_free(rs_ctx->SUB);                                 \ | 
					
						
							|  |  |  |             rs_ctx->SUB = NULL;                                          \ | 
					
						
							|  |  |  |         }                                                                \ | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |                                                                      \ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (rs_ctx != NULL)                                             \ | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         rs_ctx->ecp.depth--;                                         \ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | } while (0) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #else /* MBEDTLS_ECP_RESTARTABLE */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define ECDSA_RS_ECP    NULL
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | #define ECDSA_BUDGET(ops)     /* no-op; for compatibility */
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | #define ECDSA_RS_ENTER(SUB)   (void) rs_ctx
 | 
					
						
							|  |  |  | #define ECDSA_RS_LEAVE(SUB)   (void) rs_ctx
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_ECP_RESTARTABLE */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-12 18:27:58 +01:00
										 |  |  | #if defined(MBEDTLS_ECDSA_DETERMINISTIC) || \
 | 
					
						
							|  |  |  |     !defined(MBEDTLS_ECDSA_SIGN_ALT)     || \ | 
					
						
							|  |  |  |     !defined(MBEDTLS_ECDSA_VERIFY_ALT) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Derive a suitable integer for group grp from a buffer of length len | 
					
						
							|  |  |  |  * SEC1 4.1.3 step 5 aka SEC1 4.1.4 step 3 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int derive_mpi(const mbedtls_ecp_group *grp, mbedtls_mpi *x, | 
					
						
							|  |  |  |                       const unsigned char *buf, size_t blen) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     size_t n_size = (grp->nbits + 7) / 8; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     size_t use_size = blen > n_size ? n_size : blen; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_read_binary(x, buf, use_size)); | 
					
						
							|  |  |  |     if (use_size * 8 > grp->nbits) { | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_shift_r(x, use_size * 8 - grp->nbits)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* While at it, reduce modulo N */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_mpi_cmp_mpi(x, &grp->N) >= 0) { | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_sub_mpi(x, x, &grp->N)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-03-12 18:27:58 +01:00
										 |  |  | #endif /* ECDSA_DETERMINISTIC || !ECDSA_SIGN_ALT || !ECDSA_VERIFY_ALT */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-21 14:06:23 +02:00
										 |  |  | int mbedtls_ecdsa_can_do(mbedtls_ecp_group_id gid) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     switch (gid) { | 
					
						
							|  |  |  | #ifdef MBEDTLS_ECP_DP_CURVE25519_ENABLED
 | 
					
						
							|  |  |  |         case MBEDTLS_ECP_DP_CURVE25519: return 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef MBEDTLS_ECP_DP_CURVE448_ENABLED
 | 
					
						
							|  |  |  |         case MBEDTLS_ECP_DP_CURVE448: return 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         default: return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if !defined(MBEDTLS_ECDSA_SIGN_ALT)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Compute ECDSA signature of a hashed message (SEC1 4.1.3) | 
					
						
							|  |  |  |  * Obviously, compared to SEC1 4.1.3, we skip step 4 (hash message) | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ecdsa_sign_restartable(mbedtls_ecp_group *grp, | 
					
						
							|  |  |  |                                   mbedtls_mpi *r, mbedtls_mpi *s, | 
					
						
							|  |  |  |                                   const mbedtls_mpi *d, const unsigned char *buf, size_t blen, | 
					
						
							|  |  |  |                                   int (*f_rng)(void *, unsigned char *, size_t), void *p_rng, | 
					
						
							|  |  |  |                                   int (*f_rng_blind)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                                   void *p_rng_blind, | 
					
						
							|  |  |  |                                   mbedtls_ecdsa_restart_ctx *rs_ctx) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     int ret, key_tries, sign_tries; | 
					
						
							|  |  |  |     int *p_sign_tries = &sign_tries, *p_key_tries = &key_tries; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     mbedtls_ecp_point R; | 
					
						
							|  |  |  |     mbedtls_mpi k, e, t; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     mbedtls_mpi *pk = &k, *pr = r; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Fail cleanly on curves such as Curve25519 that can't be used for ECDSA */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!mbedtls_ecdsa_can_do(grp->id) || grp->N.p == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_ECP_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Make sure d is in range 1..n-1 */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_mpi_cmp_int(d, 1) < 0 || mbedtls_mpi_cmp_mpi(d, &grp->N) >= 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_ECP_INVALID_KEY; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ecp_point_init(&R); | 
					
						
							|  |  |  |     mbedtls_mpi_init(&k); mbedtls_mpi_init(&e); mbedtls_mpi_init(&t); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_RS_ENTER(sig); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_RESTARTABLE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (rs_ctx != NULL && rs_ctx->sig != NULL) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         /* redirect to our context */ | 
					
						
							|  |  |  |         p_sign_tries = &rs_ctx->sig->sign_tries; | 
					
						
							|  |  |  |         p_key_tries = &rs_ctx->sig->key_tries; | 
					
						
							|  |  |  |         pk = &rs_ctx->sig->k; | 
					
						
							|  |  |  |         pr = &rs_ctx->sig->r; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* jump to current step */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (rs_ctx->sig->state == ecdsa_sig_mul) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |             goto mul; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         if (rs_ctx->sig->state == ecdsa_sig_modn) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |             goto modn; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_ECP_RESTARTABLE */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *p_sign_tries = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     do { | 
					
						
							|  |  |  |         if ((*p_sign_tries)++ > 10) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |             ret = MBEDTLS_ERR_ECP_RANDOM_FAILED; | 
					
						
							|  |  |  |             goto cleanup; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * Steps 1-3: generate a suitable ephemeral keypair | 
					
						
							|  |  |  |          * and set r = xR mod n | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         *p_key_tries = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         do { | 
					
						
							|  |  |  |             if ((*p_key_tries)++ > 10) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |                 ret = MBEDTLS_ERR_ECP_RANDOM_FAILED; | 
					
						
							|  |  |  |                 goto cleanup; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             MBEDTLS_MPI_CHK(mbedtls_ecp_gen_privkey(grp, pk, f_rng, p_rng)); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_RESTARTABLE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             if (rs_ctx != NULL && rs_ctx->sig != NULL) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |                 rs_ctx->sig->state = ecdsa_sig_mul; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | mul: | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             MBEDTLS_MPI_CHK(mbedtls_ecp_mul_restartable(grp, &R, pk, &grp->G, | 
					
						
							|  |  |  |                                                         f_rng_blind, | 
					
						
							|  |  |  |                                                         p_rng_blind, | 
					
						
							|  |  |  |                                                         ECDSA_RS_ECP)); | 
					
						
							|  |  |  |             MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(pr, &R.X, &grp->N)); | 
					
						
							|  |  |  |         } while (mbedtls_mpi_cmp_int(pr, 0) == 0); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_RESTARTABLE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (rs_ctx != NULL && rs_ctx->sig != NULL) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |             rs_ctx->sig->state = ecdsa_sig_modn; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | modn: | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Accounting for everything up to the end of the loop | 
					
						
							|  |  |  |          * (step 6, but checking now avoids saving e and t) | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ECDSA_BUDGET(MBEDTLS_ECP_OPS_INV + 4); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Step 5: derive MPI from hashed message | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(derive_mpi(grp, &e, buf, blen)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Generate a random value to blind inv_mod in next step, | 
					
						
							|  |  |  |          * avoiding a potential timing leak. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(mbedtls_ecp_gen_privkey(grp, &t, f_rng_blind, | 
					
						
							|  |  |  |                                                 p_rng_blind)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Step 6: compute s = (e + r * d) / k = t (e + rd) / (kt) mod n | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(s, pr, d)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_add_mpi(&e, &e, s)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&e, &e, &t)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(pk, pk, &t)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(pk, pk, &grp->N)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_inv_mod(s, pk, &grp->N)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(s, s, &e)); | 
					
						
							|  |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(s, s, &grp->N)); | 
					
						
							|  |  |  |     } while (mbedtls_mpi_cmp_int(s, 0) == 0); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #if defined(MBEDTLS_ECP_RESTARTABLE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (rs_ctx != NULL && rs_ctx->sig != NULL) { | 
					
						
							| 
									
										
										
										
											2023-10-21 14:06:23 +02:00
										 |  |  |         MBEDTLS_MPI_CHK(mbedtls_mpi_copy(r, pr)); | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | cleanup: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ecp_point_free(&R); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&k); mbedtls_mpi_free(&e); mbedtls_mpi_free(&t); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_RS_LEAVE(sig); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Compute ECDSA signature of a hashed message | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ecdsa_sign(mbedtls_ecp_group *grp, mbedtls_mpi *r, mbedtls_mpi *s, | 
					
						
							|  |  |  |                        const mbedtls_mpi *d, const unsigned char *buf, size_t blen, | 
					
						
							|  |  |  |                        int (*f_rng)(void *, unsigned char *, size_t), void *p_rng) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_VALIDATE_RET(grp   != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(r     != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(s     != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(d     != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(f_rng != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(buf   != NULL || blen == 0); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  |     /* Use the same RNG for both blinding and ephemeral key generation */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ecdsa_sign_restartable(grp, r, s, d, buf, blen, | 
					
						
							|  |  |  |                                   f_rng, p_rng, f_rng, p_rng, NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* !MBEDTLS_ECDSA_SIGN_ALT */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECDSA_DETERMINISTIC)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Deterministic signature wrapper | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ecdsa_sign_det_restartable(mbedtls_ecp_group *grp, | 
					
						
							|  |  |  |                                       mbedtls_mpi *r, mbedtls_mpi *s, | 
					
						
							|  |  |  |                                       const mbedtls_mpi *d, const unsigned char *buf, size_t blen, | 
					
						
							|  |  |  |                                       mbedtls_md_type_t md_alg, | 
					
						
							|  |  |  |                                       int (*f_rng_blind)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                                       void *p_rng_blind, | 
					
						
							|  |  |  |                                       mbedtls_ecdsa_restart_ctx *rs_ctx) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     mbedtls_hmac_drbg_context rng_ctx; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     mbedtls_hmac_drbg_context *p_rng = &rng_ctx; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     unsigned char data[2 * MBEDTLS_ECP_MAX_BYTES]; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     size_t grp_len = (grp->nbits + 7) / 8; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     const mbedtls_md_info_t *md_info; | 
					
						
							|  |  |  |     mbedtls_mpi h; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((md_info = mbedtls_md_info_from_type(md_alg)) == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_ECP_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_init(&h); | 
					
						
							|  |  |  |     mbedtls_hmac_drbg_init(&rng_ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_RS_ENTER(det); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_RESTARTABLE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (rs_ctx != NULL && rs_ctx->det != NULL) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         /* redirect to our context */ | 
					
						
							|  |  |  |         p_rng = &rs_ctx->det->rng_ctx; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* jump to current step */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (rs_ctx->det->state == ecdsa_det_sign) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |             goto sign; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_ECP_RESTARTABLE */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     /* Use private key and message hash (reduced) to initialize HMAC_DRBG */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_write_binary(d, data, grp_len)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(derive_mpi(grp, &h, buf, blen)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_write_binary(&h, data + grp_len, grp_len)); | 
					
						
							| 
									
										
										
										
											2023-10-21 14:06:23 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_hmac_drbg_seed_buf(p_rng, md_info, data, 2 * grp_len)); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_RESTARTABLE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (rs_ctx != NULL && rs_ctx->det != NULL) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         rs_ctx->det->state = ecdsa_det_sign; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | sign: | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECDSA_SIGN_ALT)
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     (void) f_rng_blind; | 
					
						
							|  |  |  |     (void) p_rng_blind; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = mbedtls_ecdsa_sign(grp, r, s, d, buf, blen, | 
					
						
							|  |  |  |                              mbedtls_hmac_drbg_random, p_rng); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (f_rng_blind != NULL) { | 
					
						
							|  |  |  |         ret = ecdsa_sign_restartable(grp, r, s, d, buf, blen, | 
					
						
							|  |  |  |                                      mbedtls_hmac_drbg_random, p_rng, | 
					
						
							|  |  |  |                                      f_rng_blind, p_rng_blind, rs_ctx); | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  |         mbedtls_hmac_drbg_context *p_rng_blind_det; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_ECP_RESTARTABLE)
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * To avoid reusing rng_ctx and risking incorrect behavior we seed a | 
					
						
							|  |  |  |          * second HMAC-DRBG with the same seed. We also apply a label to avoid | 
					
						
							|  |  |  |          * reusing the bits of the ephemeral key for blinding and eliminate the | 
					
						
							|  |  |  |          * risk that they leak this way. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         const char *blind_label = "BLINDING CONTEXT"; | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  |         mbedtls_hmac_drbg_context rng_ctx_blind; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_hmac_drbg_init(&rng_ctx_blind); | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  |         p_rng_blind_det = &rng_ctx_blind; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_hmac_drbg_seed_buf(p_rng_blind_det, md_info, | 
					
						
							|  |  |  |                                    data, 2 * grp_len); | 
					
						
							|  |  |  |         ret = mbedtls_hmac_drbg_update_ret(p_rng_blind_det, | 
					
						
							|  |  |  |                                            (const unsigned char *) blind_label, | 
					
						
							|  |  |  |                                            strlen(blind_label)); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							|  |  |  |             mbedtls_hmac_drbg_free(&rng_ctx_blind); | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  |             goto cleanup; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * In the case of restartable computations we would either need to store | 
					
						
							|  |  |  |          * the second RNG in the restart context too or set it up at every | 
					
						
							|  |  |  |          * restart. The first option would penalize the correct application of | 
					
						
							|  |  |  |          * the function and the second would defeat the purpose of the | 
					
						
							|  |  |  |          * restartable feature. | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * Therefore in this case we reuse the original RNG. This comes with the | 
					
						
							|  |  |  |          * price that the resulting signature might not be a valid deterministic | 
					
						
							|  |  |  |          * ECDSA signature with a very low probability (same magnitude as | 
					
						
							|  |  |  |          * successfully guessing the private key). However even then it is still | 
					
						
							|  |  |  |          * a valid ECDSA signature. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         p_rng_blind_det = p_rng; | 
					
						
							|  |  |  | #endif /* MBEDTLS_ECP_RESTARTABLE */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Since the output of the RNGs is always the same for the same key and | 
					
						
							|  |  |  |          * message, this limits the efficiency of blinding and leaks information | 
					
						
							|  |  |  |          * through side channels. After mbedtls_ecdsa_sign_det() is removed NULL | 
					
						
							|  |  |  |          * won't be a valid value for f_rng_blind anymore. Therefore it should | 
					
						
							|  |  |  |          * be checked by the caller and this branch and check can be removed. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ret = ecdsa_sign_restartable(grp, r, s, d, buf, blen, | 
					
						
							|  |  |  |                                      mbedtls_hmac_drbg_random, p_rng, | 
					
						
							|  |  |  |                                      mbedtls_hmac_drbg_random, p_rng_blind_det, | 
					
						
							|  |  |  |                                      rs_ctx); | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_ECP_RESTARTABLE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_hmac_drbg_free(&rng_ctx_blind); | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #endif /* MBEDTLS_ECDSA_SIGN_ALT */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_hmac_drbg_free(&rng_ctx); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&h); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_RS_LEAVE(det); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  |  * Deterministic signature wrappers | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_DEPRECATED_REMOVED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ecdsa_sign_det(mbedtls_ecp_group *grp, mbedtls_mpi *r, | 
					
						
							|  |  |  |                            mbedtls_mpi *s, const mbedtls_mpi *d, | 
					
						
							|  |  |  |                            const unsigned char *buf, size_t blen, | 
					
						
							|  |  |  |                            mbedtls_md_type_t md_alg) | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_VALIDATE_RET(grp   != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(r     != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(s     != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(d     != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(buf   != NULL || blen == 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ecdsa_sign_det_restartable(grp, r, s, d, buf, blen, md_alg, | 
					
						
							|  |  |  |                                       NULL, NULL, NULL); | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_DEPRECATED_REMOVED */
 | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ecdsa_sign_det_ext(mbedtls_ecp_group *grp, mbedtls_mpi *r, | 
					
						
							|  |  |  |                                mbedtls_mpi *s, const mbedtls_mpi *d, | 
					
						
							|  |  |  |                                const unsigned char *buf, size_t blen, | 
					
						
							|  |  |  |                                mbedtls_md_type_t md_alg, | 
					
						
							|  |  |  |                                int (*f_rng_blind)(void *, unsigned char *, | 
					
						
							|  |  |  |                                                   size_t), | 
					
						
							|  |  |  |                                void *p_rng_blind) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_VALIDATE_RET(grp   != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(r     != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(s     != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(d     != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(buf   != NULL || blen == 0); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(f_rng_blind != NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ecdsa_sign_det_restartable(grp, r, s, d, buf, blen, md_alg, | 
					
						
							|  |  |  |                                       f_rng_blind, p_rng_blind, NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_ECDSA_DETERMINISTIC */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_ECDSA_VERIFY_ALT)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Verify ECDSA signature of hashed message (SEC1 4.1.4) | 
					
						
							|  |  |  |  * Obviously, compared to SEC1 4.1.3, we skip step 2 (hash message) | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ecdsa_verify_restartable(mbedtls_ecp_group *grp, | 
					
						
							|  |  |  |                                     const unsigned char *buf, size_t blen, | 
					
						
							|  |  |  |                                     const mbedtls_ecp_point *Q, | 
					
						
							|  |  |  |                                     const mbedtls_mpi *r, const mbedtls_mpi *s, | 
					
						
							|  |  |  |                                     mbedtls_ecdsa_restart_ctx *rs_ctx) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     mbedtls_mpi e, s_inv, u1, u2; | 
					
						
							|  |  |  |     mbedtls_ecp_point R; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     mbedtls_mpi *pu1 = &u1, *pu2 = &u2; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ecp_point_init(&R); | 
					
						
							|  |  |  |     mbedtls_mpi_init(&e); mbedtls_mpi_init(&s_inv); | 
					
						
							|  |  |  |     mbedtls_mpi_init(&u1); mbedtls_mpi_init(&u2); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Fail cleanly on curves such as Curve25519 that can't be used for ECDSA */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!mbedtls_ecdsa_can_do(grp->id) || grp->N.p == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_ECP_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_RS_ENTER(ver); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_RESTARTABLE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (rs_ctx != NULL && rs_ctx->ver != NULL) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         /* redirect to our context */ | 
					
						
							|  |  |  |         pu1 = &rs_ctx->ver->u1; | 
					
						
							|  |  |  |         pu2 = &rs_ctx->ver->u2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* jump to current step */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (rs_ctx->ver->state == ecdsa_ver_muladd) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |             goto muladd; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_ECP_RESTARTABLE */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Step 1: make sure r and s are in range 1..n-1 | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_mpi_cmp_int(r, 1) < 0 || mbedtls_mpi_cmp_mpi(r, &grp->N) >= 0 || | 
					
						
							|  |  |  |         mbedtls_mpi_cmp_int(s, 1) < 0 || mbedtls_mpi_cmp_mpi(s, &grp->N) >= 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret = MBEDTLS_ERR_ECP_VERIFY_FAILED; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Step 3: derive MPI from hashed message | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(derive_mpi(grp, &e, buf, blen)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Step 4: u1 = e / s mod n, u2 = r / s mod n | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_BUDGET(MBEDTLS_ECP_OPS_CHK + MBEDTLS_ECP_OPS_INV + 2); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_inv_mod(&s_inv, s, &grp->N)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(pu1, &e, &s_inv)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(pu1, pu1, &grp->N)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(pu2, r, &s_inv)); | 
					
						
							|  |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(pu2, pu2, &grp->N)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #if defined(MBEDTLS_ECP_RESTARTABLE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (rs_ctx != NULL && rs_ctx->ver != NULL) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         rs_ctx->ver->state = ecdsa_ver_muladd; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | muladd: | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Step 5: R = u1 G + u2 Q | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_ecp_muladd_restartable(grp, | 
					
						
							|  |  |  |                                                    &R, pu1, &grp->G, pu2, Q, ECDSA_RS_ECP)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_ecp_is_zero(&R)) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret = MBEDTLS_ERR_ECP_VERIFY_FAILED; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Step 6: convert xR to an integer (no-op) | 
					
						
							|  |  |  |      * Step 7: reduce xR mod n (gives v) | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(&R.X, &R.X, &grp->N)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Step 8: check if v (that is, R.X) is equal to r | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_mpi_cmp_mpi(&R.X, r) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret = MBEDTLS_ERR_ECP_VERIFY_FAILED; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ecp_point_free(&R); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&e); mbedtls_mpi_free(&s_inv); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&u1); mbedtls_mpi_free(&u2); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_RS_LEAVE(ver); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Verify ECDSA signature of hashed message | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ecdsa_verify(mbedtls_ecp_group *grp, | 
					
						
							|  |  |  |                          const unsigned char *buf, size_t blen, | 
					
						
							|  |  |  |                          const mbedtls_ecp_point *Q, | 
					
						
							|  |  |  |                          const mbedtls_mpi *r, | 
					
						
							|  |  |  |                          const mbedtls_mpi *s) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_VALIDATE_RET(grp != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(Q   != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(r   != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(s   != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(buf != NULL || blen == 0); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ecdsa_verify_restartable(grp, buf, blen, Q, r, s, NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* !MBEDTLS_ECDSA_VERIFY_ALT */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Convert a signature (given by context) to ASN.1 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ecdsa_signature_to_asn1(const mbedtls_mpi *r, const mbedtls_mpi *s, | 
					
						
							|  |  |  |                                    unsigned char *sig, size_t *slen) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     unsigned char buf[MBEDTLS_ECDSA_MAX_LEN] = { 0 }; | 
					
						
							|  |  |  |     unsigned char *p = buf + sizeof(buf); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     size_t len = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_mpi(&p, buf, s)); | 
					
						
							|  |  |  |     MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_mpi(&p, buf, r)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&p, buf, len)); | 
					
						
							|  |  |  |     MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(&p, buf, | 
					
						
							|  |  |  |                                                      MBEDTLS_ASN1_CONSTRUCTED | | 
					
						
							|  |  |  |                                                      MBEDTLS_ASN1_SEQUENCE)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(sig, p, len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     *slen = len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Compute and write signature | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ecdsa_write_signature_restartable(mbedtls_ecdsa_context *ctx, | 
					
						
							|  |  |  |                                               mbedtls_md_type_t md_alg, | 
					
						
							|  |  |  |                                               const unsigned char *hash, size_t hlen, | 
					
						
							|  |  |  |                                               unsigned char *sig, size_t *slen, | 
					
						
							|  |  |  |                                               int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                                               void *p_rng, | 
					
						
							|  |  |  |                                               mbedtls_ecdsa_restart_ctx *rs_ctx) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     mbedtls_mpi r, s; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_VALIDATE_RET(ctx  != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(hash != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(sig  != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(slen != NULL); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_init(&r); | 
					
						
							|  |  |  |     mbedtls_mpi_init(&s); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECDSA_DETERMINISTIC)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(ecdsa_sign_det_restartable(&ctx->grp, &r, &s, &ctx->d, | 
					
						
							|  |  |  |                                                hash, hlen, md_alg, f_rng, | 
					
						
							|  |  |  |                                                p_rng, rs_ctx)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  |     (void) md_alg; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #if defined(MBEDTLS_ECDSA_SIGN_ALT)
 | 
					
						
							| 
									
										
										
										
											2021-03-12 18:27:58 +01:00
										 |  |  |     (void) rs_ctx; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(mbedtls_ecdsa_sign(&ctx->grp, &r, &s, &ctx->d, | 
					
						
							|  |  |  |                                        hash, hlen, f_rng, p_rng)); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  |     /* Use the same RNG for both blinding and ephemeral key generation */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(ecdsa_sign_restartable(&ctx->grp, &r, &s, &ctx->d, | 
					
						
							|  |  |  |                                            hash, hlen, f_rng, p_rng, f_rng, | 
					
						
							|  |  |  |                                            p_rng, rs_ctx)); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #endif /* MBEDTLS_ECDSA_SIGN_ALT */
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_ECDSA_DETERMINISTIC */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_MPI_CHK(ecdsa_signature_to_asn1(&r, &s, sig, slen)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&r); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&s); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Compute and write signature | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ecdsa_write_signature(mbedtls_ecdsa_context *ctx, | 
					
						
							|  |  |  |                                   mbedtls_md_type_t md_alg, | 
					
						
							|  |  |  |                                   const unsigned char *hash, size_t hlen, | 
					
						
							|  |  |  |                                   unsigned char *sig, size_t *slen, | 
					
						
							|  |  |  |                                   int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                                   void *p_rng) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_VALIDATE_RET(ctx  != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(hash != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(sig  != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(slen != NULL); | 
					
						
							|  |  |  |     return mbedtls_ecdsa_write_signature_restartable( | 
					
						
							|  |  |  |         ctx, md_alg, hash, hlen, sig, slen, f_rng, p_rng, NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_DEPRECATED_REMOVED) && \
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     defined(MBEDTLS_ECDSA_DETERMINISTIC) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ecdsa_write_signature_det(mbedtls_ecdsa_context *ctx, | 
					
						
							|  |  |  |                                       const unsigned char *hash, size_t hlen, | 
					
						
							|  |  |  |                                       unsigned char *sig, size_t *slen, | 
					
						
							|  |  |  |                                       mbedtls_md_type_t md_alg) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_VALIDATE_RET(ctx  != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(hash != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(sig  != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(slen != NULL); | 
					
						
							|  |  |  |     return mbedtls_ecdsa_write_signature(ctx, md_alg, hash, hlen, sig, slen, | 
					
						
							|  |  |  |                                          NULL, NULL); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Read and check signature | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ecdsa_read_signature(mbedtls_ecdsa_context *ctx, | 
					
						
							|  |  |  |                                  const unsigned char *hash, size_t hlen, | 
					
						
							|  |  |  |                                  const unsigned char *sig, size_t slen) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_VALIDATE_RET(ctx  != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(hash != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(sig  != NULL); | 
					
						
							|  |  |  |     return mbedtls_ecdsa_read_signature_restartable( | 
					
						
							|  |  |  |         ctx, hash, hlen, sig, slen, NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Restartable read and check signature | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ecdsa_read_signature_restartable(mbedtls_ecdsa_context *ctx, | 
					
						
							|  |  |  |                                              const unsigned char *hash, size_t hlen, | 
					
						
							|  |  |  |                                              const unsigned char *sig, size_t slen, | 
					
						
							|  |  |  |                                              mbedtls_ecdsa_restart_ctx *rs_ctx) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     unsigned char *p = (unsigned char *) sig; | 
					
						
							|  |  |  |     const unsigned char *end = sig + slen; | 
					
						
							|  |  |  |     size_t len; | 
					
						
							|  |  |  |     mbedtls_mpi r, s; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_VALIDATE_RET(ctx  != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(hash != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(sig  != NULL); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_init(&r); | 
					
						
							|  |  |  |     mbedtls_mpi_init(&s); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_asn1_get_tag(&p, end, &len, | 
					
						
							|  |  |  |                                     MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret += MBEDTLS_ERR_ECP_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (p + len != end) { | 
					
						
							|  |  |  |         ret = MBEDTLS_ERROR_ADD(MBEDTLS_ERR_ECP_BAD_INPUT_DATA, | 
					
						
							|  |  |  |                                 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_asn1_get_mpi(&p, end, &r)) != 0 || | 
					
						
							|  |  |  |         (ret = mbedtls_asn1_get_mpi(&p, end, &s)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret += MBEDTLS_ERR_ECP_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         goto cleanup; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #if defined(MBEDTLS_ECDSA_VERIFY_ALT)
 | 
					
						
							| 
									
										
										
										
											2021-03-12 18:27:58 +01:00
										 |  |  |     (void) rs_ctx; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_ecdsa_verify(&ctx->grp, hash, hlen, | 
					
						
							|  |  |  |                                     &ctx->Q, &r, &s)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto cleanup; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = ecdsa_verify_restartable(&ctx->grp, hash, hlen, | 
					
						
							|  |  |  |                                         &ctx->Q, &r, &s, rs_ctx)) != 0) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         goto cleanup; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #endif /* MBEDTLS_ECDSA_VERIFY_ALT */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |     /* At this point we know that the buffer starts with a valid signature.
 | 
					
						
							|  |  |  |      * Return 0 if the buffer just contains the signature, and a specific | 
					
						
							|  |  |  |      * error code if the valid signature is followed by more data. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (p != end) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret = MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&r); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&s); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_ECDSA_GENKEY_ALT)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Generate key pair | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ecdsa_genkey(mbedtls_ecdsa_context *ctx, mbedtls_ecp_group_id gid, | 
					
						
							|  |  |  |                          int (*f_rng)(void *, unsigned char *, size_t), void *p_rng) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-07-10 16:15:01 +02:00
										 |  |  |     int ret = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_VALIDATE_RET(ctx   != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(f_rng != NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = mbedtls_ecp_group_load(&ctx->grp, gid); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-07-10 16:15:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return mbedtls_ecp_gen_keypair(&ctx->grp, &ctx->d, | 
					
						
							|  |  |  |                                    &ctx->Q, f_rng, p_rng); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #endif /* !MBEDTLS_ECDSA_GENKEY_ALT */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Set context from an mbedtls_ecp_keypair | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ecdsa_from_keypair(mbedtls_ecdsa_context *ctx, const mbedtls_ecp_keypair *key) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_VALIDATE_RET(ctx != NULL); | 
					
						
							|  |  |  |     ECDSA_VALIDATE_RET(key != NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((ret = mbedtls_ecp_group_copy(&ctx->grp, &key->grp)) != 0 || | 
					
						
							|  |  |  |         (ret = mbedtls_mpi_copy(&ctx->d, &key->d)) != 0 || | 
					
						
							|  |  |  |         (ret = mbedtls_ecp_copy(&ctx->Q, &key->Q)) != 0) { | 
					
						
							|  |  |  |         mbedtls_ecdsa_free(ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Initialize context | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ecdsa_init(mbedtls_ecdsa_context *ctx) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_VALIDATE(ctx != NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ecp_keypair_init(ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Free context | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ecdsa_free(mbedtls_ecdsa_context *ctx) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ctx == NULL) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ecp_keypair_free(ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #if defined(MBEDTLS_ECP_RESTARTABLE)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Initialize a restart context | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ecdsa_restart_init(mbedtls_ecdsa_restart_ctx *ctx) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ECDSA_VALIDATE(ctx != NULL); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ecp_restart_init(&ctx->ecp); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ctx->ver = NULL; | 
					
						
							|  |  |  |     ctx->sig = NULL; | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECDSA_DETERMINISTIC)
 | 
					
						
							|  |  |  |     ctx->det = NULL; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Free the components of a restart context | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ecdsa_restart_free(mbedtls_ecdsa_restart_ctx *ctx) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ctx == NULL) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ecp_restart_free(&ctx->ecp); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ecdsa_restart_ver_free(ctx->ver); | 
					
						
							|  |  |  |     mbedtls_free(ctx->ver); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     ctx->ver = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ecdsa_restart_sig_free(ctx->sig); | 
					
						
							|  |  |  |     mbedtls_free(ctx->sig); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     ctx->sig = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECDSA_DETERMINISTIC)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ecdsa_restart_det_free(ctx->det); | 
					
						
							|  |  |  |     mbedtls_free(ctx->det); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     ctx->det = NULL; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_ECP_RESTARTABLE */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_ECDSA_C */
 |