2012-10-31 09:26:55 +01:00
|
|
|
/*
|
2013-12-02 15:49:09 +01:00
|
|
|
* Elliptic curves over GF(p): generic functions
|
2012-10-31 09:26:55 +01:00
|
|
|
*
|
2020-08-07 13:07:28 +02:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2012-10-31 09:26:55 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2012-10-31 09:26:55 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-10-31 09:26:55 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2012-10-31 09:26:55 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* References:
|
|
|
|
*
|
2012-11-02 09:40:25 +01:00
|
|
|
* SEC1 http://www.secg.org/index.php?action=secg,docs_secg
|
2012-11-08 17:40:51 +01:00
|
|
|
* GECC = Guide to Elliptic Curve Cryptography - Hankerson, Menezes, Vanstone
|
2012-11-10 00:27:12 +01:00
|
|
|
* FIPS 186-3 http://csrc.nist.gov/publications/fips/fips186-3/fips_186-3.pdf
|
2013-02-09 17:03:58 +01:00
|
|
|
* RFC 4492 for the related TLS structures and constants
|
2015-11-10 14:10:01 +01:00
|
|
|
* RFC 7748 for the Curve448 and Curve25519 curve definitions
|
2013-09-02 16:26:04 +02:00
|
|
|
*
|
2015-06-23 00:18:41 +02:00
|
|
|
* [Curve25519] http://cr.yp.to/ecdh/curve25519-20060209.pdf
|
2013-12-04 18:14:55 +01:00
|
|
|
*
|
2015-04-03 13:48:06 +02:00
|
|
|
* [2] CORON, Jean-S'ebastien. Resistance against differential power analysis
|
2013-09-02 16:26:04 +02:00
|
|
|
* for elliptic curve cryptosystems. In : Cryptographic Hardware and
|
|
|
|
* Embedded Systems. Springer Berlin Heidelberg, 1999. p. 292-302.
|
|
|
|
* <http://link.springer.com/chapter/10.1007/3-540-48059-5_25>
|
2013-11-16 15:50:12 +01:00
|
|
|
*
|
2015-04-03 13:48:06 +02:00
|
|
|
* [3] HEDABOU, Mustapha, PINEL, Pierre, et B'EN'ETEAU, Lucien. A comb method to
|
2013-11-16 15:50:12 +01:00
|
|
|
* render ECC resistant against Side Channel Attacks. IACR Cryptology
|
|
|
|
* ePrint Archive, 2004, vol. 2004, p. 342.
|
|
|
|
* <http://eprint.iacr.org/2004/342.pdf>
|
2012-10-31 09:26:55 +01:00
|
|
|
*/
|
|
|
|
|
2020-06-03 01:43:33 +02:00
|
|
|
#include "common.h"
|
2012-10-31 09:26:55 +01:00
|
|
|
|
2019-01-31 14:20:20 +01:00
|
|
|
/**
|
|
|
|
* \brief Function level alternative implementation.
|
|
|
|
*
|
|
|
|
* The MBEDTLS_ECP_INTERNAL_ALT macro enables alternative implementations to
|
|
|
|
* replace certain functions in this module. The alternative implementations are
|
|
|
|
* typically hardware accelerators and need to activate the hardware before the
|
|
|
|
* computation starts and deactivate it after it finishes. The
|
|
|
|
* mbedtls_internal_ecp_init() and mbedtls_internal_ecp_free() functions serve
|
|
|
|
* this purpose.
|
|
|
|
*
|
|
|
|
* To preserve the correct functionality the following conditions must hold:
|
|
|
|
*
|
|
|
|
* - The alternative implementation must be activated by
|
|
|
|
* mbedtls_internal_ecp_init() before any of the replaceable functions is
|
|
|
|
* called.
|
|
|
|
* - mbedtls_internal_ecp_free() must \b only be called when the alternative
|
|
|
|
* implementation is activated.
|
|
|
|
* - mbedtls_internal_ecp_init() must \b not be called when the alternative
|
|
|
|
* implementation is activated.
|
|
|
|
* - Public functions must not return while the alternative implementation is
|
|
|
|
* activated.
|
|
|
|
* - Replaceable functions are guarded by \c MBEDTLS_ECP_XXX_ALT macros and
|
|
|
|
* before calling them an \code if( mbedtls_internal_ecp_grp_capable( grp ) )
|
|
|
|
* \endcode ensures that the alternative implementation supports the current
|
|
|
|
* group.
|
|
|
|
*/
|
|
|
|
#if defined(MBEDTLS_ECP_INTERNAL_ALT)
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_C)
|
2012-10-31 09:26:55 +01:00
|
|
|
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/ecp.h"
|
2016-11-03 15:25:37 +01:00
|
|
|
#include "mbedtls/threading.h"
|
2018-04-17 16:51:09 +02:00
|
|
|
#include "mbedtls/platform_util.h"
|
2019-11-22 14:21:35 +01:00
|
|
|
#include "mbedtls/error.h"
|
2013-07-03 13:37:05 +02:00
|
|
|
|
2015-02-06 14:43:58 +01:00
|
|
|
#include <string.h>
|
|
|
|
|
2016-08-18 13:38:46 +02:00
|
|
|
#if !defined(MBEDTLS_ECP_ALT)
|
|
|
|
|
2019-01-31 14:20:20 +01:00
|
|
|
/* Parameter validation macros based on platform_util.h */
|
|
|
|
#define ECP_VALIDATE_RET( cond ) \
|
|
|
|
MBEDTLS_INTERNAL_VALIDATE_RET( cond, MBEDTLS_ERR_ECP_BAD_INPUT_DATA )
|
|
|
|
#define ECP_VALIDATE( cond ) \
|
|
|
|
MBEDTLS_INTERNAL_VALIDATE( cond )
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PLATFORM_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/platform.h"
|
2013-07-03 13:37:05 +02:00
|
|
|
#else
|
2015-02-06 14:43:58 +01:00
|
|
|
#include <stdlib.h>
|
2015-02-17 16:46:45 +01:00
|
|
|
#include <stdio.h>
|
2015-04-08 12:49:31 +02:00
|
|
|
#define mbedtls_printf printf
|
2015-05-26 16:04:06 +02:00
|
|
|
#define mbedtls_calloc calloc
|
2015-04-08 12:49:31 +02:00
|
|
|
#define mbedtls_free free
|
2013-07-03 13:37:05 +02:00
|
|
|
#endif
|
|
|
|
|
2016-11-01 14:22:05 +01:00
|
|
|
#include "mbedtls/ecp_internal.h"
|
2016-08-18 13:38:46 +02:00
|
|
|
|
2020-05-22 12:12:36 +02:00
|
|
|
#if !defined(MBEDTLS_ECP_NO_INTERNAL_RNG)
|
2020-06-04 12:32:14 +02:00
|
|
|
#if defined(MBEDTLS_HMAC_DRBG_C)
|
2020-05-22 12:12:36 +02:00
|
|
|
#include "mbedtls/hmac_drbg.h"
|
2020-06-04 12:32:14 +02:00
|
|
|
#elif defined(MBEDTLS_CTR_DRBG_C)
|
|
|
|
#include "mbedtls/ctr_drbg.h"
|
2020-05-22 12:12:36 +02:00
|
|
|
#else
|
|
|
|
#error "Invalid configuration detected. Include check_config.h to ensure that the configuration is valid."
|
|
|
|
#endif
|
|
|
|
#endif /* MBEDTLS_ECP_NO_INTERNAL_RNG */
|
|
|
|
|
2015-10-05 12:40:01 +02:00
|
|
|
#if ( defined(__ARMCC_VERSION) || defined(_MSC_VER) ) && \
|
|
|
|
!defined(inline) && !defined(__cplusplus)
|
2013-10-28 18:53:08 +01:00
|
|
|
#define inline __inline
|
2015-07-07 18:33:39 +02:00
|
|
|
#endif
|
2013-10-28 18:53:08 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SELF_TEST)
|
2012-11-13 20:57:00 +01:00
|
|
|
/*
|
2013-11-21 20:23:55 +01:00
|
|
|
* Counts of point addition and doubling, and field multiplications.
|
2013-09-02 16:26:04 +02:00
|
|
|
* Used to test resistance of point multiplication to simple timing attacks.
|
2012-11-13 20:57:00 +01:00
|
|
|
*/
|
2013-12-01 16:51:27 +01:00
|
|
|
static unsigned long add_count, dbl_count, mul_count;
|
2012-11-13 20:57:00 +01:00
|
|
|
#endif
|
|
|
|
|
2020-05-22 12:12:36 +02:00
|
|
|
#if !defined(MBEDTLS_ECP_NO_INTERNAL_RNG)
|
|
|
|
/*
|
|
|
|
* Currently ecp_mul() takes a RNG function as an argument, used for
|
2020-06-10 09:18:25 +02:00
|
|
|
* side-channel protection, but it can be NULL. The initial reasoning was
|
2020-05-22 12:12:36 +02:00
|
|
|
* that people will pass non-NULL RNG when they care about side-channels, but
|
|
|
|
* unfortunately we have some APIs that call ecp_mul() with a NULL RNG, with
|
|
|
|
* no opportunity for the user to do anything about it.
|
|
|
|
*
|
|
|
|
* The obvious strategies for addressing that include:
|
|
|
|
* - change those APIs so that they take RNG arguments;
|
|
|
|
* - require a global RNG to be available to all crypto modules.
|
|
|
|
*
|
|
|
|
* Unfortunately those would break compatibility. So what we do instead is
|
|
|
|
* have our own internal DRBG instance, seeded from the secret scalar.
|
|
|
|
*
|
|
|
|
* The following is a light-weight abstraction layer for doing that with
|
2020-06-04 12:32:14 +02:00
|
|
|
* HMAC_DRBG (first choice) or CTR_DRBG.
|
2020-05-22 12:12:36 +02:00
|
|
|
*/
|
|
|
|
|
2020-06-04 12:32:14 +02:00
|
|
|
#if defined(MBEDTLS_HMAC_DRBG_C)
|
|
|
|
|
2020-05-22 12:12:36 +02:00
|
|
|
/* DRBG context type */
|
2020-06-04 12:32:14 +02:00
|
|
|
typedef mbedtls_hmac_drbg_context ecp_drbg_context;
|
2020-05-22 12:12:36 +02:00
|
|
|
|
|
|
|
/* DRBG context init */
|
|
|
|
static inline void ecp_drbg_init( ecp_drbg_context *ctx )
|
|
|
|
{
|
2020-06-04 12:32:14 +02:00
|
|
|
mbedtls_hmac_drbg_init( ctx );
|
2020-05-22 12:12:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* DRBG context free */
|
|
|
|
static inline void ecp_drbg_free( ecp_drbg_context *ctx )
|
|
|
|
{
|
2020-06-04 12:32:14 +02:00
|
|
|
mbedtls_hmac_drbg_free( ctx );
|
2020-05-22 12:12:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* DRBG function */
|
|
|
|
static inline int ecp_drbg_random( void *p_rng,
|
|
|
|
unsigned char *output, size_t output_len )
|
|
|
|
{
|
2020-06-04 12:32:14 +02:00
|
|
|
return( mbedtls_hmac_drbg_random( p_rng, output, output_len ) );
|
2020-05-22 12:12:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* DRBG context seeding */
|
2020-06-18 12:27:56 +02:00
|
|
|
static int ecp_drbg_seed( ecp_drbg_context *ctx,
|
|
|
|
const mbedtls_mpi *secret, size_t secret_len )
|
2020-05-22 12:12:36 +02:00
|
|
|
{
|
2020-06-18 12:27:56 +02:00
|
|
|
int ret;
|
|
|
|
unsigned char secret_bytes[MBEDTLS_ECP_MAX_BYTES];
|
2020-06-04 12:32:14 +02:00
|
|
|
/* The list starts with strong hashes */
|
|
|
|
const mbedtls_md_type_t md_type = mbedtls_md_list()[0];
|
|
|
|
const mbedtls_md_info_t *md_info = mbedtls_md_info_from_type( md_type );
|
|
|
|
|
2020-06-19 11:59:49 +02:00
|
|
|
if( secret_len > MBEDTLS_ECP_MAX_BYTES )
|
|
|
|
{
|
|
|
|
ret = MBEDTLS_ERR_ECP_RANDOM_FAILED;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2020-06-18 12:27:56 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary( secret,
|
|
|
|
secret_bytes, secret_len ) );
|
|
|
|
|
|
|
|
ret = mbedtls_hmac_drbg_seed_buf( ctx, md_info, secret_bytes, secret_len );
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
mbedtls_platform_zeroize( secret_bytes, secret_len );
|
|
|
|
|
|
|
|
return( ret );
|
2020-05-22 12:12:36 +02:00
|
|
|
}
|
|
|
|
|
2020-06-04 12:32:14 +02:00
|
|
|
#elif defined(MBEDTLS_CTR_DRBG_C)
|
|
|
|
|
2020-05-22 12:12:36 +02:00
|
|
|
/* DRBG context type */
|
2020-06-04 12:32:14 +02:00
|
|
|
typedef mbedtls_ctr_drbg_context ecp_drbg_context;
|
2020-05-22 12:12:36 +02:00
|
|
|
|
|
|
|
/* DRBG context init */
|
|
|
|
static inline void ecp_drbg_init( ecp_drbg_context *ctx )
|
|
|
|
{
|
2020-06-04 12:32:14 +02:00
|
|
|
mbedtls_ctr_drbg_init( ctx );
|
2020-05-22 12:12:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* DRBG context free */
|
|
|
|
static inline void ecp_drbg_free( ecp_drbg_context *ctx )
|
|
|
|
{
|
2020-06-04 12:32:14 +02:00
|
|
|
mbedtls_ctr_drbg_free( ctx );
|
2020-05-22 12:12:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* DRBG function */
|
|
|
|
static inline int ecp_drbg_random( void *p_rng,
|
|
|
|
unsigned char *output, size_t output_len )
|
|
|
|
{
|
2020-06-04 12:32:14 +02:00
|
|
|
return( mbedtls_ctr_drbg_random( p_rng, output, output_len ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Since CTR_DRBG doesn't have a seed_buf() function the way HMAC_DRBG does,
|
|
|
|
* we need to pass an entropy function when seeding. So we use a dummy
|
|
|
|
* function for that, and pass the actual entropy as customisation string.
|
|
|
|
* (During seeding of CTR_DRBG the entropy input and customisation string are
|
|
|
|
* concatenated before being used to update the secret state.)
|
|
|
|
*/
|
|
|
|
static int ecp_ctr_drbg_null_entropy(void *ctx, unsigned char *out, size_t len)
|
|
|
|
{
|
|
|
|
(void) ctx;
|
|
|
|
memset( out, 0, len );
|
|
|
|
return( 0 );
|
2020-05-22 12:12:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* DRBG context seeding */
|
2020-06-18 12:27:56 +02:00
|
|
|
static int ecp_drbg_seed( ecp_drbg_context *ctx,
|
|
|
|
const mbedtls_mpi *secret, size_t secret_len )
|
2020-05-22 12:12:36 +02:00
|
|
|
{
|
2020-06-18 12:27:56 +02:00
|
|
|
int ret;
|
|
|
|
unsigned char secret_bytes[MBEDTLS_ECP_MAX_BYTES];
|
2020-05-22 12:12:36 +02:00
|
|
|
|
2020-06-19 11:59:49 +02:00
|
|
|
if( secret_len > MBEDTLS_ECP_MAX_BYTES )
|
|
|
|
{
|
|
|
|
ret = MBEDTLS_ERR_ECP_RANDOM_FAILED;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2020-06-18 12:27:56 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary( secret,
|
|
|
|
secret_bytes, secret_len ) );
|
|
|
|
|
|
|
|
ret = mbedtls_ctr_drbg_seed( ctx, ecp_ctr_drbg_null_entropy, NULL,
|
|
|
|
secret_bytes, secret_len );
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
mbedtls_platform_zeroize( secret_bytes, secret_len );
|
|
|
|
|
|
|
|
return( ret );
|
2020-05-22 12:12:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
#error "Invalid configuration detected. Include check_config.h to ensure that the configuration is valid."
|
|
|
|
#endif /* DRBG modules */
|
|
|
|
#endif /* MBEDTLS_ECP_NO_INTERNAL_RNG */
|
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-03-22 11:18:33 +01:00
|
|
|
/*
|
|
|
|
* Maximum number of "basic operations" to be done in a row.
|
2017-08-23 14:30:36 +02:00
|
|
|
*
|
|
|
|
* Default value 0 means that ECC operations will not yield.
|
|
|
|
* Note that regardless of the value of ecp_max_ops, always at
|
|
|
|
* least one step is performed before yielding.
|
|
|
|
*
|
|
|
|
* Setting ecp_max_ops=1 can be suitable for testing purposes
|
|
|
|
* as it will interrupt computation at all possible points.
|
2017-03-22 11:18:33 +01:00
|
|
|
*/
|
|
|
|
static unsigned ecp_max_ops = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set ecp_max_ops
|
|
|
|
*/
|
|
|
|
void mbedtls_ecp_set_max_ops( unsigned max_ops )
|
|
|
|
{
|
|
|
|
ecp_max_ops = max_ops;
|
|
|
|
}
|
2017-03-08 11:41:47 +01:00
|
|
|
|
2017-04-21 11:33:57 +02:00
|
|
|
/*
|
|
|
|
* Check if restart is enabled
|
|
|
|
*/
|
2018-10-16 10:41:31 +02:00
|
|
|
int mbedtls_ecp_restart_is_enabled( void )
|
2017-04-21 11:33:57 +02:00
|
|
|
{
|
|
|
|
return( ecp_max_ops != 0 );
|
|
|
|
}
|
|
|
|
|
2017-03-08 11:41:47 +01:00
|
|
|
/*
|
2017-04-20 13:36:18 +02:00
|
|
|
* Restart sub-context for ecp_mul_comb()
|
2017-03-08 11:41:47 +01:00
|
|
|
*/
|
2017-04-20 13:36:18 +02:00
|
|
|
struct mbedtls_ecp_restart_mul
|
|
|
|
{
|
2017-03-14 12:11:21 +01:00
|
|
|
mbedtls_ecp_point R; /* current intermediate result */
|
2017-03-15 13:06:28 +01:00
|
|
|
size_t i; /* current index in various loops, 0 outside */
|
2017-03-16 14:53:26 +01:00
|
|
|
mbedtls_ecp_point *T; /* table for precomputed points */
|
|
|
|
unsigned char T_size; /* number of points in table T */
|
2017-08-24 11:02:04 +02:00
|
|
|
enum { /* what were we doing last time we returned? */
|
|
|
|
ecp_rsm_init = 0, /* nothing so far, dummy initial state */
|
|
|
|
ecp_rsm_pre_dbl, /* precompute 2^n multiples */
|
2017-03-22 08:24:42 +01:00
|
|
|
ecp_rsm_pre_norm_dbl, /* normalize precomputed 2^n multiples */
|
|
|
|
ecp_rsm_pre_add, /* precompute remaining points by adding */
|
|
|
|
ecp_rsm_pre_norm_add, /* normalize all precomputed points */
|
2017-08-24 11:02:04 +02:00
|
|
|
ecp_rsm_comb_core, /* ecp_mul_comb_core() */
|
2017-03-22 08:24:42 +01:00
|
|
|
ecp_rsm_final_norm, /* do the final normalization */
|
2017-03-14 13:13:13 +01:00
|
|
|
} state;
|
2020-06-04 09:43:14 +02:00
|
|
|
#if !defined(MBEDTLS_ECP_NO_INTERNAL_RNG)
|
|
|
|
ecp_drbg_context drbg_ctx;
|
|
|
|
unsigned char drbg_seeded;
|
|
|
|
#endif
|
2017-03-14 10:58:00 +01:00
|
|
|
};
|
2017-03-08 11:41:47 +01:00
|
|
|
|
|
|
|
/*
|
2017-04-20 13:36:18 +02:00
|
|
|
* Init restart_mul sub-context
|
2017-03-14 10:58:00 +01:00
|
|
|
*/
|
2017-08-23 18:18:22 +02:00
|
|
|
static void ecp_restart_rsm_init( mbedtls_ecp_restart_mul_ctx *ctx )
|
2017-03-14 10:58:00 +01:00
|
|
|
{
|
2017-08-23 16:55:59 +02:00
|
|
|
mbedtls_ecp_point_init( &ctx->R );
|
|
|
|
ctx->i = 0;
|
|
|
|
ctx->T = NULL;
|
|
|
|
ctx->T_size = 0;
|
|
|
|
ctx->state = ecp_rsm_init;
|
2020-06-04 09:43:14 +02:00
|
|
|
#if !defined(MBEDTLS_ECP_NO_INTERNAL_RNG)
|
|
|
|
ecp_drbg_init( &ctx->drbg_ctx );
|
|
|
|
ctx->drbg_seeded = 0;
|
|
|
|
#endif
|
2017-03-14 10:58:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2017-04-20 13:36:18 +02:00
|
|
|
* Free the components of a restart_mul sub-context
|
2017-03-08 11:41:47 +01:00
|
|
|
*/
|
2017-08-23 18:18:22 +02:00
|
|
|
static void ecp_restart_rsm_free( mbedtls_ecp_restart_mul_ctx *ctx )
|
2017-03-14 10:58:00 +01:00
|
|
|
{
|
2017-03-16 14:53:26 +01:00
|
|
|
unsigned char i;
|
|
|
|
|
2017-03-14 10:58:00 +01:00
|
|
|
if( ctx == NULL )
|
|
|
|
return;
|
2017-03-14 11:48:38 +01:00
|
|
|
|
2017-03-14 12:11:21 +01:00
|
|
|
mbedtls_ecp_point_free( &ctx->R );
|
2017-03-14 13:13:13 +01:00
|
|
|
|
2017-05-17 10:05:58 +02:00
|
|
|
if( ctx->T != NULL )
|
|
|
|
{
|
2017-03-16 14:53:26 +01:00
|
|
|
for( i = 0; i < ctx->T_size; i++ )
|
|
|
|
mbedtls_ecp_point_free( ctx->T + i );
|
|
|
|
mbedtls_free( ctx->T );
|
|
|
|
}
|
|
|
|
|
2020-06-04 09:43:14 +02:00
|
|
|
#if !defined(MBEDTLS_ECP_NO_INTERNAL_RNG)
|
|
|
|
ecp_drbg_free( &ctx->drbg_ctx );
|
|
|
|
#endif
|
|
|
|
|
2017-08-23 18:18:22 +02:00
|
|
|
ecp_restart_rsm_init( ctx );
|
2017-03-14 10:58:00 +01:00
|
|
|
}
|
2017-03-14 13:13:13 +01:00
|
|
|
|
2017-04-20 13:36:18 +02:00
|
|
|
/*
|
|
|
|
* Restart context for ecp_muladd()
|
|
|
|
*/
|
|
|
|
struct mbedtls_ecp_restart_muladd
|
|
|
|
{
|
2017-04-20 14:48:56 +02:00
|
|
|
mbedtls_ecp_point mP; /* mP value */
|
|
|
|
mbedtls_ecp_point R; /* R intermediate result */
|
|
|
|
enum { /* what should we do next? */
|
|
|
|
ecp_rsma_mul1 = 0, /* first multiplication */
|
|
|
|
ecp_rsma_mul2, /* second multiplication */
|
|
|
|
ecp_rsma_add, /* addition */
|
|
|
|
ecp_rsma_norm, /* normalization */
|
|
|
|
} state;
|
2017-04-20 13:36:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Init restart_muladd sub-context
|
|
|
|
*/
|
2017-08-23 18:18:22 +02:00
|
|
|
static void ecp_restart_ma_init( mbedtls_ecp_restart_muladd_ctx *ctx )
|
2017-04-20 13:36:18 +02:00
|
|
|
{
|
2017-08-23 16:55:59 +02:00
|
|
|
mbedtls_ecp_point_init( &ctx->mP );
|
|
|
|
mbedtls_ecp_point_init( &ctx->R );
|
|
|
|
ctx->state = ecp_rsma_mul1;
|
2017-04-20 13:36:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free the components of a restart_muladd sub-context
|
|
|
|
*/
|
2017-08-23 18:18:22 +02:00
|
|
|
static void ecp_restart_ma_free( mbedtls_ecp_restart_muladd_ctx *ctx )
|
2017-04-20 13:36:18 +02:00
|
|
|
{
|
|
|
|
if( ctx == NULL )
|
|
|
|
return;
|
|
|
|
|
2017-04-20 14:48:56 +02:00
|
|
|
mbedtls_ecp_point_free( &ctx->mP );
|
|
|
|
mbedtls_ecp_point_free( &ctx->R );
|
|
|
|
|
2017-08-23 18:18:22 +02:00
|
|
|
ecp_restart_ma_init( ctx );
|
2017-04-20 13:36:18 +02:00
|
|
|
}
|
|
|
|
|
2017-04-19 10:11:56 +02:00
|
|
|
/*
|
|
|
|
* Initialize a restart context
|
|
|
|
*/
|
|
|
|
void mbedtls_ecp_restart_init( mbedtls_ecp_restart_ctx *ctx )
|
|
|
|
{
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE( ctx != NULL );
|
2017-08-23 16:55:59 +02:00
|
|
|
ctx->ops_done = 0;
|
|
|
|
ctx->depth = 0;
|
|
|
|
ctx->rsm = NULL;
|
|
|
|
ctx->ma = NULL;
|
2017-04-19 10:11:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free the components of a restart context
|
|
|
|
*/
|
|
|
|
void mbedtls_ecp_restart_free( mbedtls_ecp_restart_ctx *ctx )
|
|
|
|
{
|
|
|
|
if( ctx == NULL )
|
|
|
|
return;
|
|
|
|
|
2017-08-23 18:18:22 +02:00
|
|
|
ecp_restart_rsm_free( ctx->rsm );
|
2017-04-19 10:11:56 +02:00
|
|
|
mbedtls_free( ctx->rsm );
|
2017-04-20 14:48:56 +02:00
|
|
|
|
2017-08-23 18:18:22 +02:00
|
|
|
ecp_restart_ma_free( ctx->ma );
|
2017-04-20 14:48:56 +02:00
|
|
|
mbedtls_free( ctx->ma );
|
2017-08-23 16:55:59 +02:00
|
|
|
|
|
|
|
mbedtls_ecp_restart_init( ctx );
|
2017-04-19 10:11:56 +02:00
|
|
|
}
|
|
|
|
|
2017-03-14 13:13:13 +01:00
|
|
|
/*
|
|
|
|
* Check if we can do the next step
|
|
|
|
*/
|
2017-04-20 16:31:00 +02:00
|
|
|
int mbedtls_ecp_check_budget( const mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx,
|
|
|
|
unsigned ops )
|
2017-03-14 13:13:13 +01:00
|
|
|
{
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
|
2017-04-20 10:03:45 +02:00
|
|
|
if( rs_ctx != NULL && ecp_max_ops != 0 )
|
2017-03-14 13:13:13 +01:00
|
|
|
{
|
2017-03-20 14:35:19 +01:00
|
|
|
/* scale depending on curve size: the chosen reference is 256-bit,
|
|
|
|
* and multiplication is quadratic. Round to the closest integer. */
|
|
|
|
if( grp->pbits >= 512 )
|
|
|
|
ops *= 4;
|
|
|
|
else if( grp->pbits >= 384 )
|
|
|
|
ops *= 2;
|
|
|
|
|
2018-10-26 14:50:13 +02:00
|
|
|
/* Avoid infinite loops: always allow first step.
|
|
|
|
* Because of that, however, it's not generally true
|
|
|
|
* that ops_done <= ecp_max_ops, so the check
|
|
|
|
* ops_done > ecp_max_ops below is mandatory. */
|
|
|
|
if( ( rs_ctx->ops_done != 0 ) &&
|
|
|
|
( rs_ctx->ops_done > ecp_max_ops ||
|
|
|
|
ops > ecp_max_ops - rs_ctx->ops_done ) )
|
|
|
|
{
|
2017-03-14 13:13:13 +01:00
|
|
|
return( MBEDTLS_ERR_ECP_IN_PROGRESS );
|
2018-10-26 14:50:13 +02:00
|
|
|
}
|
2017-03-14 13:13:13 +01:00
|
|
|
|
2017-03-20 14:35:19 +01:00
|
|
|
/* update running count */
|
2017-04-20 10:03:45 +02:00
|
|
|
rs_ctx->ops_done += ops;
|
2017-03-14 13:13:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2017-08-23 18:18:22 +02:00
|
|
|
/* Call this when entering a function that needs its own sub-context */
|
2018-10-16 10:42:47 +02:00
|
|
|
#define ECP_RS_ENTER( SUB ) do { \
|
|
|
|
/* reset ops count for this call if top-level */ \
|
|
|
|
if( rs_ctx != NULL && rs_ctx->depth++ == 0 ) \
|
|
|
|
rs_ctx->ops_done = 0; \
|
|
|
|
\
|
|
|
|
/* 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 ); \
|
|
|
|
\
|
|
|
|
ecp_restart_## SUB ##_init( rs_ctx->SUB ); \
|
|
|
|
} \
|
2017-08-23 18:18:22 +02:00
|
|
|
} while( 0 )
|
|
|
|
|
|
|
|
/* Call this when leaving a function that needs its own sub-context */
|
2018-10-16 10:42:47 +02:00
|
|
|
#define ECP_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 ) \
|
|
|
|
{ \
|
|
|
|
ecp_restart_## SUB ##_free( rs_ctx->SUB ); \
|
|
|
|
mbedtls_free( rs_ctx->SUB ); \
|
|
|
|
rs_ctx->SUB = NULL; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
if( rs_ctx != NULL ) \
|
|
|
|
rs_ctx->depth--; \
|
2017-08-23 18:18:22 +02:00
|
|
|
} while( 0 )
|
|
|
|
|
|
|
|
#else /* MBEDTLS_ECP_RESTARTABLE */
|
|
|
|
|
|
|
|
#define ECP_RS_ENTER( sub ) (void) rs_ctx;
|
|
|
|
#define ECP_RS_LEAVE( sub ) (void) rs_ctx;
|
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#endif /* MBEDTLS_ECP_RESTARTABLE */
|
2017-03-22 11:18:33 +01:00
|
|
|
|
2013-09-16 17:30:04 +02:00
|
|
|
/*
|
|
|
|
* List of supported curves:
|
|
|
|
* - internal ID
|
2019-02-15 16:50:38 +01:00
|
|
|
* - TLS NamedCurve ID (RFC 4492 sec. 5.1.1, RFC 7071 sec. 2, RFC 8446 sec. 4.2.7)
|
2013-09-16 17:30:04 +02:00
|
|
|
* - size in bits
|
2013-10-07 19:40:41 +02:00
|
|
|
* - readable name
|
2014-01-22 11:22:20 +01:00
|
|
|
*
|
2014-02-04 14:48:50 +01:00
|
|
|
* Curves are listed in order: largest curves first, and for a given size,
|
|
|
|
* fastest curves first. This provides the default order for the SSL module.
|
2015-06-15 14:34:59 +02:00
|
|
|
*
|
2020-02-26 19:52:06 +01:00
|
|
|
* Reminder: update profiles in x509_crt.c when adding a new curves!
|
2013-09-16 17:30:04 +02:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static const mbedtls_ecp_curve_info ecp_supported_curves[] =
|
2013-09-16 17:30:04 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED)
|
|
|
|
{ MBEDTLS_ECP_DP_SECP521R1, 25, 521, "secp521r1" },
|
2013-09-16 17:30:04 +02:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_DP_BP512R1_ENABLED)
|
|
|
|
{ MBEDTLS_ECP_DP_BP512R1, 28, 512, "brainpoolP512r1" },
|
2014-01-22 11:22:20 +01:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED)
|
|
|
|
{ MBEDTLS_ECP_DP_SECP384R1, 24, 384, "secp384r1" },
|
2013-09-16 17:30:04 +02:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_DP_BP384R1_ENABLED)
|
|
|
|
{ MBEDTLS_ECP_DP_BP384R1, 27, 384, "brainpoolP384r1" },
|
2014-01-22 11:22:20 +01:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED)
|
|
|
|
{ MBEDTLS_ECP_DP_SECP256R1, 23, 256, "secp256r1" },
|
2013-09-16 17:30:04 +02:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_DP_SECP256K1_ENABLED)
|
|
|
|
{ MBEDTLS_ECP_DP_SECP256K1, 22, 256, "secp256k1" },
|
2014-02-04 14:48:50 +01:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_DP_BP256R1_ENABLED)
|
|
|
|
{ MBEDTLS_ECP_DP_BP256R1, 26, 256, "brainpoolP256r1" },
|
2014-01-22 11:22:20 +01:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED)
|
|
|
|
{ MBEDTLS_ECP_DP_SECP224R1, 21, 224, "secp224r1" },
|
2013-09-16 17:30:04 +02:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED)
|
|
|
|
{ MBEDTLS_ECP_DP_SECP224K1, 20, 224, "secp224k1" },
|
2014-01-10 18:26:48 +01:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED)
|
|
|
|
{ MBEDTLS_ECP_DP_SECP192R1, 19, 192, "secp192r1" },
|
2014-02-04 14:48:50 +01:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_DP_SECP192K1_ENABLED)
|
|
|
|
{ MBEDTLS_ECP_DP_SECP192K1, 18, 192, "secp192k1" },
|
2018-10-25 14:03:05 +02:00
|
|
|
#endif
|
2020-07-24 02:03:20 +02:00
|
|
|
#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
|
2018-12-06 18:27:31 +01:00
|
|
|
{ MBEDTLS_ECP_DP_CURVE25519, 29, 256, "x25519" },
|
2020-07-24 02:03:20 +02:00
|
|
|
#endif
|
|
|
|
#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
|
|
|
|
{ MBEDTLS_ECP_DP_CURVE448, 30, 448, "x448" },
|
2013-09-16 17:30:04 +02:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
{ MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
|
2013-09-16 17:30:04 +02:00
|
|
|
};
|
2014-02-04 14:48:50 +01:00
|
|
|
|
2014-07-08 13:31:34 +02:00
|
|
|
#define ECP_NB_CURVES sizeof( ecp_supported_curves ) / \
|
|
|
|
sizeof( ecp_supported_curves[0] )
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
static mbedtls_ecp_group_id ecp_supported_grp_id[ECP_NB_CURVES];
|
2013-09-16 17:30:04 +02:00
|
|
|
|
2013-09-18 15:31:24 +02:00
|
|
|
/*
|
|
|
|
* List of supported curves and associated info
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_ecp_curve_info *mbedtls_ecp_curve_list( void )
|
2013-09-18 15:31:24 +02:00
|
|
|
{
|
2014-06-17 14:06:49 +02:00
|
|
|
return( ecp_supported_curves );
|
2013-09-18 15:31:24 +02:00
|
|
|
}
|
|
|
|
|
2013-10-23 20:19:57 +02:00
|
|
|
/*
|
2014-02-04 14:48:50 +01:00
|
|
|
* List of supported curves, group ID only
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_ecp_group_id *mbedtls_ecp_grp_id_list( void )
|
2014-02-04 14:48:50 +01:00
|
|
|
{
|
|
|
|
static int init_done = 0;
|
|
|
|
|
|
|
|
if( ! init_done )
|
|
|
|
{
|
|
|
|
size_t i = 0;
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_ecp_curve_info *curve_info;
|
2014-02-04 14:48:50 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
for( curve_info = mbedtls_ecp_curve_list();
|
|
|
|
curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
|
2014-02-04 14:48:50 +01:00
|
|
|
curve_info++ )
|
|
|
|
{
|
|
|
|
ecp_supported_grp_id[i++] = curve_info->grp_id;
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
ecp_supported_grp_id[i] = MBEDTLS_ECP_DP_NONE;
|
2014-02-04 14:48:50 +01:00
|
|
|
|
|
|
|
init_done = 1;
|
|
|
|
}
|
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( ecp_supported_grp_id );
|
2014-02-04 14:48:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the curve info for the internal identifier
|
2013-10-23 20:19:57 +02:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_ecp_curve_info *mbedtls_ecp_curve_info_from_grp_id( mbedtls_ecp_group_id grp_id )
|
2013-10-23 20:19:57 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_ecp_curve_info *curve_info;
|
2013-10-23 20:19:57 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
for( curve_info = mbedtls_ecp_curve_list();
|
|
|
|
curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
|
2013-10-23 20:19:57 +02:00
|
|
|
curve_info++ )
|
|
|
|
{
|
|
|
|
if( curve_info->grp_id == grp_id )
|
|
|
|
return( curve_info );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the curve info from the TLS identifier
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_ecp_curve_info *mbedtls_ecp_curve_info_from_tls_id( uint16_t tls_id )
|
2013-10-23 20:19:57 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_ecp_curve_info *curve_info;
|
2013-10-23 20:19:57 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
for( curve_info = mbedtls_ecp_curve_list();
|
|
|
|
curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
|
2013-10-23 20:19:57 +02:00
|
|
|
curve_info++ )
|
|
|
|
{
|
|
|
|
if( curve_info->tls_id == tls_id )
|
|
|
|
return( curve_info );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
|
2013-11-30 15:10:14 +01:00
|
|
|
/*
|
|
|
|
* Get the curve info from the name
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_ecp_curve_info *mbedtls_ecp_curve_info_from_name( const char *name )
|
2013-11-30 15:10:14 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_ecp_curve_info *curve_info;
|
2013-11-30 15:10:14 +01:00
|
|
|
|
2019-01-31 14:20:20 +01:00
|
|
|
if( name == NULL )
|
|
|
|
return( NULL );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
for( curve_info = mbedtls_ecp_curve_list();
|
|
|
|
curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
|
2013-11-30 15:10:14 +01:00
|
|
|
curve_info++ )
|
|
|
|
{
|
2015-05-28 17:06:07 +02:00
|
|
|
if( strcmp( curve_info->name, name ) == 0 )
|
2013-11-30 15:10:14 +01:00
|
|
|
return( curve_info );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
|
2013-12-04 11:08:01 +01:00
|
|
|
/*
|
2013-12-04 23:15:46 +01:00
|
|
|
* Get the type of a curve
|
2013-12-04 11:08:01 +01:00
|
|
|
*/
|
2019-02-26 13:36:52 +01:00
|
|
|
mbedtls_ecp_curve_type mbedtls_ecp_get_type( const mbedtls_ecp_group *grp )
|
2013-12-04 11:08:01 +01:00
|
|
|
{
|
2013-12-04 23:15:46 +01:00
|
|
|
if( grp->G.X.p == NULL )
|
2019-02-26 13:36:52 +01:00
|
|
|
return( MBEDTLS_ECP_TYPE_NONE );
|
2013-12-04 23:15:46 +01:00
|
|
|
|
|
|
|
if( grp->G.Y.p == NULL )
|
2019-02-26 13:36:52 +01:00
|
|
|
return( MBEDTLS_ECP_TYPE_MONTGOMERY );
|
2013-12-04 23:15:46 +01:00
|
|
|
else
|
2019-02-26 13:36:52 +01:00
|
|
|
return( MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS );
|
2013-12-04 11:08:01 +01:00
|
|
|
}
|
|
|
|
|
2012-11-02 18:14:40 +01:00
|
|
|
/*
|
2012-11-05 17:27:54 +01:00
|
|
|
* Initialize (the components of) a point
|
2012-11-02 18:14:40 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_ecp_point_init( mbedtls_ecp_point *pt )
|
2012-11-02 18:14:40 +01:00
|
|
|
{
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE( pt != NULL );
|
2012-11-02 18:14:40 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &pt->X );
|
|
|
|
mbedtls_mpi_init( &pt->Y );
|
|
|
|
mbedtls_mpi_init( &pt->Z );
|
2012-11-05 17:27:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize (the components of) a group
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_ecp_group_init( mbedtls_ecp_group *grp )
|
2012-11-05 17:27:54 +01:00
|
|
|
{
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE( grp != NULL );
|
2012-11-05 17:27:54 +01:00
|
|
|
|
2018-06-20 10:29:47 +02:00
|
|
|
grp->id = MBEDTLS_ECP_DP_NONE;
|
2017-08-23 16:55:59 +02:00
|
|
|
mbedtls_mpi_init( &grp->P );
|
|
|
|
mbedtls_mpi_init( &grp->A );
|
|
|
|
mbedtls_mpi_init( &grp->B );
|
|
|
|
mbedtls_ecp_point_init( &grp->G );
|
|
|
|
mbedtls_mpi_init( &grp->N );
|
|
|
|
grp->pbits = 0;
|
|
|
|
grp->nbits = 0;
|
|
|
|
grp->h = 0;
|
|
|
|
grp->modp = NULL;
|
|
|
|
grp->t_pre = NULL;
|
|
|
|
grp->t_post = NULL;
|
|
|
|
grp->t_data = NULL;
|
|
|
|
grp->T = NULL;
|
|
|
|
grp->T_size = 0;
|
2012-11-02 18:14:40 +01:00
|
|
|
}
|
|
|
|
|
2013-07-01 13:40:52 +02:00
|
|
|
/*
|
|
|
|
* Initialize (the components of) a key pair
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_ecp_keypair_init( mbedtls_ecp_keypair *key )
|
2013-07-01 13:40:52 +02:00
|
|
|
{
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE( key != NULL );
|
2013-07-01 13:40:52 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_group_init( &key->grp );
|
|
|
|
mbedtls_mpi_init( &key->d );
|
|
|
|
mbedtls_ecp_point_init( &key->Q );
|
2013-07-01 13:40:52 +02:00
|
|
|
}
|
|
|
|
|
2012-10-31 19:24:21 +01:00
|
|
|
/*
|
|
|
|
* Unallocate (the components of) a point
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_ecp_point_free( mbedtls_ecp_point *pt )
|
2012-10-31 19:24:21 +01:00
|
|
|
{
|
|
|
|
if( pt == NULL )
|
|
|
|
return;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &( pt->X ) );
|
|
|
|
mbedtls_mpi_free( &( pt->Y ) );
|
|
|
|
mbedtls_mpi_free( &( pt->Z ) );
|
2012-10-31 19:24:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unallocate (the components of) a group
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_ecp_group_free( mbedtls_ecp_group *grp )
|
2012-10-31 19:24:21 +01:00
|
|
|
{
|
2013-09-17 19:13:10 +02:00
|
|
|
size_t i;
|
|
|
|
|
2012-10-31 19:24:21 +01:00
|
|
|
if( grp == NULL )
|
|
|
|
return;
|
|
|
|
|
2013-12-06 12:51:50 +01:00
|
|
|
if( grp->h != 1 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &grp->P );
|
|
|
|
mbedtls_mpi_free( &grp->A );
|
|
|
|
mbedtls_mpi_free( &grp->B );
|
|
|
|
mbedtls_ecp_point_free( &grp->G );
|
|
|
|
mbedtls_mpi_free( &grp->N );
|
2013-12-06 12:51:50 +01:00
|
|
|
}
|
2013-09-16 18:56:28 +02:00
|
|
|
|
2013-09-17 19:13:10 +02:00
|
|
|
if( grp->T != NULL )
|
|
|
|
{
|
|
|
|
for( i = 0; i < grp->T_size; i++ )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point_free( &grp->T[i] );
|
|
|
|
mbedtls_free( grp->T );
|
2013-09-17 19:13:10 +02:00
|
|
|
}
|
|
|
|
|
2018-04-17 16:51:09 +02:00
|
|
|
mbedtls_platform_zeroize( grp, sizeof( mbedtls_ecp_group ) );
|
2012-10-31 19:24:21 +01:00
|
|
|
}
|
2012-10-31 09:26:55 +01:00
|
|
|
|
2013-07-01 13:40:52 +02:00
|
|
|
/*
|
|
|
|
* Unallocate (the components of) a key pair
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_ecp_keypair_free( mbedtls_ecp_keypair *key )
|
2013-07-01 13:40:52 +02:00
|
|
|
{
|
2014-06-17 16:39:18 +02:00
|
|
|
if( key == NULL )
|
2013-07-01 13:40:52 +02:00
|
|
|
return;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_group_free( &key->grp );
|
|
|
|
mbedtls_mpi_free( &key->d );
|
|
|
|
mbedtls_ecp_point_free( &key->Q );
|
2013-07-01 13:40:52 +02:00
|
|
|
}
|
|
|
|
|
2012-11-02 18:14:40 +01:00
|
|
|
/*
|
2013-10-23 20:19:57 +02:00
|
|
|
* Copy the contents of a point
|
2012-11-02 09:40:25 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecp_copy( mbedtls_ecp_point *P, const mbedtls_ecp_point *Q )
|
2012-11-02 09:40:25 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( P != NULL );
|
|
|
|
ECP_VALIDATE_RET( Q != NULL );
|
2012-11-02 09:40:25 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &P->X, &Q->X ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &P->Y, &Q->Y ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &P->Z, &Q->Z ) );
|
2012-11-02 09:40:25 +01:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
|
|
|
}
|
2012-10-31 19:37:54 +01:00
|
|
|
|
2013-08-12 15:44:31 +02:00
|
|
|
/*
|
|
|
|
* Copy the contents of a group object
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecp_group_copy( mbedtls_ecp_group *dst, const mbedtls_ecp_group *src )
|
2013-08-12 15:44:31 +02:00
|
|
|
{
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( dst != NULL );
|
|
|
|
ECP_VALIDATE_RET( src != NULL );
|
|
|
|
|
|
|
|
return( mbedtls_ecp_group_load( dst, src->id ) );
|
2013-08-12 15:44:31 +02:00
|
|
|
}
|
|
|
|
|
2012-11-05 13:13:44 +01:00
|
|
|
/*
|
2013-10-23 20:19:57 +02:00
|
|
|
* Set point to zero
|
2012-11-05 13:13:44 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecp_set_zero( mbedtls_ecp_point *pt )
|
2012-11-05 13:13:44 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( pt != NULL );
|
2012-11-05 13:13:44 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &pt->X , 1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &pt->Y , 1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &pt->Z , 0 ) );
|
2012-11-05 13:13:44 +01:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-10-23 20:19:57 +02:00
|
|
|
* Tell if a point is zero
|
2012-11-05 13:13:44 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecp_is_zero( mbedtls_ecp_point *pt )
|
2012-11-05 13:13:44 +01:00
|
|
|
{
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( pt != NULL );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
return( mbedtls_mpi_cmp_int( &pt->Z, 0 ) == 0 );
|
2013-10-08 12:04:56 +02:00
|
|
|
}
|
|
|
|
|
2015-08-11 15:44:41 +02:00
|
|
|
/*
|
2019-01-31 14:20:20 +01:00
|
|
|
* Compare two points lazily
|
2015-08-11 15:44:41 +02:00
|
|
|
*/
|
|
|
|
int mbedtls_ecp_point_cmp( const mbedtls_ecp_point *P,
|
|
|
|
const mbedtls_ecp_point *Q )
|
|
|
|
{
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( P != NULL );
|
|
|
|
ECP_VALIDATE_RET( Q != NULL );
|
|
|
|
|
2015-08-11 15:44:41 +02:00
|
|
|
if( mbedtls_mpi_cmp_mpi( &P->X, &Q->X ) == 0 &&
|
|
|
|
mbedtls_mpi_cmp_mpi( &P->Y, &Q->Y ) == 0 &&
|
|
|
|
mbedtls_mpi_cmp_mpi( &P->Z, &Q->Z ) == 0 )
|
|
|
|
{
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
|
|
|
}
|
|
|
|
|
2013-10-08 12:04:56 +02:00
|
|
|
/*
|
2013-10-23 20:19:57 +02:00
|
|
|
* Import a non-zero point from ASCII strings
|
2013-10-08 12:04:56 +02:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecp_point_read_string( mbedtls_ecp_point *P, int radix,
|
2013-10-23 20:19:57 +02:00
|
|
|
const char *x, const char *y )
|
2013-10-08 12:04:56 +02:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( P != NULL );
|
|
|
|
ECP_VALIDATE_RET( x != NULL );
|
|
|
|
ECP_VALIDATE_RET( y != NULL );
|
2013-10-08 12:04:56 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( &P->X, radix, x ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( &P->Y, radix, y ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &P->Z, 1 ) );
|
2013-10-10 15:55:39 +02:00
|
|
|
|
|
|
|
cleanup:
|
2012-11-05 13:13:44 +01:00
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2012-11-24 14:10:14 +01:00
|
|
|
/*
|
2019-02-20 13:00:22 +01:00
|
|
|
* Export a point into unsigned binary data (SEC1 2.3.3 and RFC7748)
|
2012-11-24 14:10:14 +01:00
|
|
|
*/
|
2019-01-31 14:20:20 +01:00
|
|
|
int mbedtls_ecp_point_write_binary( const mbedtls_ecp_group *grp,
|
|
|
|
const mbedtls_ecp_point *P,
|
|
|
|
int format, size_t *olen,
|
|
|
|
unsigned char *buf, size_t buflen )
|
2012-11-24 14:10:14 +01:00
|
|
|
{
|
2019-02-26 11:53:34 +01:00
|
|
|
int ret = MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE;
|
2012-11-24 14:10:14 +01:00
|
|
|
size_t plen;
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
ECP_VALIDATE_RET( P != NULL );
|
|
|
|
ECP_VALIDATE_RET( olen != NULL );
|
|
|
|
ECP_VALIDATE_RET( buf != NULL );
|
|
|
|
ECP_VALIDATE_RET( format == MBEDTLS_ECP_PF_UNCOMPRESSED ||
|
|
|
|
format == MBEDTLS_ECP_PF_COMPRESSED );
|
2012-11-24 15:19:55 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
plen = mbedtls_mpi_size( &grp->P );
|
2012-11-24 14:10:14 +01:00
|
|
|
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
|
2019-02-28 13:12:06 +01:00
|
|
|
(void) format; /* Montgomery curves always use the same point format */
|
2019-02-26 13:36:52 +01:00
|
|
|
if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
|
2012-11-24 15:19:55 +01:00
|
|
|
{
|
2019-02-20 13:00:22 +01:00
|
|
|
*olen = plen;
|
2012-11-24 15:19:55 +01:00
|
|
|
if( buflen < *olen )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL );
|
2012-11-24 14:10:14 +01:00
|
|
|
|
2019-02-20 13:00:22 +01:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary_le( &P->X, buf, plen ) );
|
2012-11-24 15:19:55 +01:00
|
|
|
}
|
2019-02-20 13:00:22 +01:00
|
|
|
#endif
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
|
2019-02-26 13:36:52 +01:00
|
|
|
if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
|
2012-11-24 15:19:55 +01:00
|
|
|
{
|
2019-02-20 13:00:22 +01:00
|
|
|
/*
|
|
|
|
* Common case: P == 0
|
|
|
|
*/
|
|
|
|
if( mbedtls_mpi_cmp_int( &P->Z, 0 ) == 0 )
|
|
|
|
{
|
|
|
|
if( buflen < 1 )
|
|
|
|
return( MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL );
|
2012-11-24 15:19:55 +01:00
|
|
|
|
2019-02-20 13:00:22 +01:00
|
|
|
buf[0] = 0x00;
|
|
|
|
*olen = 1;
|
2012-11-24 15:19:55 +01:00
|
|
|
|
2019-02-20 13:00:22 +01:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( format == MBEDTLS_ECP_PF_UNCOMPRESSED )
|
|
|
|
{
|
|
|
|
*olen = 2 * plen + 1;
|
2012-11-24 15:19:55 +01:00
|
|
|
|
2019-02-20 13:00:22 +01:00
|
|
|
if( buflen < *olen )
|
|
|
|
return( MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL );
|
|
|
|
|
|
|
|
buf[0] = 0x04;
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary( &P->X, buf + 1, plen ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary( &P->Y, buf + 1 + plen, plen ) );
|
|
|
|
}
|
|
|
|
else if( format == MBEDTLS_ECP_PF_COMPRESSED )
|
|
|
|
{
|
|
|
|
*olen = plen + 1;
|
|
|
|
|
|
|
|
if( buflen < *olen )
|
|
|
|
return( MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL );
|
|
|
|
|
|
|
|
buf[0] = 0x02 + mbedtls_mpi_get_bit( &P->Y, 0 );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary( &P->X, buf + 1, plen ) );
|
|
|
|
}
|
2012-11-24 15:19:55 +01:00
|
|
|
}
|
2019-02-20 13:00:22 +01:00
|
|
|
#endif
|
2012-11-24 14:10:14 +01:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2012-11-24 16:19:42 +01:00
|
|
|
/*
|
2019-02-13 11:44:06 +01:00
|
|
|
* Import a point from unsigned binary data (SEC1 2.3.4 and RFC7748)
|
2012-11-24 16:19:42 +01:00
|
|
|
*/
|
2019-01-31 14:20:20 +01:00
|
|
|
int mbedtls_ecp_point_read_binary( const mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_ecp_point *pt,
|
|
|
|
const unsigned char *buf, size_t ilen )
|
2014-03-19 16:18:38 +01:00
|
|
|
{
|
2019-02-26 11:53:34 +01:00
|
|
|
int ret = MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE;
|
2012-11-24 16:19:42 +01:00
|
|
|
size_t plen;
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
ECP_VALIDATE_RET( pt != NULL );
|
|
|
|
ECP_VALIDATE_RET( buf != NULL );
|
2012-11-24 16:19:42 +01:00
|
|
|
|
2014-10-20 13:59:19 +02:00
|
|
|
if( ilen < 1 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2014-07-08 13:09:24 +02:00
|
|
|
|
2019-02-13 11:44:06 +01:00
|
|
|
plen = mbedtls_mpi_size( &grp->P );
|
|
|
|
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
|
2019-02-26 13:36:52 +01:00
|
|
|
if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
|
2014-03-26 14:12:20 +01:00
|
|
|
{
|
2019-02-13 11:44:06 +01:00
|
|
|
if( plen != ilen )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2012-11-24 16:19:42 +01:00
|
|
|
|
2019-02-13 11:44:06 +01:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary_le( &pt->X, buf, plen ) );
|
|
|
|
mbedtls_mpi_free( &pt->Y );
|
2012-11-24 16:19:42 +01:00
|
|
|
|
2019-02-13 11:44:06 +01:00
|
|
|
if( grp->id == MBEDTLS_ECP_DP_CURVE25519 )
|
2019-02-25 12:35:20 +01:00
|
|
|
/* Set most significant bit to 0 as prescribed in RFC7748 §5 */
|
2019-02-13 11:44:06 +01:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( &pt->X, plen * 8 - 1, 0 ) );
|
2014-03-19 16:18:38 +01:00
|
|
|
|
2019-02-26 11:53:34 +01:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &pt->Z, 1 ) );
|
2014-03-26 14:12:20 +01:00
|
|
|
}
|
2019-02-13 11:44:06 +01:00
|
|
|
#endif
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
|
2019-02-26 13:36:52 +01:00
|
|
|
if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
|
2019-02-13 11:44:06 +01:00
|
|
|
{
|
|
|
|
if( buf[0] == 0x00 )
|
|
|
|
{
|
|
|
|
if( ilen == 1 )
|
|
|
|
return( mbedtls_ecp_set_zero( pt ) );
|
|
|
|
else
|
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
|
|
|
}
|
2012-11-24 16:19:42 +01:00
|
|
|
|
2019-02-13 11:44:06 +01:00
|
|
|
if( buf[0] != 0x04 )
|
|
|
|
return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
|
2012-11-24 16:19:42 +01:00
|
|
|
|
2019-02-13 11:44:06 +01:00
|
|
|
if( ilen != 2 * plen + 1 )
|
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2014-03-19 16:18:38 +01:00
|
|
|
|
2019-02-13 11:44:06 +01:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary( &pt->X, buf + 1, plen ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary( &pt->Y,
|
|
|
|
buf + 1 + plen, plen ) );
|
2019-02-26 11:53:34 +01:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &pt->Z, 1 ) );
|
2019-02-13 11:44:06 +01:00
|
|
|
}
|
|
|
|
#endif
|
2012-11-24 16:19:42 +01:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2013-02-09 19:00:07 +01:00
|
|
|
/*
|
|
|
|
* Import a point from a TLS ECPoint record (RFC 4492)
|
|
|
|
* struct {
|
|
|
|
* opaque point <1..2^8-1>;
|
|
|
|
* } ECPoint;
|
|
|
|
*/
|
2019-01-31 14:20:20 +01:00
|
|
|
int mbedtls_ecp_tls_read_point( const mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_ecp_point *pt,
|
|
|
|
const unsigned char **buf, size_t buf_len )
|
2013-02-09 19:00:07 +01:00
|
|
|
{
|
|
|
|
unsigned char data_len;
|
2013-02-10 13:38:29 +01:00
|
|
|
const unsigned char *buf_start;
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
ECP_VALIDATE_RET( pt != NULL );
|
|
|
|
ECP_VALIDATE_RET( buf != NULL );
|
|
|
|
ECP_VALIDATE_RET( *buf != NULL );
|
2013-02-09 19:00:07 +01:00
|
|
|
|
|
|
|
/*
|
2014-07-08 13:09:24 +02:00
|
|
|
* We must have at least two bytes (1 for length, at least one for data)
|
2013-02-09 19:00:07 +01:00
|
|
|
*/
|
|
|
|
if( buf_len < 2 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2013-02-09 19:00:07 +01:00
|
|
|
|
2013-02-10 13:38:29 +01:00
|
|
|
data_len = *(*buf)++;
|
2013-02-09 19:00:07 +01:00
|
|
|
if( data_len < 1 || data_len > buf_len - 1 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2013-02-09 19:00:07 +01:00
|
|
|
|
2013-02-10 13:38:29 +01:00
|
|
|
/*
|
|
|
|
* Save buffer start for read_binary and update buf
|
|
|
|
*/
|
|
|
|
buf_start = *buf;
|
|
|
|
*buf += data_len;
|
|
|
|
|
2019-01-31 14:20:20 +01:00
|
|
|
return( mbedtls_ecp_point_read_binary( grp, pt, buf_start, data_len ) );
|
2013-02-09 19:00:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Export a point as a TLS ECPoint record (RFC 4492)
|
|
|
|
* struct {
|
|
|
|
* opaque point <1..2^8-1>;
|
|
|
|
* } ECPoint;
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecp_tls_write_point( const mbedtls_ecp_group *grp, const mbedtls_ecp_point *pt,
|
2013-02-10 12:22:46 +01:00
|
|
|
int format, size_t *olen,
|
|
|
|
unsigned char *buf, size_t blen )
|
2013-02-09 19:00:07 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
ECP_VALIDATE_RET( pt != NULL );
|
|
|
|
ECP_VALIDATE_RET( olen != NULL );
|
|
|
|
ECP_VALIDATE_RET( buf != NULL );
|
|
|
|
ECP_VALIDATE_RET( format == MBEDTLS_ECP_PF_UNCOMPRESSED ||
|
|
|
|
format == MBEDTLS_ECP_PF_COMPRESSED );
|
2013-02-10 12:22:46 +01:00
|
|
|
|
2013-02-09 19:00:07 +01:00
|
|
|
/*
|
2013-02-10 12:22:46 +01:00
|
|
|
* buffer length must be at least one, for our length byte
|
2013-02-09 19:00:07 +01:00
|
|
|
*/
|
2013-02-10 12:22:46 +01:00
|
|
|
if( blen < 1 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2013-02-09 19:00:07 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_ecp_point_write_binary( grp, pt, format,
|
2013-02-10 12:22:46 +01:00
|
|
|
olen, buf + 1, blen - 1) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* write length to the first byte and update total length
|
|
|
|
*/
|
2013-10-11 18:58:55 +02:00
|
|
|
buf[0] = (unsigned char) *olen;
|
2013-02-10 12:22:46 +01:00
|
|
|
++*olen;
|
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( 0 );
|
2013-02-09 19:00:07 +01:00
|
|
|
}
|
|
|
|
|
2013-10-23 20:19:57 +02:00
|
|
|
/*
|
|
|
|
* Set a group from an ECParameters record (RFC 4492)
|
|
|
|
*/
|
2019-01-31 14:20:20 +01:00
|
|
|
int mbedtls_ecp_tls_read_group( mbedtls_ecp_group *grp,
|
|
|
|
const unsigned char **buf, size_t len )
|
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2019-01-31 14:20:20 +01:00
|
|
|
mbedtls_ecp_group_id grp_id;
|
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
ECP_VALIDATE_RET( buf != NULL );
|
|
|
|
ECP_VALIDATE_RET( *buf != NULL );
|
|
|
|
|
|
|
|
if( ( ret = mbedtls_ecp_tls_read_group_id( &grp_id, buf, len ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
return( mbedtls_ecp_group_load( grp, grp_id ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read a group id from an ECParameters record (RFC 4492) and convert it to
|
|
|
|
* mbedtls_ecp_group_id.
|
|
|
|
*/
|
|
|
|
int mbedtls_ecp_tls_read_group_id( mbedtls_ecp_group_id *grp,
|
|
|
|
const unsigned char **buf, size_t len )
|
2013-10-23 20:19:57 +02:00
|
|
|
{
|
|
|
|
uint16_t tls_id;
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_ecp_curve_info *curve_info;
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
ECP_VALIDATE_RET( buf != NULL );
|
|
|
|
ECP_VALIDATE_RET( *buf != NULL );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We expect at least three bytes (see below)
|
|
|
|
*/
|
|
|
|
if( len < 3 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* First byte is curve_type; only named_curve is handled
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
if( *(*buf)++ != MBEDTLS_ECP_TLS_NAMED_CURVE )
|
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Next two bytes are the namedcurve value
|
|
|
|
*/
|
|
|
|
tls_id = *(*buf)++;
|
|
|
|
tls_id <<= 8;
|
|
|
|
tls_id |= *(*buf)++;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( curve_info = mbedtls_ecp_curve_info_from_tls_id( tls_id ) ) == NULL )
|
|
|
|
return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
2019-01-31 14:20:20 +01:00
|
|
|
*grp = curve_info->grp_id;
|
|
|
|
|
|
|
|
return( 0 );
|
2013-10-23 20:19:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write the ECParameters record corresponding to a group (RFC 4492)
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecp_tls_write_group( const mbedtls_ecp_group *grp, size_t *olen,
|
2013-10-23 20:19:57 +02:00
|
|
|
unsigned char *buf, size_t blen )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_ecp_curve_info *curve_info;
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
ECP_VALIDATE_RET( buf != NULL );
|
|
|
|
ECP_VALIDATE_RET( olen != NULL );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( curve_info = mbedtls_ecp_curve_info_from_grp_id( grp->id ) ) == NULL )
|
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We are going to write 3 bytes (see below)
|
|
|
|
*/
|
|
|
|
*olen = 3;
|
|
|
|
if( blen < *olen )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* First byte is curve_type, always named_curve
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
*buf++ = MBEDTLS_ECP_TLS_NAMED_CURVE;
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Next two bytes are the namedcurve value
|
|
|
|
*/
|
|
|
|
buf[0] = curve_info->tls_id >> 8;
|
|
|
|
buf[1] = curve_info->tls_id & 0xFF;
|
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( 0 );
|
2013-10-23 20:19:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2015-04-08 12:49:31 +02:00
|
|
|
* Wrapper around fast quasi-modp functions, with fall-back to mbedtls_mpi_mod_mpi.
|
|
|
|
* See the documentation of struct mbedtls_ecp_group.
|
2013-10-23 20:19:57 +02:00
|
|
|
*
|
2015-04-08 12:49:31 +02:00
|
|
|
* This function is in the critial loop for mbedtls_ecp_mul, so pay attention to perf.
|
2013-10-23 20:19:57 +02:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_modp( mbedtls_mpi *N, const mbedtls_ecp_group *grp )
|
2013-10-23 20:19:57 +02:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
if( grp->modp == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( mbedtls_mpi_mod_mpi( N, N, &grp->P ) );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
/* N->s < 0 is a much faster test, which fails only if N is 0 */
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( N->s < 0 && mbedtls_mpi_cmp_int( N, 0 ) != 0 ) ||
|
2015-06-18 16:47:17 +02:00
|
|
|
mbedtls_mpi_bitlen( N ) > 2 * grp->pbits )
|
2013-10-23 20:19:57 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2013-10-23 20:19:57 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( grp->modp( N ) );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
/* N->s < 0 is a much faster test, which fails only if N is 0 */
|
2015-04-08 12:49:31 +02:00
|
|
|
while( N->s < 0 && mbedtls_mpi_cmp_int( N, 0 ) != 0 )
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_add_mpi( N, N, &grp->P ) );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
while( mbedtls_mpi_cmp_mpi( N, &grp->P ) >= 0 )
|
2013-10-23 20:19:57 +02:00
|
|
|
/* we known P, N and the result are positive */
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_abs( N, N, &grp->P ) );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fast mod-p functions expect their argument to be in the 0..p^2 range.
|
|
|
|
*
|
|
|
|
* In order to guarantee that, we need to ensure that operands of
|
2015-04-08 12:49:31 +02:00
|
|
|
* mbedtls_mpi_mul_mpi are in the 0..p range. So, after each operation we will
|
2013-10-23 20:19:57 +02:00
|
|
|
* bring the result back to this range.
|
|
|
|
*
|
|
|
|
* The following macros are shortcuts for doing that.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2015-04-08 12:49:31 +02:00
|
|
|
* Reduce a mbedtls_mpi mod p in-place, general case, to use after mbedtls_mpi_mul_mpi
|
2013-10-23 20:19:57 +02:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SELF_TEST)
|
2013-11-21 20:23:55 +01:00
|
|
|
#define INC_MUL_COUNT mul_count++;
|
|
|
|
#else
|
|
|
|
#define INC_MUL_COUNT
|
|
|
|
#endif
|
|
|
|
|
2018-10-15 13:01:35 +02:00
|
|
|
#define MOD_MUL( N ) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
MBEDTLS_MPI_CHK( ecp_modp( &(N), grp ) ); \
|
|
|
|
INC_MUL_COUNT \
|
|
|
|
} while( 0 )
|
2013-10-23 20:19:57 +02:00
|
|
|
|
2019-07-18 21:08:27 +02:00
|
|
|
static inline int mbedtls_mpi_mul_mod( const mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_mpi *X,
|
|
|
|
const mbedtls_mpi *A,
|
|
|
|
const mbedtls_mpi *B )
|
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( X, A, B ) );
|
|
|
|
MOD_MUL( *X );
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2013-10-23 20:19:57 +02:00
|
|
|
/*
|
2015-04-08 12:49:31 +02:00
|
|
|
* Reduce a mbedtls_mpi mod p in-place, to use after mbedtls_mpi_sub_mpi
|
2013-10-23 20:19:57 +02:00
|
|
|
* N->s < 0 is a very fast test, which fails only if N is 0
|
|
|
|
*/
|
2018-10-15 13:01:35 +02:00
|
|
|
#define MOD_SUB( N ) \
|
|
|
|
while( (N).s < 0 && mbedtls_mpi_cmp_int( &(N), 0 ) != 0 ) \
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_add_mpi( &(N), &(N), &grp->P ) )
|
2013-10-23 20:19:57 +02:00
|
|
|
|
2019-07-18 21:08:27 +02:00
|
|
|
static inline int mbedtls_mpi_sub_mod( const mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_mpi *X,
|
|
|
|
const mbedtls_mpi *A,
|
|
|
|
const mbedtls_mpi *B )
|
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mpi( X, A, B ) );
|
|
|
|
MOD_SUB( *X );
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2013-10-23 20:19:57 +02:00
|
|
|
/*
|
2015-04-08 12:49:31 +02:00
|
|
|
* Reduce a mbedtls_mpi mod p in-place, to use after mbedtls_mpi_add_mpi and mbedtls_mpi_mul_int.
|
2013-10-23 20:19:57 +02:00
|
|
|
* We known P, N and the result are positive, so sub_abs is correct, and
|
|
|
|
* a bit faster.
|
|
|
|
*/
|
2018-10-15 13:01:35 +02:00
|
|
|
#define MOD_ADD( N ) \
|
|
|
|
while( mbedtls_mpi_cmp_mpi( &(N), &grp->P ) >= 0 ) \
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_abs( &(N), &(N), &grp->P ) )
|
2013-10-23 20:19:57 +02:00
|
|
|
|
2019-07-18 21:08:27 +02:00
|
|
|
static inline int mbedtls_mpi_add_mod( const mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_mpi *X,
|
|
|
|
const mbedtls_mpi *A,
|
|
|
|
const mbedtls_mpi *B )
|
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_add_mpi( X, A, B ) );
|
|
|
|
MOD_ADD( *X );
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int mbedtls_mpi_shift_l_mod( const mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_mpi *X,
|
|
|
|
size_t count )
|
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_shift_l( X, count ) );
|
|
|
|
MOD_ADD( *X );
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
|
2013-12-04 23:15:46 +01:00
|
|
|
/*
|
|
|
|
* For curves in short Weierstrass form, we do all the internal operations in
|
|
|
|
* Jacobian coordinates.
|
|
|
|
*
|
|
|
|
* For multiplication, we'll use a comb method with coutermeasueres against
|
|
|
|
* SPA, hence timing attacks.
|
|
|
|
*/
|
|
|
|
|
2013-10-23 20:19:57 +02:00
|
|
|
/*
|
|
|
|
* Normalize jacobian coordinates so that Z == 0 || Z == 1 (GECC 3.2.1)
|
2013-11-20 22:57:38 +01:00
|
|
|
* Cost: 1N := 1I + 3M + 1S
|
2013-10-23 20:19:57 +02:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_normalize_jac( const mbedtls_ecp_group *grp, mbedtls_ecp_point *pt )
|
2013-10-23 20:19:57 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_mpi_cmp_int( &pt->Z, 0 ) == 0 )
|
2013-10-23 20:19:57 +02:00
|
|
|
return( 0 );
|
|
|
|
|
2016-08-18 13:38:46 +02:00
|
|
|
#if defined(MBEDTLS_ECP_NORMALIZE_JAC_ALT)
|
2017-08-23 16:23:36 +02:00
|
|
|
if( mbedtls_internal_ecp_grp_capable( grp ) )
|
|
|
|
return( mbedtls_internal_ecp_normalize_jac( grp, pt ) );
|
2016-10-28 17:53:11 +02:00
|
|
|
#endif /* MBEDTLS_ECP_NORMALIZE_JAC_ALT */
|
2021-01-22 09:43:59 +01:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECP_NO_FALLBACK) && defined(MBEDTLS_ECP_NORMALIZE_JAC_ALT)
|
|
|
|
return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
|
|
|
|
#else
|
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
|
|
|
mbedtls_mpi Zi, ZZi;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &Zi ); mbedtls_mpi_init( &ZZi );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* X = X / Z^2 mod p
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_inv_mod( &Zi, &pt->Z, &grp->P ) );
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &ZZi, &Zi, &Zi ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &pt->X, &pt->X, &ZZi ) );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Y = Y / Z^3 mod p
|
|
|
|
*/
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &pt->Y, &pt->Y, &ZZi ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &pt->Y, &pt->Y, &Zi ) );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Z = 1
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &pt->Z, 1 ) );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &Zi ); mbedtls_mpi_free( &ZZi );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
return( ret );
|
2021-01-22 09:43:59 +01:00
|
|
|
#endif /* !defined(MBEDTLS_ECP_NO_FALLBACK) || !defined(MBEDTLS_ECP_NORMALIZE_JAC_ALT) */
|
2013-10-23 20:19:57 +02:00
|
|
|
}
|
|
|
|
|
2012-11-07 20:24:05 +01:00
|
|
|
/*
|
2013-11-16 15:50:12 +01:00
|
|
|
* Normalize jacobian coordinates of an array of (pointers to) points,
|
2013-10-23 20:19:57 +02:00
|
|
|
* using Montgomery's trick to perform only one inversion mod P.
|
|
|
|
* (See for example Cohen's "A Course in Computational Algebraic Number
|
|
|
|
* Theory", Algorithm 10.3.4.)
|
|
|
|
*
|
|
|
|
* Warning: fails (returning an error) if one of the points is zero!
|
2013-12-05 10:26:01 +01:00
|
|
|
* This should never happen, see choice of w in ecp_mul_comb().
|
2013-11-20 22:57:38 +01:00
|
|
|
*
|
|
|
|
* Cost: 1N(t) := 1I + (6t - 3)M + 1S
|
2012-11-07 20:24:05 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_normalize_jac_many( const mbedtls_ecp_group *grp,
|
2017-08-23 16:27:29 +02:00
|
|
|
mbedtls_ecp_point *T[], size_t T_size )
|
2012-11-07 20:24:05 +01:00
|
|
|
{
|
2017-08-23 16:27:29 +02:00
|
|
|
if( T_size < 2 )
|
2013-12-02 19:44:41 +01:00
|
|
|
return( ecp_normalize_jac( grp, *T ) );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
2016-08-18 13:38:46 +02:00
|
|
|
#if defined(MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT)
|
2017-08-23 16:23:36 +02:00
|
|
|
if( mbedtls_internal_ecp_grp_capable( grp ) )
|
2017-08-23 16:27:29 +02:00
|
|
|
return( mbedtls_internal_ecp_normalize_jac_many( grp, T, T_size ) );
|
2016-08-18 13:38:46 +02:00
|
|
|
#endif
|
|
|
|
|
2021-01-22 09:43:59 +01:00
|
|
|
#if defined(MBEDTLS_ECP_NO_FALLBACK) && defined(MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT)
|
|
|
|
return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
|
|
|
|
#else
|
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
|
|
|
size_t i;
|
|
|
|
mbedtls_mpi *c, u, Zi, ZZi;
|
|
|
|
|
2017-08-23 16:27:29 +02:00
|
|
|
if( ( c = mbedtls_calloc( T_size, sizeof( mbedtls_mpi ) ) ) == NULL )
|
2015-05-28 09:33:39 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_ALLOC_FAILED );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
2017-08-23 16:55:59 +02:00
|
|
|
for( i = 0; i < T_size; i++ )
|
|
|
|
mbedtls_mpi_init( &c[i] );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &u ); mbedtls_mpi_init( &Zi ); mbedtls_mpi_init( &ZZi );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* c[i] = Z_0 * ... * Z_i
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &c[0], &T[0]->Z ) );
|
2017-08-23 16:27:29 +02:00
|
|
|
for( i = 1; i < T_size; i++ )
|
2012-11-07 20:24:05 +01:00
|
|
|
{
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &c[i], &c[i-1], &T[i]->Z ) );
|
2013-10-23 20:19:57 +02:00
|
|
|
}
|
2012-11-10 14:23:17 +01:00
|
|
|
|
2013-10-23 20:19:57 +02:00
|
|
|
/*
|
|
|
|
* u = 1 / (Z_0 * ... * Z_n) mod P
|
|
|
|
*/
|
2017-08-23 16:27:29 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_inv_mod( &u, &c[T_size-1], &grp->P ) );
|
2012-11-10 14:23:17 +01:00
|
|
|
|
2017-08-23 16:27:29 +02:00
|
|
|
for( i = T_size - 1; ; i-- )
|
2013-10-23 20:19:57 +02:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Zi = 1 / Z_i mod p
|
|
|
|
* u = 1 / (Z_0 * ... * Z_i) mod P
|
|
|
|
*/
|
|
|
|
if( i == 0 ) {
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &Zi, &u ) );
|
2013-10-23 20:19:57 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &Zi, &u, &c[i-1] ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &u, &u, &T[i]->Z ) );
|
2013-10-23 20:19:57 +02:00
|
|
|
}
|
2012-11-10 14:23:17 +01:00
|
|
|
|
2013-10-23 20:19:57 +02:00
|
|
|
/*
|
|
|
|
* proceed as in normalize()
|
|
|
|
*/
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &ZZi, &Zi, &Zi ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &T[i]->X, &T[i]->X, &ZZi ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &T[i]->Y, &T[i]->Y, &ZZi ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &T[i]->Y, &T[i]->Y, &Zi ) );
|
2013-12-30 17:31:56 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Post-precessing: reclaim some memory by shrinking coordinates
|
|
|
|
* - not storing Z (always 1)
|
|
|
|
* - shrinking other coordinates, but still keeping the same number of
|
|
|
|
* limbs as P, as otherwise it will too likely be regrown too fast.
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_shrink( &T[i]->X, grp->P.n ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_shrink( &T[i]->Y, grp->P.n ) );
|
|
|
|
mbedtls_mpi_free( &T[i]->Z );
|
2012-11-10 14:23:17 +01:00
|
|
|
|
2013-10-23 20:19:57 +02:00
|
|
|
if( i == 0 )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &u ); mbedtls_mpi_free( &Zi ); mbedtls_mpi_free( &ZZi );
|
2017-08-23 16:27:29 +02:00
|
|
|
for( i = 0; i < T_size; i++ )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &c[i] );
|
|
|
|
mbedtls_free( c );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
return( ret );
|
2021-01-22 09:43:59 +01:00
|
|
|
#endif /* !defined(MBEDTLS_ECP_NO_FALLBACK) || !defined(MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT) */
|
2013-10-23 20:19:57 +02:00
|
|
|
}
|
|
|
|
|
2013-11-21 17:47:12 +01:00
|
|
|
/*
|
|
|
|
* Conditional point inversion: Q -> -Q = (Q.X, -Q.Y, Q.Z) without leak.
|
|
|
|
* "inv" must be 0 (don't invert) or 1 (invert) or the result will be invalid
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_safe_invert_jac( const mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_ecp_point *Q,
|
2013-11-21 17:47:12 +01:00
|
|
|
unsigned char inv )
|
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2013-11-21 17:47:12 +01:00
|
|
|
unsigned char nonzero;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi mQY;
|
2013-11-21 17:47:12 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &mQY );
|
2013-11-21 17:47:12 +01:00
|
|
|
|
|
|
|
/* Use the fact that -Q.Y mod P = P - Q.Y unless Q.Y == 0 */
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mpi( &mQY, &grp->P, &Q->Y ) );
|
|
|
|
nonzero = mbedtls_mpi_cmp_int( &Q->Y, 0 ) != 0;
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_safe_cond_assign( &Q->Y, &mQY, inv & nonzero ) );
|
2013-11-21 17:47:12 +01:00
|
|
|
|
|
|
|
cleanup:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &mQY );
|
2013-11-21 17:47:12 +01:00
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2013-10-23 20:19:57 +02:00
|
|
|
/*
|
|
|
|
* Point doubling R = 2 P, Jacobian coordinates
|
|
|
|
*
|
2015-02-07 08:43:51 +01:00
|
|
|
* Based on http://www.hyperelliptic.org/EFD/g1p/auto-shortw-jacobian.html#doubling-dbl-1998-cmo-2 .
|
2013-11-20 22:57:38 +01:00
|
|
|
*
|
2015-02-07 08:43:51 +01:00
|
|
|
* We follow the variable naming fairly closely. The formula variations that trade a MUL for a SQR
|
|
|
|
* (plus a few ADDs) aren't useful as our bignum implementation doesn't distinguish squaring.
|
|
|
|
*
|
|
|
|
* Standard optimizations are applied when curve parameter A is one of { 0, -3 }.
|
|
|
|
*
|
|
|
|
* Cost: 1D := 3M + 4S (A == 0)
|
|
|
|
* 4M + 4S (A == -3)
|
|
|
|
* 3M + 6S + 1a otherwise
|
2013-10-23 20:19:57 +02:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_double_jac( const mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
|
|
|
|
const mbedtls_ecp_point *P )
|
2013-10-23 20:19:57 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SELF_TEST)
|
2013-10-23 20:19:57 +02:00
|
|
|
dbl_count++;
|
2013-10-23 16:11:52 +02:00
|
|
|
#endif
|
2012-11-07 20:24:05 +01:00
|
|
|
|
2016-08-18 13:38:46 +02:00
|
|
|
#if defined(MBEDTLS_ECP_DOUBLE_JAC_ALT)
|
2017-08-23 16:23:36 +02:00
|
|
|
if( mbedtls_internal_ecp_grp_capable( grp ) )
|
|
|
|
return( mbedtls_internal_ecp_double_jac( grp, R, P ) );
|
2016-10-28 17:53:11 +02:00
|
|
|
#endif /* MBEDTLS_ECP_DOUBLE_JAC_ALT */
|
2016-08-18 13:38:46 +02:00
|
|
|
|
2021-01-22 09:43:59 +01:00
|
|
|
#if defined(MBEDTLS_ECP_NO_FALLBACK) && defined(MBEDTLS_ECP_DOUBLE_JAC_ALT)
|
|
|
|
return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
|
|
|
|
#else
|
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
|
|
|
mbedtls_mpi M, S, T, U;
|
|
|
|
|
2015-05-12 10:36:26 +02:00
|
|
|
mbedtls_mpi_init( &M ); mbedtls_mpi_init( &S ); mbedtls_mpi_init( &T ); mbedtls_mpi_init( &U );
|
2013-12-06 12:41:30 +01:00
|
|
|
|
|
|
|
/* Special case for A = -3 */
|
|
|
|
if( grp->A.p == NULL )
|
|
|
|
{
|
2015-02-07 08:43:51 +01:00
|
|
|
/* M = 3(X + Z^2)(X - Z^2) */
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &S, &P->Z, &P->Z ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_add_mod( grp, &T, &P->X, &S ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mod( grp, &U, &P->X, &S ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &S, &T, &U ) );
|
2015-05-12 10:36:26 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_int( &M, &S, 3 ) ); MOD_ADD( M );
|
2013-12-06 12:41:30 +01:00
|
|
|
}
|
|
|
|
else
|
2014-08-06 00:48:39 +02:00
|
|
|
{
|
2015-02-07 08:43:51 +01:00
|
|
|
/* M = 3.X^2 */
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &S, &P->X, &P->X ) );
|
2015-05-12 10:36:26 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_int( &M, &S, 3 ) ); MOD_ADD( M );
|
2015-02-07 08:43:51 +01:00
|
|
|
|
|
|
|
/* Optimize away for "koblitz" curves with A = 0 */
|
2015-05-12 10:36:26 +02:00
|
|
|
if( mbedtls_mpi_cmp_int( &grp->A, 0 ) != 0 )
|
2015-02-07 08:43:51 +01:00
|
|
|
{
|
|
|
|
/* M += A.Z^4 */
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &S, &P->Z, &P->Z ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &T, &S, &S ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &S, &T, &grp->A ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_add_mod( grp, &M, &M, &S ) );
|
2015-02-07 08:43:51 +01:00
|
|
|
}
|
2014-08-06 00:48:39 +02:00
|
|
|
}
|
2013-12-06 12:41:30 +01:00
|
|
|
|
2015-02-07 08:43:51 +01:00
|
|
|
/* S = 4.X.Y^2 */
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &T, &P->Y, &P->Y ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_shift_l_mod( grp, &T, 1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &S, &P->X, &T ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_shift_l_mod( grp, &S, 1 ) );
|
2015-02-07 08:43:51 +01:00
|
|
|
|
|
|
|
/* U = 8.Y^4 */
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &U, &T, &T ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_shift_l_mod( grp, &U, 1 ) );
|
2015-02-07 08:43:51 +01:00
|
|
|
|
|
|
|
/* T = M^2 - 2.S */
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &T, &M, &M ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mod( grp, &T, &T, &S ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mod( grp, &T, &T, &S ) );
|
2015-02-07 08:43:51 +01:00
|
|
|
|
|
|
|
/* S = M(S - T) - U */
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mod( grp, &S, &S, &T ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &S, &S, &M ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mod( grp, &S, &S, &U ) );
|
2015-02-07 08:43:51 +01:00
|
|
|
|
|
|
|
/* U = 2.Y.Z */
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &U, &P->Y, &P->Z ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_shift_l_mod( grp, &U, 1 ) );
|
2015-02-07 08:43:51 +01:00
|
|
|
|
2015-05-12 10:36:26 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &R->X, &T ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &R->Y, &S ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &R->Z, &U ) );
|
2013-10-08 12:04:56 +02:00
|
|
|
|
2013-10-23 20:19:57 +02:00
|
|
|
cleanup:
|
2015-05-12 10:36:26 +02:00
|
|
|
mbedtls_mpi_free( &M ); mbedtls_mpi_free( &S ); mbedtls_mpi_free( &T ); mbedtls_mpi_free( &U );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
return( ret );
|
2021-01-22 09:43:59 +01:00
|
|
|
#endif /* !defined(MBEDTLS_ECP_NO_FALLBACK) || !defined(MBEDTLS_ECP_DOUBLE_JAC_ALT) */
|
2013-02-09 17:03:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-11-21 18:20:43 +01:00
|
|
|
* Addition: R = P + Q, mixed affine-Jacobian coordinates (GECC 3.22)
|
2013-10-23 20:19:57 +02:00
|
|
|
*
|
|
|
|
* The coordinates of Q must be normalized (= affine),
|
|
|
|
* but those of P don't need to. R is not normalized.
|
|
|
|
*
|
2013-11-21 19:19:54 +01:00
|
|
|
* Special cases: (1) P or Q is zero, (2) R is zero, (3) P == Q.
|
2013-12-05 10:26:01 +01:00
|
|
|
* None of these cases can happen as intermediate step in ecp_mul_comb():
|
2013-11-21 19:19:54 +01:00
|
|
|
* - at each step, P, Q and R are multiples of the base point, the factor
|
|
|
|
* being less than its order, so none of them is zero;
|
|
|
|
* - Q is an odd multiple of the base point, P an even multiple,
|
|
|
|
* due to the choice of precomputed points in the modified comb method.
|
|
|
|
* So branches for these cases do not leak secret information.
|
|
|
|
*
|
2013-12-30 16:04:55 +01:00
|
|
|
* We accept Q->Z being unset (saving memory in tables) as meaning 1.
|
|
|
|
*
|
2013-11-20 22:57:38 +01:00
|
|
|
* Cost: 1A := 8M + 3S
|
2013-02-09 17:03:58 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_add_mixed( const mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
|
|
|
|
const mbedtls_ecp_point *P, const mbedtls_ecp_point *Q )
|
2013-02-09 17:03:58 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SELF_TEST)
|
2013-10-23 20:19:57 +02:00
|
|
|
add_count++;
|
|
|
|
#endif
|
2013-02-09 17:03:58 +01:00
|
|
|
|
2016-08-18 13:38:46 +02:00
|
|
|
#if defined(MBEDTLS_ECP_ADD_MIXED_ALT)
|
2017-08-23 16:23:36 +02:00
|
|
|
if( mbedtls_internal_ecp_grp_capable( grp ) )
|
|
|
|
return( mbedtls_internal_ecp_add_mixed( grp, R, P, Q ) );
|
2016-10-28 17:53:11 +02:00
|
|
|
#endif /* MBEDTLS_ECP_ADD_MIXED_ALT */
|
2016-08-18 13:38:46 +02:00
|
|
|
|
2021-01-22 09:43:59 +01:00
|
|
|
#if defined(MBEDTLS_ECP_NO_FALLBACK) && defined(MBEDTLS_ECP_ADD_MIXED_ALT)
|
|
|
|
return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
|
|
|
|
#else
|
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
|
|
|
mbedtls_mpi T1, T2, T3, T4, X, Y, Z;
|
|
|
|
|
2013-02-09 17:03:58 +01:00
|
|
|
/*
|
2013-11-21 19:19:54 +01:00
|
|
|
* Trivial cases: P == 0 or Q == 0 (case 1)
|
2013-02-09 17:03:58 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_mpi_cmp_int( &P->Z, 0 ) == 0 )
|
|
|
|
return( mbedtls_ecp_copy( R, Q ) );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( Q->Z.p != NULL && mbedtls_mpi_cmp_int( &Q->Z, 0 ) == 0 )
|
|
|
|
return( mbedtls_ecp_copy( R, P ) );
|
2013-02-09 17:03:58 +01:00
|
|
|
|
|
|
|
/*
|
2013-10-23 20:19:57 +02:00
|
|
|
* Make sure Q coordinates are normalized
|
2013-02-09 17:03:58 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
if( Q->Z.p != NULL && mbedtls_mpi_cmp_int( &Q->Z, 1 ) != 0 )
|
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2013-02-09 17:03:58 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &T1 ); mbedtls_mpi_init( &T2 ); mbedtls_mpi_init( &T3 ); mbedtls_mpi_init( &T4 );
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y ); mbedtls_mpi_init( &Z );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &T1, &P->Z, &P->Z ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &T2, &T1, &P->Z ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &T1, &T1, &Q->X ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &T2, &T2, &Q->Y ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mod( grp, &T1, &T1, &P->X ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mod( grp, &T2, &T2, &P->Y ) );
|
2013-02-10 12:06:19 +01:00
|
|
|
|
2013-11-21 19:19:54 +01:00
|
|
|
/* Special cases (2) and (3) */
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_mpi_cmp_int( &T1, 0 ) == 0 )
|
2013-10-23 20:19:57 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_mpi_cmp_int( &T2, 0 ) == 0 )
|
2013-10-23 20:19:57 +02:00
|
|
|
{
|
|
|
|
ret = ecp_double_jac( grp, R, P );
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = mbedtls_ecp_set_zero( R );
|
2013-10-23 20:19:57 +02:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
}
|
2013-09-23 18:14:50 +02:00
|
|
|
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &Z, &P->Z, &T1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &T3, &T1, &T1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &T4, &T3, &T1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &T3, &T3, &P->X ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &T1, &T3 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_shift_l_mod( grp, &T1, 1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &X, &T2, &T2 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mod( grp, &X, &X, &T1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mod( grp, &X, &X, &T4 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mod( grp, &T3, &T3, &X ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &T3, &T3, &T2 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &T4, &T4, &P->Y ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mod( grp, &Y, &T3, &T4 ) );
|
2015-04-08 12:49:31 +02:00
|
|
|
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &R->X, &X ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &R->Y, &Y ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &R->Z, &Z ) );
|
2013-02-10 12:06:19 +01:00
|
|
|
|
2013-10-23 20:19:57 +02:00
|
|
|
cleanup:
|
2013-02-10 12:06:19 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &T1 ); mbedtls_mpi_free( &T2 ); mbedtls_mpi_free( &T3 ); mbedtls_mpi_free( &T4 );
|
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y ); mbedtls_mpi_free( &Z );
|
2013-02-10 12:06:19 +01:00
|
|
|
|
2013-10-23 20:19:57 +02:00
|
|
|
return( ret );
|
2021-01-22 09:43:59 +01:00
|
|
|
#endif /* !defined(MBEDTLS_ECP_NO_FALLBACK) || !defined(MBEDTLS_ECP_ADD_MIXED_ALT) */
|
2012-11-07 20:24:05 +01:00
|
|
|
}
|
2012-11-05 17:34:55 +01:00
|
|
|
|
2012-11-02 18:14:40 +01:00
|
|
|
/*
|
2013-10-23 20:19:57 +02:00
|
|
|
* Randomize jacobian coordinates:
|
|
|
|
* (X, Y, Z) -> (l^2 X, l^3 Y, l Z) for random l
|
2013-12-02 19:44:41 +01:00
|
|
|
* This is sort of the reverse operation of ecp_normalize_jac().
|
2013-11-21 10:53:59 +01:00
|
|
|
*
|
|
|
|
* This countermeasure was first suggested in [2].
|
2013-10-09 16:09:46 +02:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_randomize_jac( const mbedtls_ecp_group *grp, mbedtls_ecp_point *pt,
|
2013-10-23 20:19:57 +02:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
|
2013-10-09 16:09:46 +02:00
|
|
|
{
|
2016-08-18 13:38:46 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RANDOMIZE_JAC_ALT)
|
2017-08-23 16:23:36 +02:00
|
|
|
if( mbedtls_internal_ecp_grp_capable( grp ) )
|
|
|
|
return( mbedtls_internal_ecp_randomize_jac( grp, pt, f_rng, p_rng ) );
|
2016-10-28 17:53:11 +02:00
|
|
|
#endif /* MBEDTLS_ECP_RANDOMIZE_JAC_ALT */
|
2016-08-18 13:38:46 +02:00
|
|
|
|
2021-01-22 09:43:59 +01:00
|
|
|
#if defined(MBEDTLS_ECP_NO_FALLBACK) && defined(MBEDTLS_ECP_RANDOMIZE_JAC_ALT)
|
|
|
|
return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
|
|
|
|
#else
|
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
|
|
|
mbedtls_mpi l, ll;
|
|
|
|
int count = 0;
|
|
|
|
size_t p_size = ( grp->pbits + 7 ) / 8;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &l ); mbedtls_mpi_init( &ll );
|
2013-10-10 15:55:39 +02:00
|
|
|
|
2013-10-23 20:19:57 +02:00
|
|
|
/* Generate l such that 1 < l < p */
|
|
|
|
do
|
|
|
|
{
|
2017-01-12 13:50:50 +01:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_fill_random( &l, p_size, f_rng, p_rng ) );
|
2013-10-10 12:44:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
while( mbedtls_mpi_cmp_mpi( &l, &grp->P ) >= 0 )
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_shift_r( &l, 1 ) );
|
2013-10-09 16:09:46 +02:00
|
|
|
|
2013-10-23 20:19:57 +02:00
|
|
|
if( count++ > 10 )
|
2020-05-08 09:57:18 +02:00
|
|
|
{
|
|
|
|
ret = MBEDTLS_ERR_ECP_RANDOM_FAILED;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2013-10-23 20:19:57 +02:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
while( mbedtls_mpi_cmp_int( &l, 1 ) <= 0 );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
/* Z = l * Z */
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &pt->Z, &pt->Z, &l ) );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
/* X = l^2 * X */
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &ll, &l, &l ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &pt->X, &pt->X, &ll ) );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
|
|
|
/* Y = l^3 * Y */
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &ll, &ll, &l ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &pt->Y, &pt->Y, &ll ) );
|
2013-10-09 16:09:46 +02:00
|
|
|
|
|
|
|
cleanup:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &l ); mbedtls_mpi_free( &ll );
|
2013-10-09 16:09:46 +02:00
|
|
|
|
|
|
|
return( ret );
|
2021-01-22 09:43:59 +01:00
|
|
|
#endif /* !defined(MBEDTLS_ECP_NO_FALLBACK) || !defined(MBEDTLS_ECP_RANDOMIZE_JAC_ALT) */
|
2013-10-09 16:09:46 +02:00
|
|
|
}
|
|
|
|
|
2013-11-16 15:50:12 +01:00
|
|
|
/*
|
2013-11-20 18:39:55 +01:00
|
|
|
* Check and define parameters used by the comb method (see below for details)
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
#if MBEDTLS_ECP_WINDOW_SIZE < 2 || MBEDTLS_ECP_WINDOW_SIZE > 7
|
|
|
|
#error "MBEDTLS_ECP_WINDOW_SIZE out of bounds"
|
2013-11-20 18:39:55 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* d = ceil( n / w ) */
|
2015-04-08 12:49:31 +02:00
|
|
|
#define COMB_MAX_D ( MBEDTLS_ECP_MAX_BITS + 1 ) / 2
|
2013-11-20 18:39:55 +01:00
|
|
|
|
|
|
|
/* number of precomputed points */
|
2015-04-08 12:49:31 +02:00
|
|
|
#define COMB_MAX_PRE ( 1 << ( MBEDTLS_ECP_WINDOW_SIZE - 1 ) )
|
2013-11-20 18:39:55 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Compute the representation of m that will be used with our comb method.
|
2013-11-16 15:50:12 +01:00
|
|
|
*
|
|
|
|
* The basic comb method is described in GECC 3.44 for example. We use a
|
2013-11-20 14:47:19 +01:00
|
|
|
* modified version that provides resistance to SPA by avoiding zero
|
|
|
|
* digits in the representation as in [3]. We modify the method further by
|
|
|
|
* requiring that all K_i be odd, which has the small cost that our
|
2017-08-23 14:30:36 +02:00
|
|
|
* representation uses one more K_i, due to carries, but saves on the size of
|
|
|
|
* the precomputed table.
|
|
|
|
*
|
|
|
|
* Summary of the comb method and its modifications:
|
|
|
|
*
|
|
|
|
* - The goal is to compute m*P for some w*d-bit integer m.
|
|
|
|
*
|
|
|
|
* - The basic comb method splits m into the w-bit integers
|
|
|
|
* x[0] .. x[d-1] where x[i] consists of the bits in m whose
|
|
|
|
* index has residue i modulo d, and computes m * P as
|
|
|
|
* S[x[0]] + 2 * S[x[1]] + .. + 2^(d-1) S[x[d-1]], where
|
|
|
|
* S[i_{w-1} .. i_0] := i_{w-1} 2^{(w-1)d} P + ... + i_1 2^d P + i_0 P.
|
|
|
|
*
|
|
|
|
* - If it happens that, say, x[i+1]=0 (=> S[x[i+1]]=0), one can replace the sum by
|
|
|
|
* .. + 2^{i-1} S[x[i-1]] - 2^i S[x[i]] + 2^{i+1} S[x[i]] + 2^{i+2} S[x[i+2]] ..,
|
|
|
|
* thereby successively converting it into a form where all summands
|
|
|
|
* are nonzero, at the cost of negative summands. This is the basic idea of [3].
|
|
|
|
*
|
|
|
|
* - More generally, even if x[i+1] != 0, we can first transform the sum as
|
|
|
|
* .. - 2^i S[x[i]] + 2^{i+1} ( S[x[i]] + S[x[i+1]] ) + 2^{i+2} S[x[i+2]] ..,
|
|
|
|
* and then replace S[x[i]] + S[x[i+1]] = S[x[i] ^ x[i+1]] + 2 S[x[i] & x[i+1]].
|
|
|
|
* Performing and iterating this procedure for those x[i] that are even
|
|
|
|
* (keeping track of carry), we can transform the original sum into one of the form
|
|
|
|
* S[x'[0]] +- 2 S[x'[1]] +- .. +- 2^{d-1} S[x'[d-1]] + 2^d S[x'[d]]
|
|
|
|
* with all x'[i] odd. It is therefore only necessary to know S at odd indices,
|
|
|
|
* which is why we are only computing half of it in the first place in
|
|
|
|
* ecp_precompute_comb and accessing it with index abs(i) / 2 in ecp_select_comb.
|
2013-11-20 14:47:19 +01:00
|
|
|
*
|
2017-08-23 14:30:36 +02:00
|
|
|
* - For the sake of compactness, only the seven low-order bits of x[i]
|
|
|
|
* are used to represent its absolute value (K_i in the paper), and the msb
|
2018-10-15 15:27:49 +02:00
|
|
|
* of x[i] encodes the sign (s_i in the paper): it is set if and only if
|
2017-08-23 14:30:36 +02:00
|
|
|
* if s_i == -1;
|
2013-11-16 15:50:12 +01:00
|
|
|
*
|
|
|
|
* Calling conventions:
|
2013-11-20 14:47:19 +01:00
|
|
|
* - x is an array of size d + 1
|
2013-11-20 18:39:55 +01:00
|
|
|
* - w is the size, ie number of teeth, of the comb, and must be between
|
2015-04-08 12:49:31 +02:00
|
|
|
* 2 and 7 (in practice, between 2 and MBEDTLS_ECP_WINDOW_SIZE)
|
2013-11-20 14:47:19 +01:00
|
|
|
* - m is the MPI, expected to be odd and such that bitlength(m) <= w * d
|
|
|
|
* (the result will be incorrect if these assumptions are not satisfied)
|
2013-11-16 15:50:12 +01:00
|
|
|
*/
|
2017-03-14 10:00:21 +01:00
|
|
|
static void ecp_comb_recode_core( unsigned char x[], size_t d,
|
|
|
|
unsigned char w, const mbedtls_mpi *m )
|
2013-11-16 15:50:12 +01:00
|
|
|
{
|
|
|
|
size_t i, j;
|
2013-11-20 14:47:19 +01:00
|
|
|
unsigned char c, cc, adjust;
|
2013-11-16 15:50:12 +01:00
|
|
|
|
2013-11-20 14:47:19 +01:00
|
|
|
memset( x, 0, d+1 );
|
2013-11-16 15:50:12 +01:00
|
|
|
|
2013-11-21 09:50:00 +01:00
|
|
|
/* First get the classical comb values (except for x_d = 0) */
|
|
|
|
for( i = 0; i < d; i++ )
|
2013-11-16 15:50:12 +01:00
|
|
|
for( j = 0; j < w; j++ )
|
2015-04-08 12:49:31 +02:00
|
|
|
x[i] |= mbedtls_mpi_get_bit( m, i + d * j ) << j;
|
2013-11-16 15:50:12 +01:00
|
|
|
|
2013-11-21 09:50:00 +01:00
|
|
|
/* Now make sure x_1 .. x_d are odd */
|
|
|
|
c = 0;
|
|
|
|
for( i = 1; i <= d; i++ )
|
|
|
|
{
|
2013-11-20 14:47:19 +01:00
|
|
|
/* Add carry and update it */
|
|
|
|
cc = x[i] & c;
|
|
|
|
x[i] = x[i] ^ c;
|
|
|
|
c = cc;
|
|
|
|
|
2013-11-21 09:50:00 +01:00
|
|
|
/* Adjust if needed, avoiding branches */
|
2013-11-20 14:47:19 +01:00
|
|
|
adjust = 1 - ( x[i] & 0x01 );
|
|
|
|
c |= x[i] & ( x[i-1] * adjust );
|
|
|
|
x[i] = x[i] ^ ( x[i-1] * adjust );
|
|
|
|
x[i-1] |= adjust << 7;
|
2013-11-16 15:50:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2017-08-23 14:30:36 +02:00
|
|
|
* Precompute points for the adapted comb method
|
2013-11-16 15:50:12 +01:00
|
|
|
*
|
2017-08-23 14:30:36 +02:00
|
|
|
* Assumption: T must be able to hold 2^{w - 1} elements.
|
2013-11-16 15:50:12 +01:00
|
|
|
*
|
2017-08-23 14:30:36 +02:00
|
|
|
* Operation: If i = i_{w-1} ... i_1 is the binary representation of i,
|
|
|
|
* sets T[i] = i_{w-1} 2^{(w-1)d} P + ... + i_1 2^d P + P.
|
2013-11-20 22:57:38 +01:00
|
|
|
*
|
|
|
|
* Cost: d(w-1) D + (2^{w-1} - 1) A + 1 N(w-1) + 1 N(2^{w-1} - 1)
|
2017-08-23 14:30:36 +02:00
|
|
|
*
|
|
|
|
* Note: Even comb values (those where P would be omitted from the
|
|
|
|
* sum defining T[i] above) are not needed in our adaption
|
2018-10-15 15:27:49 +02:00
|
|
|
* the comb method. See ecp_comb_recode_core().
|
2017-08-23 14:30:36 +02:00
|
|
|
*
|
|
|
|
* This function currently works in four steps:
|
2018-10-15 15:27:49 +02:00
|
|
|
* (1) [dbl] Computation of intermediate T[i] for 2-power values of i
|
2017-08-24 11:02:04 +02:00
|
|
|
* (2) [norm_dbl] Normalization of coordinates of these T[i]
|
|
|
|
* (3) [add] Computation of all T[i]
|
|
|
|
* (4) [norm_add] Normalization of all T[i]
|
2017-08-23 14:30:36 +02:00
|
|
|
*
|
|
|
|
* Step 1 can be interrupted but not the others; together with the final
|
|
|
|
* coordinate normalization they are the largest steps done at once, depending
|
|
|
|
* on the window size. Here are operation counts for P-256:
|
|
|
|
*
|
|
|
|
* step (2) (3) (4)
|
|
|
|
* w = 5 142 165 208
|
|
|
|
* w = 4 136 77 160
|
|
|
|
* w = 3 130 33 136
|
|
|
|
* w = 2 124 11 124
|
|
|
|
*
|
|
|
|
* So if ECC operations are blocking for too long even with a low max_ops
|
|
|
|
* value, it's useful to set MBEDTLS_ECP_WINDOW_SIZE to a lower value in order
|
|
|
|
* to minimize maximum blocking time.
|
2013-11-16 15:50:12 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_precompute_comb( const mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_ecp_point T[], const mbedtls_ecp_point *P,
|
2017-04-20 09:31:00 +02:00
|
|
|
unsigned char w, size_t d,
|
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx )
|
2013-11-16 15:50:12 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2017-03-20 09:29:31 +01:00
|
|
|
unsigned char i;
|
2017-03-20 12:50:41 +01:00
|
|
|
size_t j = 0;
|
2017-08-23 16:27:29 +02:00
|
|
|
const unsigned char T_size = 1U << ( w - 1 );
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point *cur, *TT[COMB_MAX_PRE - 1];
|
2013-11-16 15:50:12 +01:00
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-20 09:31:00 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL )
|
2017-03-16 16:56:04 +01:00
|
|
|
{
|
2017-08-24 11:02:04 +02:00
|
|
|
if( rs_ctx->rsm->state == ecp_rsm_pre_dbl )
|
|
|
|
goto dbl;
|
2017-04-20 09:31:00 +02:00
|
|
|
if( rs_ctx->rsm->state == ecp_rsm_pre_norm_dbl )
|
2017-03-20 10:24:17 +01:00
|
|
|
goto norm_dbl;
|
2017-08-24 11:02:04 +02:00
|
|
|
if( rs_ctx->rsm->state == ecp_rsm_pre_add )
|
|
|
|
goto add;
|
|
|
|
if( rs_ctx->rsm->state == ecp_rsm_pre_norm_add )
|
|
|
|
goto norm_add;
|
2017-03-16 16:56:04 +01:00
|
|
|
}
|
2018-10-15 15:27:49 +02:00
|
|
|
#else
|
|
|
|
(void) rs_ctx;
|
2017-03-16 16:56:04 +01:00
|
|
|
#endif
|
|
|
|
|
2017-08-24 11:02:04 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL )
|
|
|
|
{
|
|
|
|
rs_ctx->rsm->state = ecp_rsm_pre_dbl;
|
|
|
|
|
|
|
|
/* initial state for the loop */
|
|
|
|
rs_ctx->rsm->i = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
dbl:
|
|
|
|
#endif
|
2018-10-15 15:27:49 +02:00
|
|
|
/*
|
|
|
|
* Set T[0] = P and
|
|
|
|
* T[2^{l-1}] = 2^{dl} P for l = 1 .. w-1 (this is not the final value)
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_copy( &T[0], P ) );
|
2013-11-16 15:50:12 +01:00
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-20 09:31:00 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL && rs_ctx->rsm->i != 0 )
|
|
|
|
j = rs_ctx->rsm->i;
|
2017-03-20 12:50:41 +01:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
j = 0;
|
|
|
|
|
|
|
|
for( ; j < d * ( w - 1 ); j++ )
|
2013-11-16 15:50:12 +01:00
|
|
|
{
|
2017-04-20 16:31:00 +02:00
|
|
|
MBEDTLS_ECP_BUDGET( MBEDTLS_ECP_OPS_DBL );
|
2017-03-20 12:50:41 +01:00
|
|
|
|
2017-03-20 12:21:24 +01:00
|
|
|
i = 1U << ( j / d );
|
2013-11-20 14:47:19 +01:00
|
|
|
cur = T + i;
|
2017-03-20 12:21:24 +01:00
|
|
|
|
|
|
|
if( j % d == 0 )
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_copy( cur, T + ( i >> 1 ) ) );
|
|
|
|
|
|
|
|
MBEDTLS_MPI_CHK( ecp_double_jac( grp, cur, cur ) );
|
2013-11-16 15:50:12 +01:00
|
|
|
}
|
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-08-24 11:02:04 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL )
|
|
|
|
rs_ctx->rsm->state = ecp_rsm_pre_norm_dbl;
|
|
|
|
|
2017-03-20 10:24:17 +01:00
|
|
|
norm_dbl:
|
|
|
|
#endif
|
2018-10-15 15:27:49 +02:00
|
|
|
/*
|
|
|
|
* Normalize current elements in T. As T has holes,
|
|
|
|
* use an auxiliary array of pointers to elements in T.
|
|
|
|
*/
|
2017-03-20 09:29:31 +01:00
|
|
|
j = 0;
|
2017-08-23 16:27:29 +02:00
|
|
|
for( i = 1; i < T_size; i <<= 1 )
|
2017-03-20 09:29:31 +01:00
|
|
|
TT[j++] = T + i;
|
|
|
|
|
2017-04-20 16:31:00 +02:00
|
|
|
MBEDTLS_ECP_BUDGET( MBEDTLS_ECP_OPS_INV + 6 * j - 2 );
|
2017-03-20 10:24:17 +01:00
|
|
|
|
2017-03-20 09:29:31 +01:00
|
|
|
MBEDTLS_MPI_CHK( ecp_normalize_jac_many( grp, TT, j ) );
|
2013-11-16 15:50:12 +01:00
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-08-24 11:02:04 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL )
|
|
|
|
rs_ctx->rsm->state = ecp_rsm_pre_add;
|
|
|
|
|
2017-03-20 10:24:17 +01:00
|
|
|
add:
|
|
|
|
#endif
|
2018-10-15 15:27:49 +02:00
|
|
|
/*
|
|
|
|
* Compute the remaining ones using the minimal number of additions
|
|
|
|
* Be careful to update T[2^l] only after using it!
|
|
|
|
*/
|
2017-08-23 16:27:29 +02:00
|
|
|
MBEDTLS_ECP_BUDGET( ( T_size - 1 ) * MBEDTLS_ECP_OPS_ADD );
|
2017-03-20 10:24:17 +01:00
|
|
|
|
2017-08-23 16:27:29 +02:00
|
|
|
for( i = 1; i < T_size; i <<= 1 )
|
2013-11-16 15:50:12 +01:00
|
|
|
{
|
2013-11-20 14:47:19 +01:00
|
|
|
j = i;
|
|
|
|
while( j-- )
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( ecp_add_mixed( grp, &T[i + j], &T[j], &T[i] ) );
|
2013-11-16 15:50:12 +01:00
|
|
|
}
|
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-08-24 11:02:04 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL )
|
|
|
|
rs_ctx->rsm->state = ecp_rsm_pre_norm_add;
|
|
|
|
|
2017-03-20 10:24:17 +01:00
|
|
|
norm_add:
|
|
|
|
#endif
|
2018-10-15 15:27:49 +02:00
|
|
|
/*
|
2018-10-23 10:41:11 +02:00
|
|
|
* Normalize final elements in T. Even though there are no holes now, we
|
|
|
|
* still need the auxiliary array for homogeneity with the previous
|
|
|
|
* call. Also, skip T[0] which is already normalised, being a copy of P.
|
2018-10-15 15:27:49 +02:00
|
|
|
*/
|
2017-08-23 16:27:29 +02:00
|
|
|
for( j = 0; j + 1 < T_size; j++ )
|
2017-03-20 09:29:31 +01:00
|
|
|
TT[j] = T + j + 1;
|
|
|
|
|
2017-04-20 16:31:00 +02:00
|
|
|
MBEDTLS_ECP_BUDGET( MBEDTLS_ECP_OPS_INV + 6 * j - 2 );
|
2017-03-20 10:24:17 +01:00
|
|
|
|
2017-03-20 09:29:31 +01:00
|
|
|
MBEDTLS_MPI_CHK( ecp_normalize_jac_many( grp, TT, j ) );
|
2013-11-21 10:08:50 +01:00
|
|
|
|
2013-11-16 15:50:12 +01:00
|
|
|
cleanup:
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-20 09:31:00 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL &&
|
|
|
|
ret == MBEDTLS_ERR_ECP_IN_PROGRESS )
|
2017-03-20 12:50:41 +01:00
|
|
|
{
|
2017-08-24 11:02:04 +02:00
|
|
|
if( rs_ctx->rsm->state == ecp_rsm_pre_dbl )
|
2017-04-20 09:31:00 +02:00
|
|
|
rs_ctx->rsm->i = j;
|
2017-03-20 12:50:41 +01:00
|
|
|
}
|
|
|
|
#endif
|
2016-08-18 13:38:46 +02:00
|
|
|
|
2013-11-16 15:50:12 +01:00
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-11-20 14:47:19 +01:00
|
|
|
* Select precomputed point: R = sign(i) * T[ abs(i) / 2 ]
|
2017-08-23 14:30:36 +02:00
|
|
|
*
|
|
|
|
* See ecp_comb_recode_core() for background
|
2013-11-16 15:50:12 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_select_comb( const mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
|
2017-08-23 16:27:29 +02:00
|
|
|
const mbedtls_ecp_point T[], unsigned char T_size,
|
2013-11-21 20:00:38 +01:00
|
|
|
unsigned char i )
|
2013-11-16 15:50:12 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2013-11-21 20:00:38 +01:00
|
|
|
unsigned char ii, j;
|
2013-11-16 15:50:12 +01:00
|
|
|
|
2013-11-21 20:00:38 +01:00
|
|
|
/* Ignore the "sign" bit and scale down */
|
|
|
|
ii = ( i & 0x7Fu ) >> 1;
|
2013-11-16 15:50:12 +01:00
|
|
|
|
2013-11-21 20:00:38 +01:00
|
|
|
/* Read the whole table to thwart cache-based timing attacks */
|
2017-08-23 16:27:29 +02:00
|
|
|
for( j = 0; j < T_size; j++ )
|
2013-11-21 20:00:38 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_safe_cond_assign( &R->X, &T[j].X, j == ii ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_safe_cond_assign( &R->Y, &T[j].Y, j == ii ) );
|
2013-11-21 20:00:38 +01:00
|
|
|
}
|
|
|
|
|
2013-11-21 17:47:12 +01:00
|
|
|
/* Safely invert result if i is "negative" */
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( ecp_safe_invert_jac( grp, R, i >> 7 ) );
|
2013-11-16 15:50:12 +01:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Core multiplication algorithm for the (modified) comb method.
|
|
|
|
* This part is actually common with the basic comb method (GECC 3.44)
|
2013-11-20 22:57:38 +01:00
|
|
|
*
|
|
|
|
* Cost: d A + d D + 1 R
|
2013-11-16 15:50:12 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_mul_comb_core( const mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
|
2017-08-23 16:27:29 +02:00
|
|
|
const mbedtls_ecp_point T[], unsigned char T_size,
|
2013-11-20 20:07:26 +01:00
|
|
|
const unsigned char x[], size_t d,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
2017-04-20 09:31:00 +02:00
|
|
|
void *p_rng,
|
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx )
|
2013-11-16 15:50:12 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point Txi;
|
2013-11-16 15:50:12 +01:00
|
|
|
size_t i;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point_init( &Txi );
|
2013-11-16 15:50:12 +01:00
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#if !defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-20 09:31:00 +02:00
|
|
|
(void) rs_ctx;
|
|
|
|
#endif
|
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-08-24 11:02:04 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL &&
|
|
|
|
rs_ctx->rsm->state != ecp_rsm_comb_core )
|
|
|
|
{
|
|
|
|
rs_ctx->rsm->i = 0;
|
|
|
|
rs_ctx->rsm->state = ecp_rsm_comb_core;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* new 'if' instead of nested for the sake of the 'else' branch */
|
2017-04-20 09:31:00 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL && rs_ctx->rsm->i != 0 )
|
2017-03-15 13:06:28 +01:00
|
|
|
{
|
2017-04-20 09:31:00 +02:00
|
|
|
/* restore current index (R already pointing to rs_ctx->rsm->R) */
|
|
|
|
i = rs_ctx->rsm->i;
|
2017-03-15 13:06:28 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
/* Start with a non-zero point and randomize its coordinates */
|
|
|
|
i = d;
|
2017-08-23 16:27:29 +02:00
|
|
|
MBEDTLS_MPI_CHK( ecp_select_comb( grp, R, T, T_size, x[i] ) );
|
2017-03-15 13:06:28 +01:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &R->Z, 1 ) );
|
2020-06-04 10:43:29 +02:00
|
|
|
#if defined(MBEDTLS_ECP_NO_INTERNAL_RNG)
|
2017-03-15 13:06:28 +01:00
|
|
|
if( f_rng != 0 )
|
2020-06-04 10:43:29 +02:00
|
|
|
#endif
|
2017-03-15 13:06:28 +01:00
|
|
|
MBEDTLS_MPI_CHK( ecp_randomize_jac( grp, R, f_rng, p_rng ) );
|
|
|
|
}
|
2013-11-16 15:50:12 +01:00
|
|
|
|
2018-10-16 10:45:24 +02:00
|
|
|
while( i != 0 )
|
2013-11-16 15:50:12 +01:00
|
|
|
{
|
2017-04-20 16:31:00 +02:00
|
|
|
MBEDTLS_ECP_BUDGET( MBEDTLS_ECP_OPS_DBL + MBEDTLS_ECP_OPS_ADD );
|
2018-10-16 10:45:24 +02:00
|
|
|
--i;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( ecp_double_jac( grp, R, R ) );
|
2017-08-23 16:27:29 +02:00
|
|
|
MBEDTLS_MPI_CHK( ecp_select_comb( grp, &Txi, T, T_size, x[i] ) );
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( ecp_add_mixed( grp, R, R, &Txi ) );
|
2013-11-16 15:50:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cleanup:
|
2016-08-18 13:38:46 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point_free( &Txi );
|
2013-11-16 15:50:12 +01:00
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-08-24 11:02:04 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL &&
|
|
|
|
ret == MBEDTLS_ERR_ECP_IN_PROGRESS )
|
2017-03-15 13:06:28 +01:00
|
|
|
{
|
2018-10-16 10:45:24 +02:00
|
|
|
rs_ctx->rsm->i = i;
|
2017-08-24 11:02:04 +02:00
|
|
|
/* no need to save R, already pointing to rs_ctx->rsm->R */
|
2017-03-15 13:06:28 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-11-16 15:50:12 +01:00
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2017-03-09 12:46:45 +01:00
|
|
|
/*
|
2017-03-14 10:00:21 +01:00
|
|
|
* Recode the scalar to get constant-time comb multiplication
|
|
|
|
*
|
|
|
|
* As the actual scalar recoding needs an odd scalar as a starting point,
|
|
|
|
* this wrapper ensures that by replacing m by N - m if necessary, and
|
|
|
|
* informs the caller that the result of multiplication will be negated.
|
2017-08-23 14:30:36 +02:00
|
|
|
*
|
2017-08-24 14:21:05 +02:00
|
|
|
* This works because we only support large prime order for Short Weierstrass
|
|
|
|
* curves, so N is always odd hence either m or N - m is.
|
|
|
|
*
|
2017-08-23 14:30:36 +02:00
|
|
|
* See ecp_comb_recode_core() for background.
|
2017-03-09 12:46:45 +01:00
|
|
|
*/
|
2017-03-14 10:00:21 +01:00
|
|
|
static int ecp_comb_recode_scalar( const mbedtls_ecp_group *grp,
|
|
|
|
const mbedtls_mpi *m,
|
|
|
|
unsigned char k[COMB_MAX_D + 1],
|
|
|
|
size_t d,
|
|
|
|
unsigned char w,
|
|
|
|
unsigned char *parity_trick )
|
2017-03-09 12:46:45 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2017-03-14 10:00:21 +01:00
|
|
|
mbedtls_mpi M, mm;
|
2017-03-09 12:46:45 +01:00
|
|
|
|
2017-03-14 10:00:21 +01:00
|
|
|
mbedtls_mpi_init( &M );
|
2017-03-09 12:46:45 +01:00
|
|
|
mbedtls_mpi_init( &mm );
|
|
|
|
|
2017-08-24 14:21:05 +02:00
|
|
|
/* N is always odd (see above), just make extra sure */
|
2017-03-09 12:46:45 +01:00
|
|
|
if( mbedtls_mpi_get_bit( &grp->N, 0 ) != 1 )
|
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
|
|
|
|
2017-03-14 10:00:21 +01:00
|
|
|
/* do we need the parity trick? */
|
|
|
|
*parity_trick = ( mbedtls_mpi_get_bit( m, 0 ) == 0 );
|
|
|
|
|
|
|
|
/* execute parity fix in constant time */
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &M, m ) );
|
2017-03-09 12:46:45 +01:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mpi( &mm, &grp->N, m ) );
|
2017-03-14 10:00:21 +01:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_safe_cond_assign( &M, &mm, *parity_trick ) );
|
|
|
|
|
|
|
|
/* actual scalar recoding */
|
|
|
|
ecp_comb_recode_core( k, d, w, &M );
|
2017-03-09 12:46:45 +01:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
mbedtls_mpi_free( &mm );
|
2017-03-14 10:00:21 +01:00
|
|
|
mbedtls_mpi_free( &M );
|
2017-03-09 12:46:45 +01:00
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2017-03-13 12:26:21 +01:00
|
|
|
/*
|
|
|
|
* Perform comb multiplication (for short Weierstrass curves)
|
|
|
|
* once the auxiliary table has been pre-computed.
|
2017-03-14 10:00:21 +01:00
|
|
|
*
|
|
|
|
* Scalar recoding may use a parity trick that makes us compute -m * P,
|
|
|
|
* if that is the case we'll need to recover m * P at the end.
|
2017-03-13 12:26:21 +01:00
|
|
|
*/
|
|
|
|
static int ecp_mul_comb_after_precomp( const mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_ecp_point *R,
|
|
|
|
const mbedtls_mpi *m,
|
|
|
|
const mbedtls_ecp_point *T,
|
2017-08-23 16:27:29 +02:00
|
|
|
unsigned char T_size,
|
2017-03-13 12:26:21 +01:00
|
|
|
unsigned char w,
|
|
|
|
size_t d,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
2017-04-20 09:31:00 +02:00
|
|
|
void *p_rng,
|
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx )
|
2017-03-13 12:26:21 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2017-03-14 10:00:21 +01:00
|
|
|
unsigned char parity_trick;
|
2017-03-13 12:26:21 +01:00
|
|
|
unsigned char k[COMB_MAX_D + 1];
|
2017-03-14 12:11:21 +01:00
|
|
|
mbedtls_ecp_point *RR = R;
|
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-20 09:31:00 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL )
|
2017-08-24 11:02:04 +02:00
|
|
|
{
|
2017-04-20 09:31:00 +02:00
|
|
|
RR = &rs_ctx->rsm->R;
|
2017-03-13 12:26:21 +01:00
|
|
|
|
2017-08-24 11:02:04 +02:00
|
|
|
if( rs_ctx->rsm->state == ecp_rsm_final_norm )
|
|
|
|
goto final_norm;
|
|
|
|
}
|
2017-03-14 13:13:13 +01:00
|
|
|
#endif
|
2017-08-24 11:02:04 +02:00
|
|
|
|
|
|
|
MBEDTLS_MPI_CHK( ecp_comb_recode_scalar( grp, m, k, d, w,
|
|
|
|
&parity_trick ) );
|
|
|
|
MBEDTLS_MPI_CHK( ecp_mul_comb_core( grp, RR, T, T_size, k, d,
|
|
|
|
f_rng, p_rng, rs_ctx ) );
|
|
|
|
MBEDTLS_MPI_CHK( ecp_safe_invert_jac( grp, RR, parity_trick ) );
|
2017-03-13 12:26:21 +01:00
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-08-24 11:02:04 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL )
|
|
|
|
rs_ctx->rsm->state = ecp_rsm_final_norm;
|
2017-03-14 10:00:21 +01:00
|
|
|
|
2017-08-24 11:02:04 +02:00
|
|
|
final_norm:
|
2020-06-08 09:53:20 +02:00
|
|
|
MBEDTLS_ECP_BUDGET( MBEDTLS_ECP_OPS_INV );
|
2017-08-24 11:02:04 +02:00
|
|
|
#endif
|
2020-03-25 12:41:29 +01:00
|
|
|
/*
|
|
|
|
* Knowledge of the jacobian coordinates may leak the last few bits of the
|
|
|
|
* scalar [1], and since our MPI implementation isn't constant-flow,
|
|
|
|
* inversion (used for coordinate normalization) may leak the full value
|
|
|
|
* of its input via side-channels [2].
|
|
|
|
*
|
|
|
|
* [1] https://eprint.iacr.org/2003/191
|
|
|
|
* [2] https://eprint.iacr.org/2020/055
|
|
|
|
*
|
|
|
|
* Avoid the leak by randomizing coordinates before we normalize them.
|
|
|
|
*/
|
2020-06-04 10:43:29 +02:00
|
|
|
#if defined(MBEDTLS_ECP_NO_INTERNAL_RNG)
|
2020-03-25 12:41:29 +01:00
|
|
|
if( f_rng != 0 )
|
2020-06-04 10:43:29 +02:00
|
|
|
#endif
|
2020-03-25 12:41:29 +01:00
|
|
|
MBEDTLS_MPI_CHK( ecp_randomize_jac( grp, RR, f_rng, p_rng ) );
|
|
|
|
|
2017-03-14 12:11:21 +01:00
|
|
|
MBEDTLS_MPI_CHK( ecp_normalize_jac( grp, RR ) );
|
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-08-23 17:33:27 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL )
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_copy( R, RR ) );
|
2017-03-14 12:11:21 +01:00
|
|
|
#endif
|
2017-03-13 12:26:21 +01:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2017-03-09 13:23:50 +01:00
|
|
|
/*
|
|
|
|
* Pick window size based on curve size and whether we optimize for base point
|
|
|
|
*/
|
|
|
|
static unsigned char ecp_pick_window_size( const mbedtls_ecp_group *grp,
|
|
|
|
unsigned char p_eq_g )
|
|
|
|
{
|
|
|
|
unsigned char w;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Minimize the number of multiplications, that is minimize
|
|
|
|
* 10 * d * w + 18 * 2^(w-1) + 11 * d + 7 * w, with d = ceil( nbits / w )
|
|
|
|
* (see costs of the various parts, with 1S = 1M)
|
|
|
|
*/
|
|
|
|
w = grp->nbits >= 384 ? 5 : 4;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If P == G, pre-compute a bit more, since this may be re-used later.
|
|
|
|
* Just adding one avoids upping the cost of the first mul too much,
|
|
|
|
* and the memory cost too.
|
|
|
|
*/
|
|
|
|
if( p_eq_g )
|
|
|
|
w++;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure w is within bounds.
|
|
|
|
* (The last test is useful only for very small curves in the test suite.)
|
|
|
|
*/
|
2019-07-03 14:31:09 +02:00
|
|
|
#if( MBEDTLS_ECP_WINDOW_SIZE < 6 )
|
2017-03-09 13:23:50 +01:00
|
|
|
if( w > MBEDTLS_ECP_WINDOW_SIZE )
|
|
|
|
w = MBEDTLS_ECP_WINDOW_SIZE;
|
2019-07-03 14:31:09 +02:00
|
|
|
#endif
|
2017-03-09 13:23:50 +01:00
|
|
|
if( w >= grp->nbits )
|
|
|
|
w = 2;
|
|
|
|
|
|
|
|
return( w );
|
|
|
|
}
|
|
|
|
|
2013-11-16 15:50:12 +01:00
|
|
|
/*
|
2017-03-16 17:21:38 +01:00
|
|
|
* Multiplication using the comb method - for curves in short Weierstrass form
|
|
|
|
*
|
|
|
|
* This function is mainly responsible for administrative work:
|
|
|
|
* - managing the restart context if enabled
|
2017-08-24 13:41:19 +02:00
|
|
|
* - managing the table of precomputed points (passed between the below two
|
2017-03-16 17:21:38 +01:00
|
|
|
* functions): allocation, computation, ownership tranfer, freeing.
|
|
|
|
*
|
|
|
|
* It delegates the actual arithmetic work to:
|
|
|
|
* ecp_precompute_comb() and ecp_mul_comb_with_precomp()
|
|
|
|
*
|
|
|
|
* See comments on ecp_comb_recode_core() regarding the computation strategy.
|
2013-11-16 15:50:12 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_mul_comb( mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
|
|
|
|
const mbedtls_mpi *m, const mbedtls_ecp_point *P,
|
2013-12-04 11:49:20 +01:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
2017-04-20 09:31:00 +02:00
|
|
|
void *p_rng,
|
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx )
|
2013-11-16 15:50:12 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2017-08-24 13:41:19 +02:00
|
|
|
unsigned char w, p_eq_g, i;
|
2013-11-21 20:00:38 +01:00
|
|
|
size_t d;
|
2020-06-03 12:11:56 +02:00
|
|
|
unsigned char T_size = 0, T_ok = 0;
|
|
|
|
mbedtls_ecp_point *T = NULL;
|
|
|
|
#if !defined(MBEDTLS_ECP_NO_INTERNAL_RNG)
|
|
|
|
ecp_drbg_context drbg_ctx;
|
|
|
|
|
|
|
|
ecp_drbg_init( &drbg_ctx );
|
|
|
|
#endif
|
2013-11-16 15:50:12 +01:00
|
|
|
|
2017-08-23 18:18:22 +02:00
|
|
|
ECP_RS_ENTER( rsm );
|
2017-03-08 11:41:47 +01:00
|
|
|
|
2020-06-03 12:11:56 +02:00
|
|
|
#if !defined(MBEDTLS_ECP_NO_INTERNAL_RNG)
|
|
|
|
if( f_rng == NULL )
|
|
|
|
{
|
2020-06-04 09:43:14 +02:00
|
|
|
/* Adjust pointers */
|
2020-06-03 12:11:56 +02:00
|
|
|
f_rng = &ecp_drbg_random;
|
2020-06-04 09:43:14 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL )
|
|
|
|
p_rng = &rs_ctx->rsm->drbg_ctx;
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
p_rng = &drbg_ctx;
|
|
|
|
|
|
|
|
/* Initialize internal DRBG if necessary */
|
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
if( rs_ctx == NULL || rs_ctx->rsm == NULL ||
|
|
|
|
rs_ctx->rsm->drbg_seeded == 0 )
|
|
|
|
#endif
|
|
|
|
{
|
2020-06-18 12:27:56 +02:00
|
|
|
const size_t m_len = ( grp->nbits + 7 ) / 8;
|
|
|
|
MBEDTLS_MPI_CHK( ecp_drbg_seed( p_rng, m, m_len ) );
|
2020-06-04 09:43:14 +02:00
|
|
|
}
|
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL )
|
|
|
|
rs_ctx->rsm->drbg_seeded = 1;
|
|
|
|
#endif
|
2020-06-03 12:11:56 +02:00
|
|
|
}
|
|
|
|
#endif /* !MBEDTLS_ECP_NO_INTERNAL_RNG */
|
|
|
|
|
2017-03-09 13:02:35 +01:00
|
|
|
/* Is P the base point ? */
|
|
|
|
#if MBEDTLS_ECP_FIXED_POINT_OPTIM == 1
|
|
|
|
p_eq_g = ( mbedtls_mpi_cmp_mpi( &P->Y, &grp->G.Y ) == 0 &&
|
|
|
|
mbedtls_mpi_cmp_mpi( &P->X, &grp->G.X ) == 0 );
|
2017-08-28 13:14:27 +02:00
|
|
|
#else
|
|
|
|
p_eq_g = 0;
|
2017-03-09 13:02:35 +01:00
|
|
|
#endif
|
|
|
|
|
2017-03-13 12:26:21 +01:00
|
|
|
/* Pick window size and deduce related sizes */
|
2017-03-09 13:23:50 +01:00
|
|
|
w = ecp_pick_window_size( grp, p_eq_g );
|
2017-08-23 16:27:29 +02:00
|
|
|
T_size = 1U << ( w - 1 );
|
2013-11-16 15:50:12 +01:00
|
|
|
d = ( grp->nbits + w - 1 ) / w;
|
|
|
|
|
2017-03-16 16:56:04 +01:00
|
|
|
/* Pre-computed table: do we have it already for the base point? */
|
|
|
|
if( p_eq_g && grp->T != NULL )
|
|
|
|
{
|
2017-08-23 14:30:36 +02:00
|
|
|
/* second pointer to the same table, will be deleted on exit */
|
2017-03-16 16:56:04 +01:00
|
|
|
T = grp->T;
|
|
|
|
T_ok = 1;
|
|
|
|
}
|
2017-08-24 13:41:19 +02:00
|
|
|
else
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-03-16 16:56:04 +01:00
|
|
|
/* Pre-computed table: do we have one in progress? complete? */
|
2017-08-24 13:41:19 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL && rs_ctx->rsm->T != NULL )
|
2017-03-16 14:53:26 +01:00
|
|
|
{
|
2017-03-22 08:24:42 +01:00
|
|
|
/* transfer ownership of T from rsm to local function */
|
2017-04-20 09:31:00 +02:00
|
|
|
T = rs_ctx->rsm->T;
|
|
|
|
rs_ctx->rsm->T = NULL;
|
|
|
|
rs_ctx->rsm->T_size = 0;
|
2017-03-16 16:56:04 +01:00
|
|
|
|
2018-10-16 11:48:09 +02:00
|
|
|
/* This effectively jumps to the call to mul_comb_after_precomp() */
|
2017-08-24 13:41:19 +02:00
|
|
|
T_ok = rs_ctx->rsm->state >= ecp_rsm_comb_core;
|
2017-03-16 14:53:26 +01:00
|
|
|
}
|
2017-08-24 13:41:19 +02:00
|
|
|
else
|
2017-03-16 14:53:26 +01:00
|
|
|
#endif
|
2017-03-16 16:56:04 +01:00
|
|
|
/* Allocate table if we didn't have any */
|
2013-11-16 15:50:12 +01:00
|
|
|
{
|
2017-08-23 16:27:29 +02:00
|
|
|
T = mbedtls_calloc( T_size, sizeof( mbedtls_ecp_point ) );
|
2013-11-16 15:50:12 +01:00
|
|
|
if( T == NULL )
|
|
|
|
{
|
2015-05-28 09:33:39 +02:00
|
|
|
ret = MBEDTLS_ERR_ECP_ALLOC_FAILED;
|
2013-11-16 15:50:12 +01:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2017-08-23 16:55:59 +02:00
|
|
|
|
|
|
|
for( i = 0; i < T_size; i++ )
|
|
|
|
mbedtls_ecp_point_init( &T[i] );
|
2017-08-24 13:41:19 +02:00
|
|
|
|
|
|
|
T_ok = 0;
|
2017-03-16 16:56:04 +01:00
|
|
|
}
|
2013-11-16 15:50:12 +01:00
|
|
|
|
2017-03-16 16:56:04 +01:00
|
|
|
/* Compute table (or finish computing it) if not done already */
|
|
|
|
if( !T_ok )
|
|
|
|
{
|
2017-04-20 09:31:00 +02:00
|
|
|
MBEDTLS_MPI_CHK( ecp_precompute_comb( grp, T, P, w, d, rs_ctx ) );
|
2013-11-16 15:50:12 +01:00
|
|
|
|
|
|
|
if( p_eq_g )
|
|
|
|
{
|
2017-08-23 14:30:36 +02:00
|
|
|
/* almost transfer ownership of T to the group, but keep a copy of
|
2018-10-15 15:27:49 +02:00
|
|
|
* the pointer to use for calling the next function more easily */
|
2013-11-16 15:50:12 +01:00
|
|
|
grp->T = T;
|
2017-08-23 16:27:29 +02:00
|
|
|
grp->T_size = T_size;
|
2013-11-16 15:50:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-13 12:26:21 +01:00
|
|
|
/* Actual comb multiplication using precomputed points */
|
|
|
|
MBEDTLS_MPI_CHK( ecp_mul_comb_after_precomp( grp, R, m,
|
2017-08-23 16:27:29 +02:00
|
|
|
T, T_size, w, d,
|
2017-04-20 09:31:00 +02:00
|
|
|
f_rng, p_rng, rs_ctx ) );
|
2013-11-16 15:50:12 +01:00
|
|
|
|
2012-11-19 21:23:27 +01:00
|
|
|
cleanup:
|
|
|
|
|
2020-06-03 12:11:56 +02:00
|
|
|
#if !defined(MBEDTLS_ECP_NO_INTERNAL_RNG)
|
|
|
|
ecp_drbg_free( &drbg_ctx );
|
|
|
|
#endif
|
|
|
|
|
2017-03-16 17:21:38 +01:00
|
|
|
/* does T belong to the group? */
|
|
|
|
if( T == grp->T )
|
|
|
|
T = NULL;
|
|
|
|
|
|
|
|
/* does T belong to the restart context? */
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-20 09:31:00 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->rsm != NULL && ret == MBEDTLS_ERR_ECP_IN_PROGRESS && T != NULL )
|
2017-03-16 14:53:26 +01:00
|
|
|
{
|
2017-03-22 08:24:42 +01:00
|
|
|
/* transfer ownership of T from local function to rsm */
|
2017-08-23 16:27:29 +02:00
|
|
|
rs_ctx->rsm->T_size = T_size;
|
2017-04-20 09:31:00 +02:00
|
|
|
rs_ctx->rsm->T = T;
|
2017-03-16 14:53:26 +01:00
|
|
|
T = NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-03-16 17:21:38 +01:00
|
|
|
/* did T belong to us? then let's destroy it! */
|
|
|
|
if( T != NULL )
|
2013-10-23 20:19:57 +02:00
|
|
|
{
|
2017-08-23 16:27:29 +02:00
|
|
|
for( i = 0; i < T_size; i++ )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point_free( &T[i] );
|
|
|
|
mbedtls_free( T );
|
2013-10-23 20:19:57 +02:00
|
|
|
}
|
2012-11-19 21:23:27 +01:00
|
|
|
|
2017-03-14 13:13:13 +01:00
|
|
|
/* don't free R while in progress in case R == P */
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-03-14 13:13:13 +01:00
|
|
|
if( ret != MBEDTLS_ERR_ECP_IN_PROGRESS )
|
|
|
|
#endif
|
2017-03-16 17:21:38 +01:00
|
|
|
/* prevent caller from using invalid value */
|
2013-11-21 19:19:54 +01:00
|
|
|
if( ret != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point_free( R );
|
2012-11-02 18:14:40 +01:00
|
|
|
|
2017-08-23 18:18:22 +02:00
|
|
|
ECP_RS_LEAVE( rsm );
|
2017-03-14 10:58:00 +01:00
|
|
|
|
2013-12-03 12:02:28 +01:00
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2018-09-14 17:44:21 +02:00
|
|
|
#endif /* MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED */
|
2013-12-04 23:15:46 +01:00
|
|
|
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
|
2013-12-04 23:15:46 +01:00
|
|
|
/*
|
|
|
|
* For Montgomery curves, we do all the internal arithmetic in projective
|
|
|
|
* coordinates. Import/export of points uses only the x coordinates, which is
|
|
|
|
* internaly represented as X / Z.
|
|
|
|
*
|
|
|
|
* For scalar multiplication, we'll use a Montgomery ladder.
|
|
|
|
*/
|
|
|
|
|
2013-12-03 12:02:28 +01:00
|
|
|
/*
|
|
|
|
* Normalize Montgomery x/z coordinates: X = X/Z, Z = 1
|
|
|
|
* Cost: 1M + 1I
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_normalize_mxz( const mbedtls_ecp_group *grp, mbedtls_ecp_point *P )
|
2013-12-03 12:02:28 +01:00
|
|
|
{
|
2016-08-18 13:38:46 +02:00
|
|
|
#if defined(MBEDTLS_ECP_NORMALIZE_MXZ_ALT)
|
2017-08-23 16:23:36 +02:00
|
|
|
if( mbedtls_internal_ecp_grp_capable( grp ) )
|
|
|
|
return( mbedtls_internal_ecp_normalize_mxz( grp, P ) );
|
2016-10-28 17:53:11 +02:00
|
|
|
#endif /* MBEDTLS_ECP_NORMALIZE_MXZ_ALT */
|
2016-08-18 13:38:46 +02:00
|
|
|
|
2021-01-22 09:43:59 +01:00
|
|
|
#if defined(MBEDTLS_ECP_NO_FALLBACK) && defined(MBEDTLS_ECP_NORMALIZE_MXZ_ALT)
|
|
|
|
return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
|
|
|
|
#else
|
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_inv_mod( &P->Z, &P->Z, &grp->P ) );
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &P->X, &P->X, &P->Z ) );
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &P->Z, 1 ) );
|
2013-12-03 12:02:28 +01:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
2021-01-22 09:43:59 +01:00
|
|
|
#endif /* !defined(MBEDTLS_ECP_NO_FALLBACK) || !defined(MBEDTLS_ECP_NORMALIZE_MXZ_ALT) */
|
2013-12-03 12:02:28 +01:00
|
|
|
}
|
|
|
|
|
2013-12-03 13:28:21 +01:00
|
|
|
/*
|
|
|
|
* Randomize projective x/z coordinates:
|
|
|
|
* (X, Z) -> (l X, l Z) for random l
|
|
|
|
* This is sort of the reverse operation of ecp_normalize_mxz().
|
|
|
|
*
|
|
|
|
* This countermeasure was first suggested in [2].
|
|
|
|
* Cost: 2M
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_randomize_mxz( const mbedtls_ecp_group *grp, mbedtls_ecp_point *P,
|
2013-12-03 13:28:21 +01:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
|
|
|
|
{
|
2016-08-18 13:38:46 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RANDOMIZE_MXZ_ALT)
|
2017-08-23 16:23:36 +02:00
|
|
|
if( mbedtls_internal_ecp_grp_capable( grp ) )
|
|
|
|
return( mbedtls_internal_ecp_randomize_mxz( grp, P, f_rng, p_rng );
|
2016-10-28 17:53:11 +02:00
|
|
|
#endif /* MBEDTLS_ECP_RANDOMIZE_MXZ_ALT */
|
2016-08-18 13:38:46 +02:00
|
|
|
|
2021-01-22 09:43:59 +01:00
|
|
|
#if defined(MBEDTLS_ECP_NO_FALLBACK) && defined(MBEDTLS_ECP_RANDOMIZE_MXZ_ALT)
|
|
|
|
return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
|
|
|
|
#else
|
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
|
|
|
mbedtls_mpi l;
|
|
|
|
int count = 0;
|
|
|
|
size_t p_size = ( grp->pbits + 7 ) / 8;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &l );
|
2013-12-03 13:28:21 +01:00
|
|
|
|
|
|
|
/* Generate l such that 1 < l < p */
|
|
|
|
do
|
|
|
|
{
|
2017-01-12 13:50:50 +01:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_fill_random( &l, p_size, f_rng, p_rng ) );
|
2013-12-03 13:28:21 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
while( mbedtls_mpi_cmp_mpi( &l, &grp->P ) >= 0 )
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_shift_r( &l, 1 ) );
|
2013-12-03 13:28:21 +01:00
|
|
|
|
|
|
|
if( count++ > 10 )
|
2020-05-08 09:57:18 +02:00
|
|
|
{
|
|
|
|
ret = MBEDTLS_ERR_ECP_RANDOM_FAILED;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2013-12-03 13:28:21 +01:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
while( mbedtls_mpi_cmp_int( &l, 1 ) <= 0 );
|
2013-12-03 13:28:21 +01:00
|
|
|
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &P->X, &P->X, &l ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &P->Z, &P->Z, &l ) );
|
2013-12-03 13:28:21 +01:00
|
|
|
|
|
|
|
cleanup:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &l );
|
2013-12-03 13:28:21 +01:00
|
|
|
|
|
|
|
return( ret );
|
2021-01-22 09:43:59 +01:00
|
|
|
#endif /* !defined(MBEDTLS_ECP_NO_FALLBACK) || !defined(MBEDTLS_ECP_RANDOMIZE_MXZ_ALT) */
|
2013-12-03 13:28:21 +01:00
|
|
|
}
|
|
|
|
|
2013-12-03 12:02:28 +01:00
|
|
|
/*
|
|
|
|
* Double-and-add: R = 2P, S = P + Q, with d = X(P - Q),
|
|
|
|
* for Montgomery curves in x/z coordinates.
|
|
|
|
*
|
|
|
|
* http://www.hyperelliptic.org/EFD/g1p/auto-code/montgom/xz/ladder/mladd-1987-m.op3
|
|
|
|
* with
|
|
|
|
* d = X1
|
|
|
|
* P = (X2, Z2)
|
|
|
|
* Q = (X3, Z3)
|
|
|
|
* R = (X4, Z4)
|
|
|
|
* S = (X5, Z5)
|
|
|
|
* and eliminating temporary variables tO, ..., t4.
|
|
|
|
*
|
|
|
|
* Cost: 5M + 4S
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_double_add_mxz( const mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_ecp_point *R, mbedtls_ecp_point *S,
|
|
|
|
const mbedtls_ecp_point *P, const mbedtls_ecp_point *Q,
|
|
|
|
const mbedtls_mpi *d )
|
2013-12-03 12:02:28 +01:00
|
|
|
{
|
2016-08-18 13:38:46 +02:00
|
|
|
#if defined(MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT)
|
2017-08-23 16:23:36 +02:00
|
|
|
if( mbedtls_internal_ecp_grp_capable( grp ) )
|
|
|
|
return( mbedtls_internal_ecp_double_add_mxz( grp, R, S, P, Q, d ) );
|
2016-10-28 17:53:11 +02:00
|
|
|
#endif /* MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT */
|
2016-08-18 13:38:46 +02:00
|
|
|
|
2021-01-22 09:43:59 +01:00
|
|
|
#if defined(MBEDTLS_ECP_NO_FALLBACK) && defined(MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT)
|
|
|
|
return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
|
|
|
|
#else
|
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
|
|
|
mbedtls_mpi A, AA, B, BB, E, C, D, DA, CB;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &A ); mbedtls_mpi_init( &AA ); mbedtls_mpi_init( &B );
|
|
|
|
mbedtls_mpi_init( &BB ); mbedtls_mpi_init( &E ); mbedtls_mpi_init( &C );
|
|
|
|
mbedtls_mpi_init( &D ); mbedtls_mpi_init( &DA ); mbedtls_mpi_init( &CB );
|
|
|
|
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_add_mod( grp, &A, &P->X, &P->Z ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &AA, &A, &A ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mod( grp, &B, &P->X, &P->Z ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &BB, &B, &B ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mod( grp, &E, &AA, &BB ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_add_mod( grp, &C, &Q->X, &Q->Z ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mod( grp, &D, &Q->X, &Q->Z ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &DA, &D, &A ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &CB, &C, &B ) );
|
2020-04-20 21:36:48 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_add_mod( grp, &S->X, &DA, &CB ) );
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &S->X, &S->X, &S->X ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mod( grp, &S->Z, &DA, &CB ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &S->Z, &S->Z, &S->Z ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &S->Z, d, &S->Z ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &R->X, &AA, &BB ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &R->Z, &grp->A, &E ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_add_mod( grp, &R->Z, &BB, &R->Z ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &R->Z, &E, &R->Z ) );
|
2013-12-03 12:02:28 +01:00
|
|
|
|
|
|
|
cleanup:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &A ); mbedtls_mpi_free( &AA ); mbedtls_mpi_free( &B );
|
|
|
|
mbedtls_mpi_free( &BB ); mbedtls_mpi_free( &E ); mbedtls_mpi_free( &C );
|
|
|
|
mbedtls_mpi_free( &D ); mbedtls_mpi_free( &DA ); mbedtls_mpi_free( &CB );
|
2013-12-03 12:02:28 +01:00
|
|
|
|
|
|
|
return( ret );
|
2021-01-22 09:43:59 +01:00
|
|
|
#endif /* !defined(MBEDTLS_ECP_NO_FALLBACK) || !defined(MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT) */
|
2013-12-03 12:02:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-12-04 11:49:20 +01:00
|
|
|
* Multiplication with Montgomery ladder in x/z coordinates,
|
|
|
|
* for curves in Montgomery form
|
2013-12-03 12:02:28 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_mul_mxz( mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
|
|
|
|
const mbedtls_mpi *m, const mbedtls_ecp_point *P,
|
2013-12-04 11:49:20 +01:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng )
|
2013-12-03 12:02:28 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2013-12-03 12:02:28 +01:00
|
|
|
size_t i;
|
2013-12-04 21:54:36 +01:00
|
|
|
unsigned char b;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point RP;
|
|
|
|
mbedtls_mpi PX;
|
2020-06-03 12:11:56 +02:00
|
|
|
#if !defined(MBEDTLS_ECP_NO_INTERNAL_RNG)
|
|
|
|
ecp_drbg_context drbg_ctx;
|
2013-12-03 12:02:28 +01:00
|
|
|
|
2020-06-03 12:11:56 +02:00
|
|
|
ecp_drbg_init( &drbg_ctx );
|
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point_init( &RP ); mbedtls_mpi_init( &PX );
|
2013-12-03 12:02:28 +01:00
|
|
|
|
2020-06-03 12:11:56 +02:00
|
|
|
#if !defined(MBEDTLS_ECP_NO_INTERNAL_RNG)
|
|
|
|
if( f_rng == NULL )
|
|
|
|
{
|
2020-06-18 12:27:56 +02:00
|
|
|
const size_t m_len = ( grp->nbits + 7 ) / 8;
|
|
|
|
MBEDTLS_MPI_CHK( ecp_drbg_seed( &drbg_ctx, m, m_len ) );
|
2020-06-03 12:11:56 +02:00
|
|
|
f_rng = &ecp_drbg_random;
|
|
|
|
p_rng = &drbg_ctx;
|
|
|
|
}
|
|
|
|
#endif /* !MBEDTLS_ECP_NO_INTERNAL_RNG */
|
|
|
|
|
2013-12-03 13:28:21 +01:00
|
|
|
/* Save PX and read from P before writing to R, in case P == R */
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &PX, &P->X ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_copy( &RP, P ) );
|
2013-12-04 18:39:17 +01:00
|
|
|
|
|
|
|
/* Set R to zero in modified x/z coordinates */
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &R->X, 1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &R->Z, 0 ) );
|
|
|
|
mbedtls_mpi_free( &R->Y );
|
2013-12-03 12:02:28 +01:00
|
|
|
|
2013-12-05 10:48:42 +01:00
|
|
|
/* RP.X might be sligtly larger than P, so reduce it */
|
|
|
|
MOD_ADD( RP.X );
|
|
|
|
|
2013-12-03 13:28:21 +01:00
|
|
|
/* Randomize coordinates of the starting point */
|
2020-06-04 10:43:29 +02:00
|
|
|
#if defined(MBEDTLS_ECP_NO_INTERNAL_RNG)
|
2013-12-04 18:39:17 +01:00
|
|
|
if( f_rng != NULL )
|
2020-06-04 10:43:29 +02:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( ecp_randomize_mxz( grp, &RP, f_rng, p_rng ) );
|
2013-12-03 12:02:28 +01:00
|
|
|
|
2013-12-04 21:54:36 +01:00
|
|
|
/* Loop invariant: R = result so far, RP = R + P */
|
2015-06-18 16:47:17 +02:00
|
|
|
i = mbedtls_mpi_bitlen( m ); /* one past the (zero-based) most significant bit */
|
2013-12-03 12:02:28 +01:00
|
|
|
while( i-- > 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
b = mbedtls_mpi_get_bit( m, i );
|
2013-12-04 21:54:36 +01:00
|
|
|
/*
|
|
|
|
* if (b) R = 2R + P else R = 2R,
|
|
|
|
* which is:
|
|
|
|
* if (b) double_add( RP, R, RP, R )
|
|
|
|
* else double_add( R, RP, R, RP )
|
|
|
|
* but using safe conditional swaps to avoid leaks
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_safe_cond_swap( &R->X, &RP.X, b ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_safe_cond_swap( &R->Z, &RP.Z, b ) );
|
|
|
|
MBEDTLS_MPI_CHK( ecp_double_add_mxz( grp, R, &RP, R, &RP, &PX ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_safe_cond_swap( &R->X, &RP.X, b ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_safe_cond_swap( &R->Z, &RP.Z, b ) );
|
2013-12-03 12:02:28 +01:00
|
|
|
}
|
|
|
|
|
2020-03-25 12:41:29 +01:00
|
|
|
/*
|
|
|
|
* Knowledge of the projective coordinates may leak the last few bits of the
|
|
|
|
* scalar [1], and since our MPI implementation isn't constant-flow,
|
|
|
|
* inversion (used for coordinate normalization) may leak the full value
|
|
|
|
* of its input via side-channels [2].
|
|
|
|
*
|
|
|
|
* [1] https://eprint.iacr.org/2003/191
|
|
|
|
* [2] https://eprint.iacr.org/2020/055
|
|
|
|
*
|
|
|
|
* Avoid the leak by randomizing coordinates before we normalize them.
|
|
|
|
*/
|
2020-06-04 10:43:29 +02:00
|
|
|
#if defined(MBEDTLS_ECP_NO_INTERNAL_RNG)
|
2020-03-25 12:41:29 +01:00
|
|
|
if( f_rng != NULL )
|
2020-06-04 10:43:29 +02:00
|
|
|
#endif
|
2020-03-25 12:41:29 +01:00
|
|
|
MBEDTLS_MPI_CHK( ecp_randomize_mxz( grp, R, f_rng, p_rng ) );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( ecp_normalize_mxz( grp, R ) );
|
2013-12-03 12:02:28 +01:00
|
|
|
|
|
|
|
cleanup:
|
2020-06-03 12:11:56 +02:00
|
|
|
#if !defined(MBEDTLS_ECP_NO_INTERNAL_RNG)
|
|
|
|
ecp_drbg_free( &drbg_ctx );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point_free( &RP ); mbedtls_mpi_free( &PX );
|
2013-12-03 12:02:28 +01:00
|
|
|
|
2012-11-08 23:21:46 +01:00
|
|
|
return( ret );
|
2012-11-02 18:14:40 +01:00
|
|
|
}
|
|
|
|
|
2018-09-14 17:44:21 +02:00
|
|
|
#endif /* MBEDTLS_ECP_MONTGOMERY_ENABLED */
|
2013-12-04 23:15:46 +01:00
|
|
|
|
2013-12-04 11:49:20 +01:00
|
|
|
/*
|
2017-04-20 10:10:59 +02:00
|
|
|
* Restartable multiplication R = m * P
|
2013-12-04 11:49:20 +01:00
|
|
|
*/
|
2017-04-20 10:10:59 +02:00
|
|
|
int mbedtls_ecp_mul_restartable( mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_mpi *m, const mbedtls_ecp_point *P,
|
2017-04-20 10:10:59 +02:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng,
|
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx )
|
2013-12-04 11:49:20 +01:00
|
|
|
{
|
2016-08-18 13:38:46 +02:00
|
|
|
int ret = MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
2016-11-18 17:38:23 +01:00
|
|
|
#if defined(MBEDTLS_ECP_INTERNAL_ALT)
|
|
|
|
char is_grp_capable = 0;
|
|
|
|
#endif
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
ECP_VALIDATE_RET( R != NULL );
|
|
|
|
ECP_VALIDATE_RET( m != NULL );
|
|
|
|
ECP_VALIDATE_RET( P != NULL );
|
2013-12-04 11:49:20 +01:00
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-20 11:20:26 +02:00
|
|
|
/* reset ops count for this call if top-level */
|
|
|
|
if( rs_ctx != NULL && rs_ctx->depth++ == 0 )
|
|
|
|
rs_ctx->ops_done = 0;
|
2019-02-28 13:12:06 +01:00
|
|
|
#else
|
|
|
|
(void) rs_ctx;
|
2017-04-20 11:20:26 +02:00
|
|
|
#endif
|
2013-12-04 11:49:20 +01:00
|
|
|
|
2016-11-18 17:38:23 +01:00
|
|
|
#if defined(MBEDTLS_ECP_INTERNAL_ALT)
|
2017-08-23 16:23:36 +02:00
|
|
|
if( ( is_grp_capable = mbedtls_internal_ecp_grp_capable( grp ) ) )
|
2016-11-18 17:38:23 +01:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_internal_ecp_init( grp ) );
|
|
|
|
#endif /* MBEDTLS_ECP_INTERNAL_ALT */
|
2017-04-20 11:20:26 +02:00
|
|
|
|
2017-08-24 13:47:04 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-20 11:29:43 +02:00
|
|
|
/* skip argument check when restarting */
|
2017-08-24 13:47:04 +02:00
|
|
|
if( rs_ctx == NULL || rs_ctx->rsm == NULL )
|
2017-04-20 11:29:43 +02:00
|
|
|
#endif
|
|
|
|
{
|
2017-04-21 12:36:59 +02:00
|
|
|
/* check_privkey is free */
|
|
|
|
MBEDTLS_ECP_BUDGET( MBEDTLS_ECP_OPS_CHK );
|
|
|
|
|
2017-04-20 11:29:43 +02:00
|
|
|
/* Common sanity checks */
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_check_privkey( grp, m ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_check_pubkey( grp, P ) );
|
|
|
|
}
|
2017-04-20 11:20:26 +02:00
|
|
|
|
|
|
|
ret = MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
|
2019-02-26 13:36:52 +01:00
|
|
|
if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
|
2017-04-20 11:20:26 +02:00
|
|
|
MBEDTLS_MPI_CHK( ecp_mul_mxz( grp, R, m, P, f_rng, p_rng ) );
|
2016-11-03 15:25:37 +01:00
|
|
|
#endif
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
|
2019-02-26 13:36:52 +01:00
|
|
|
if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
|
2017-04-20 11:20:26 +02:00
|
|
|
MBEDTLS_MPI_CHK( ecp_mul_comb( grp, R, m, P, f_rng, p_rng, rs_ctx ) );
|
2016-11-03 15:25:37 +01:00
|
|
|
#endif
|
2017-04-20 11:20:26 +02:00
|
|
|
|
2016-11-29 16:37:09 +01:00
|
|
|
cleanup:
|
2016-08-18 13:38:46 +02:00
|
|
|
|
2017-04-20 11:20:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_INTERNAL_ALT)
|
2017-08-23 16:23:36 +02:00
|
|
|
if( is_grp_capable )
|
2016-11-18 17:38:23 +01:00
|
|
|
mbedtls_internal_ecp_free( grp );
|
|
|
|
#endif /* MBEDTLS_ECP_INTERNAL_ALT */
|
2017-04-20 11:20:26 +02:00
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-20 11:20:26 +02:00
|
|
|
if( rs_ctx != NULL )
|
|
|
|
rs_ctx->depth--;
|
|
|
|
#endif
|
|
|
|
|
2016-08-18 13:38:46 +02:00
|
|
|
return( ret );
|
2013-12-04 11:49:20 +01:00
|
|
|
}
|
|
|
|
|
2017-04-19 10:11:56 +02:00
|
|
|
/*
|
2017-04-20 10:10:59 +02:00
|
|
|
* Multiplication R = m * P
|
2017-04-19 10:11:56 +02:00
|
|
|
*/
|
2017-04-20 10:10:59 +02:00
|
|
|
int mbedtls_ecp_mul( mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
|
2017-04-19 10:11:56 +02:00
|
|
|
const mbedtls_mpi *m, const mbedtls_ecp_point *P,
|
2017-04-20 10:10:59 +02:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
|
2017-04-19 10:11:56 +02:00
|
|
|
{
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
ECP_VALIDATE_RET( R != NULL );
|
|
|
|
ECP_VALIDATE_RET( m != NULL );
|
|
|
|
ECP_VALIDATE_RET( P != NULL );
|
2017-04-20 10:10:59 +02:00
|
|
|
return( mbedtls_ecp_mul_restartable( grp, R, m, P, f_rng, p_rng, NULL ) );
|
2017-04-19 10:11:56 +02:00
|
|
|
}
|
|
|
|
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
|
2012-11-17 19:54:20 +01:00
|
|
|
/*
|
2013-12-05 10:06:06 +01:00
|
|
|
* Check that an affine point is valid as a public key,
|
|
|
|
* short weierstrass curves (SEC1 3.2.3.1)
|
2012-11-17 19:54:20 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_check_pubkey_sw( const mbedtls_ecp_group *grp, const mbedtls_ecp_point *pt )
|
2012-11-17 19:54:20 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi YY, RHS;
|
2012-11-17 19:54:20 +01:00
|
|
|
|
2013-12-04 11:08:01 +01:00
|
|
|
/* pt coordinates must be normalized for our checks */
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_mpi_cmp_int( &pt->X, 0 ) < 0 ||
|
|
|
|
mbedtls_mpi_cmp_int( &pt->Y, 0 ) < 0 ||
|
|
|
|
mbedtls_mpi_cmp_mpi( &pt->X, &grp->P ) >= 0 ||
|
|
|
|
mbedtls_mpi_cmp_mpi( &pt->Y, &grp->P ) >= 0 )
|
|
|
|
return( MBEDTLS_ERR_ECP_INVALID_KEY );
|
2012-11-17 19:54:20 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &YY ); mbedtls_mpi_init( &RHS );
|
2012-11-17 19:54:20 +01:00
|
|
|
|
|
|
|
/*
|
2013-10-23 20:19:57 +02:00
|
|
|
* YY = Y^2
|
|
|
|
* RHS = X (X^2 + A) + B = X^3 + A X + B
|
2012-11-17 19:54:20 +01:00
|
|
|
*/
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &YY, &pt->Y, &pt->Y ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &RHS, &pt->X, &pt->X ) );
|
2013-12-06 12:41:30 +01:00
|
|
|
|
|
|
|
/* Special case for A = -3 */
|
|
|
|
if( grp->A.p == NULL )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_int( &RHS, &RHS, 3 ) ); MOD_SUB( RHS );
|
2013-12-06 12:41:30 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_add_mod( grp, &RHS, &RHS, &grp->A ) );
|
2013-12-06 12:41:30 +01:00
|
|
|
}
|
|
|
|
|
2019-07-18 21:08:27 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &RHS, &RHS, &pt->X ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_add_mod( grp, &RHS, &RHS, &grp->B ) );
|
2013-10-23 20:19:57 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_mpi_cmp_mpi( &YY, &RHS ) != 0 )
|
|
|
|
ret = MBEDTLS_ERR_ECP_INVALID_KEY;
|
2012-11-17 19:54:20 +01:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &YY ); mbedtls_mpi_free( &RHS );
|
2012-11-17 19:54:20 +01:00
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
2018-09-14 17:44:21 +02:00
|
|
|
#endif /* MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED */
|
2013-12-05 10:06:06 +01:00
|
|
|
|
2018-09-14 18:32:19 +02:00
|
|
|
#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
|
2015-10-23 15:50:37 +02:00
|
|
|
/*
|
|
|
|
* R = m * P with shortcuts for m == 1 and m == -1
|
|
|
|
* NOT constant-time - ONLY for short Weierstrass!
|
|
|
|
*/
|
|
|
|
static int mbedtls_ecp_mul_shortcuts( mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_ecp_point *R,
|
|
|
|
const mbedtls_mpi *m,
|
2017-04-20 14:48:56 +02:00
|
|
|
const mbedtls_ecp_point *P,
|
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx )
|
2015-10-23 15:50:37 +02:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2015-10-23 15:50:37 +02:00
|
|
|
|
|
|
|
if( mbedtls_mpi_cmp_int( m, 1 ) == 0 )
|
|
|
|
{
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_copy( R, P ) );
|
|
|
|
}
|
|
|
|
else if( mbedtls_mpi_cmp_int( m, -1 ) == 0 )
|
|
|
|
{
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_copy( R, P ) );
|
|
|
|
if( mbedtls_mpi_cmp_int( &R->Y, 0 ) != 0 )
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mpi( &R->Y, &grp->P, &R->Y ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-04-20 14:48:56 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_mul_restartable( grp, R, m, P,
|
|
|
|
NULL, NULL, rs_ctx ) );
|
2015-10-23 15:50:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2015-05-11 18:40:45 +02:00
|
|
|
/*
|
2017-04-20 13:36:18 +02:00
|
|
|
* Restartable linear combination
|
2015-10-23 15:50:37 +02:00
|
|
|
* NOT constant-time
|
2015-05-11 18:40:45 +02:00
|
|
|
*/
|
2017-04-20 13:36:18 +02:00
|
|
|
int mbedtls_ecp_muladd_restartable(
|
|
|
|
mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
|
2015-05-11 18:40:45 +02:00
|
|
|
const mbedtls_mpi *m, const mbedtls_ecp_point *P,
|
2017-04-20 13:36:18 +02:00
|
|
|
const mbedtls_mpi *n, const mbedtls_ecp_point *Q,
|
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx )
|
2015-05-11 18:40:45 +02:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2015-05-11 18:40:45 +02:00
|
|
|
mbedtls_ecp_point mP;
|
2017-04-20 14:48:56 +02:00
|
|
|
mbedtls_ecp_point *pmP = &mP;
|
|
|
|
mbedtls_ecp_point *pR = R;
|
2016-11-18 17:38:23 +01:00
|
|
|
#if defined(MBEDTLS_ECP_INTERNAL_ALT)
|
|
|
|
char is_grp_capable = 0;
|
|
|
|
#endif
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
ECP_VALIDATE_RET( R != NULL );
|
|
|
|
ECP_VALIDATE_RET( m != NULL );
|
|
|
|
ECP_VALIDATE_RET( P != NULL );
|
|
|
|
ECP_VALIDATE_RET( n != NULL );
|
|
|
|
ECP_VALIDATE_RET( Q != NULL );
|
2015-05-11 18:40:45 +02:00
|
|
|
|
2019-02-26 13:36:52 +01:00
|
|
|
if( mbedtls_ecp_get_type( grp ) != MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
|
2015-05-11 18:40:45 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
|
|
|
|
|
2017-04-20 14:48:56 +02:00
|
|
|
mbedtls_ecp_point_init( &mP );
|
|
|
|
|
2017-08-23 18:18:22 +02:00
|
|
|
ECP_RS_ENTER( ma );
|
2017-04-20 14:48:56 +02:00
|
|
|
|
2017-08-23 18:18:22 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-20 14:48:56 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->ma != NULL )
|
|
|
|
{
|
|
|
|
/* redirect intermediate results to restart context */
|
|
|
|
pmP = &rs_ctx->ma->mP;
|
|
|
|
pR = &rs_ctx->ma->R;
|
|
|
|
|
|
|
|
/* jump to next operation */
|
|
|
|
if( rs_ctx->ma->state == ecp_rsma_mul2 )
|
|
|
|
goto mul2;
|
|
|
|
if( rs_ctx->ma->state == ecp_rsma_add )
|
|
|
|
goto add;
|
|
|
|
if( rs_ctx->ma->state == ecp_rsma_norm )
|
|
|
|
goto norm;
|
|
|
|
}
|
2017-04-20 15:50:26 +02:00
|
|
|
#endif /* MBEDTLS_ECP_RESTARTABLE */
|
2017-04-20 13:36:18 +02:00
|
|
|
|
2017-04-20 14:48:56 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_mul_shortcuts( grp, pmP, m, P, rs_ctx ) );
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-20 14:48:56 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->ma != NULL )
|
2017-08-24 10:25:06 +02:00
|
|
|
rs_ctx->ma->state = ecp_rsma_mul2;
|
2015-05-11 18:40:45 +02:00
|
|
|
|
2017-04-20 14:48:56 +02:00
|
|
|
mul2:
|
|
|
|
#endif
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_mul_shortcuts( grp, pR, n, Q, rs_ctx ) );
|
2019-01-31 14:20:20 +01:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECP_INTERNAL_ALT)
|
|
|
|
if( ( is_grp_capable = mbedtls_internal_ecp_grp_capable( grp ) ) )
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_internal_ecp_init( grp ) );
|
|
|
|
#endif /* MBEDTLS_ECP_INTERNAL_ALT */
|
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-20 14:48:56 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->ma != NULL )
|
2017-08-24 10:25:06 +02:00
|
|
|
rs_ctx->ma->state = ecp_rsma_add;
|
2015-08-13 10:19:09 +02:00
|
|
|
|
2017-04-20 14:48:56 +02:00
|
|
|
add:
|
|
|
|
#endif
|
2017-04-20 16:31:00 +02:00
|
|
|
MBEDTLS_ECP_BUDGET( MBEDTLS_ECP_OPS_ADD );
|
2017-04-20 14:48:56 +02:00
|
|
|
MBEDTLS_MPI_CHK( ecp_add_mixed( grp, pR, pmP, pR ) );
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-20 14:48:56 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->ma != NULL )
|
2017-08-24 10:25:06 +02:00
|
|
|
rs_ctx->ma->state = ecp_rsma_norm;
|
2016-11-03 15:25:37 +01:00
|
|
|
|
2017-04-20 14:48:56 +02:00
|
|
|
norm:
|
|
|
|
#endif
|
2017-04-20 16:31:00 +02:00
|
|
|
MBEDTLS_ECP_BUDGET( MBEDTLS_ECP_OPS_INV );
|
2017-04-20 14:48:56 +02:00
|
|
|
MBEDTLS_MPI_CHK( ecp_normalize_jac( grp, pR ) );
|
2015-05-11 18:40:45 +02:00
|
|
|
|
2017-04-20 15:50:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-20 14:48:56 +02:00
|
|
|
if( rs_ctx != NULL && rs_ctx->ma != NULL )
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_copy( R, pR ) );
|
|
|
|
#endif
|
2016-08-18 13:38:46 +02:00
|
|
|
|
2017-04-20 14:48:56 +02:00
|
|
|
cleanup:
|
2016-11-18 17:38:23 +01:00
|
|
|
#if defined(MBEDTLS_ECP_INTERNAL_ALT)
|
2017-08-23 16:23:36 +02:00
|
|
|
if( is_grp_capable )
|
2016-11-18 17:38:23 +01:00
|
|
|
mbedtls_internal_ecp_free( grp );
|
|
|
|
#endif /* MBEDTLS_ECP_INTERNAL_ALT */
|
2017-04-20 14:48:56 +02:00
|
|
|
|
2015-05-11 18:40:45 +02:00
|
|
|
mbedtls_ecp_point_free( &mP );
|
|
|
|
|
2017-08-23 18:18:22 +02:00
|
|
|
ECP_RS_LEAVE( ma );
|
2017-04-20 13:36:18 +02:00
|
|
|
|
2015-05-11 18:40:45 +02:00
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2017-04-20 13:36:18 +02:00
|
|
|
/*
|
|
|
|
* Linear combination
|
|
|
|
* NOT constant-time
|
|
|
|
*/
|
|
|
|
int mbedtls_ecp_muladd( mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
|
|
|
|
const mbedtls_mpi *m, const mbedtls_ecp_point *P,
|
|
|
|
const mbedtls_mpi *n, const mbedtls_ecp_point *Q )
|
|
|
|
{
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
ECP_VALIDATE_RET( R != NULL );
|
|
|
|
ECP_VALIDATE_RET( m != NULL );
|
|
|
|
ECP_VALIDATE_RET( P != NULL );
|
|
|
|
ECP_VALIDATE_RET( n != NULL );
|
|
|
|
ECP_VALIDATE_RET( Q != NULL );
|
2017-04-20 13:36:18 +02:00
|
|
|
return( mbedtls_ecp_muladd_restartable( grp, R, m, P, n, Q, NULL ) );
|
|
|
|
}
|
2018-09-14 18:32:19 +02:00
|
|
|
#endif /* MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED */
|
2013-12-05 10:06:06 +01:00
|
|
|
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
|
2013-12-05 10:06:06 +01:00
|
|
|
/*
|
|
|
|
* Check validity of a public key for Montgomery curves with x-only schemes
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecp_check_pubkey_mx( const mbedtls_ecp_group *grp, const mbedtls_ecp_point *pt )
|
2013-12-05 10:06:06 +01:00
|
|
|
{
|
2015-06-23 00:18:41 +02:00
|
|
|
/* [Curve25519 p. 5] Just check X is the correct number of bytes */
|
2015-11-10 14:10:01 +01:00
|
|
|
/* Allow any public value, if it's too big then we'll just reduce it mod p
|
|
|
|
* (RFC 7748 sec. 5 para. 3). */
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_mpi_size( &pt->X ) > ( grp->nbits + 7 ) / 8 )
|
|
|
|
return( MBEDTLS_ERR_ECP_INVALID_KEY );
|
2013-12-05 10:06:06 +01:00
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2018-09-14 17:44:21 +02:00
|
|
|
#endif /* MBEDTLS_ECP_MONTGOMERY_ENABLED */
|
2013-12-05 10:06:06 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check that a point is valid as a public key
|
|
|
|
*/
|
2019-01-31 14:20:20 +01:00
|
|
|
int mbedtls_ecp_check_pubkey( const mbedtls_ecp_group *grp,
|
|
|
|
const mbedtls_ecp_point *pt )
|
2013-12-05 10:06:06 +01:00
|
|
|
{
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
ECP_VALIDATE_RET( pt != NULL );
|
|
|
|
|
2013-12-05 10:06:06 +01:00
|
|
|
/* Must use affine coordinates */
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_mpi_cmp_int( &pt->Z, 1 ) != 0 )
|
|
|
|
return( MBEDTLS_ERR_ECP_INVALID_KEY );
|
2013-12-05 10:06:06 +01:00
|
|
|
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
|
2019-02-26 13:36:52 +01:00
|
|
|
if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
|
2013-12-05 10:06:06 +01:00
|
|
|
return( ecp_check_pubkey_mx( grp, pt ) );
|
|
|
|
#endif
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
|
2019-02-26 13:36:52 +01:00
|
|
|
if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
|
2013-12-05 10:06:06 +01:00
|
|
|
return( ecp_check_pubkey_sw( grp, pt ) );
|
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2013-12-05 10:06:06 +01:00
|
|
|
}
|
2012-11-17 19:54:20 +01:00
|
|
|
|
2012-11-21 10:00:45 +01:00
|
|
|
/*
|
2015-04-08 12:49:31 +02:00
|
|
|
* Check that an mbedtls_mpi is valid as a private key
|
2012-11-21 10:00:45 +01:00
|
|
|
*/
|
2019-01-31 14:20:20 +01:00
|
|
|
int mbedtls_ecp_check_privkey( const mbedtls_ecp_group *grp,
|
|
|
|
const mbedtls_mpi *d )
|
2012-11-21 10:00:45 +01:00
|
|
|
{
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
ECP_VALIDATE_RET( d != NULL );
|
|
|
|
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
|
2019-02-26 13:36:52 +01:00
|
|
|
if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
|
2013-12-04 11:08:01 +01:00
|
|
|
{
|
2015-11-10 14:10:01 +01:00
|
|
|
/* see RFC 7748 sec. 5 para. 5 */
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_mpi_get_bit( d, 0 ) != 0 ||
|
|
|
|
mbedtls_mpi_get_bit( d, 1 ) != 0 ||
|
2015-06-18 16:47:17 +02:00
|
|
|
mbedtls_mpi_bitlen( d ) - 1 != grp->nbits ) /* mbedtls_mpi_bitlen is one-based! */
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_INVALID_KEY );
|
2015-11-10 14:10:01 +01:00
|
|
|
|
|
|
|
/* see [Curve25519] page 5 */
|
|
|
|
if( grp->nbits == 254 && mbedtls_mpi_get_bit( d, 2 ) != 0 )
|
|
|
|
return( MBEDTLS_ERR_ECP_INVALID_KEY );
|
|
|
|
|
|
|
|
return( 0 );
|
2013-12-04 11:08:01 +01:00
|
|
|
}
|
2018-09-14 17:44:21 +02:00
|
|
|
#endif /* MBEDTLS_ECP_MONTGOMERY_ENABLED */
|
|
|
|
#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
|
2019-02-26 13:36:52 +01:00
|
|
|
if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
|
2013-12-04 11:08:01 +01:00
|
|
|
{
|
|
|
|
/* see SEC1 3.2 */
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_mpi_cmp_int( d, 1 ) < 0 ||
|
|
|
|
mbedtls_mpi_cmp_mpi( d, &grp->N ) >= 0 )
|
|
|
|
return( MBEDTLS_ERR_ECP_INVALID_KEY );
|
2013-12-05 10:06:06 +01:00
|
|
|
else
|
|
|
|
return( 0 );
|
2013-12-04 11:08:01 +01:00
|
|
|
}
|
2018-09-14 17:44:21 +02:00
|
|
|
#endif /* MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED */
|
2012-11-21 10:00:45 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2013-10-23 20:19:57 +02:00
|
|
|
}
|
2012-11-21 10:00:45 +01:00
|
|
|
|
2013-10-23 20:19:57 +02:00
|
|
|
/*
|
2017-04-20 15:37:46 +02:00
|
|
|
* Generate a private key
|
2013-10-23 20:19:57 +02:00
|
|
|
*/
|
2017-04-20 15:37:46 +02:00
|
|
|
int mbedtls_ecp_gen_privkey( const mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_mpi *d,
|
2013-10-23 20:19:57 +02:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng )
|
|
|
|
{
|
2017-04-20 15:37:46 +02:00
|
|
|
int ret = MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
2019-01-31 14:20:20 +01:00
|
|
|
size_t n_size;
|
|
|
|
|
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
ECP_VALIDATE_RET( d != NULL );
|
|
|
|
ECP_VALIDATE_RET( f_rng != NULL );
|
|
|
|
|
|
|
|
n_size = ( grp->nbits + 7 ) / 8;
|
2012-11-21 16:00:55 +01:00
|
|
|
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
|
2019-02-26 13:36:52 +01:00
|
|
|
if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
|
2013-10-23 20:19:57 +02:00
|
|
|
{
|
2013-12-04 18:14:55 +01:00
|
|
|
/* [M225] page 5 */
|
|
|
|
size_t b;
|
|
|
|
|
2016-05-31 15:03:54 +02:00
|
|
|
do {
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_fill_random( d, n_size, f_rng, p_rng ) );
|
|
|
|
} while( mbedtls_mpi_bitlen( d ) == 0);
|
2012-11-21 10:00:45 +01:00
|
|
|
|
2013-12-04 18:14:55 +01:00
|
|
|
/* Make sure the most significant bit is nbits */
|
2015-06-18 16:47:17 +02:00
|
|
|
b = mbedtls_mpi_bitlen( d ) - 1; /* mbedtls_mpi_bitlen is one-based */
|
2013-12-04 18:14:55 +01:00
|
|
|
if( b > grp->nbits )
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_shift_r( d, b - grp->nbits ) );
|
2013-12-04 18:14:55 +01:00
|
|
|
else
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( d, grp->nbits, 1 ) );
|
2012-11-21 10:00:45 +01:00
|
|
|
|
2015-11-10 14:10:01 +01:00
|
|
|
/* Make sure the last two bits are unset for Curve448, three bits for
|
|
|
|
Curve25519 */
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( d, 0, 0 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( d, 1, 0 ) );
|
2015-11-10 14:10:01 +01:00
|
|
|
if( grp->nbits == 254 )
|
|
|
|
{
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( d, 2, 0 ) );
|
|
|
|
}
|
2013-12-04 18:14:55 +01:00
|
|
|
}
|
2018-09-14 17:44:21 +02:00
|
|
|
#endif /* MBEDTLS_ECP_MONTGOMERY_ENABLED */
|
2017-04-20 15:37:46 +02:00
|
|
|
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
|
2019-02-26 13:36:52 +01:00
|
|
|
if( mbedtls_ecp_get_type( grp ) == MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
|
2013-12-04 18:14:55 +01:00
|
|
|
{
|
|
|
|
/* SEC1 3.2.1: Generate d such that 1 <= n < N */
|
2013-12-05 10:06:06 +01:00
|
|
|
int count = 0;
|
2019-10-11 15:21:53 +02:00
|
|
|
unsigned cmp = 0;
|
2014-01-03 12:35:05 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Match the procedure given in RFC 6979 (deterministic ECDSA):
|
|
|
|
* - use the same byte ordering;
|
|
|
|
* - keep the leftmost nbits bits of the generated octet string;
|
|
|
|
* - try until result is in the desired range.
|
|
|
|
* This also avoids any biais, which is especially important for ECDSA.
|
|
|
|
*/
|
2013-12-04 18:14:55 +01:00
|
|
|
do
|
|
|
|
{
|
2017-10-17 16:19:38 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_fill_random( d, n_size, f_rng, p_rng ) );
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_shift_r( d, 8 * n_size - grp->nbits ) );
|
2013-12-04 18:14:55 +01:00
|
|
|
|
2014-01-28 19:30:56 +01:00
|
|
|
/*
|
|
|
|
* Each try has at worst a probability 1/2 of failing (the msb has
|
|
|
|
* a probability 1/2 of being 0, and then the result will be < N),
|
|
|
|
* so after 30 tries failure probability is a most 2**(-30).
|
|
|
|
*
|
|
|
|
* For most curves, 1 try is enough with overwhelming probability,
|
|
|
|
* since N starts with a lot of 1s in binary, but some curves
|
|
|
|
* such as secp224k1 are actually very close to the worst case.
|
|
|
|
*/
|
2017-04-21 13:19:43 +02:00
|
|
|
if( ++count > 30 )
|
2020-05-28 13:00:43 +02:00
|
|
|
{
|
|
|
|
ret = MBEDTLS_ERR_ECP_RANDOM_FAILED;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2019-09-16 15:27:39 +02:00
|
|
|
|
2019-10-11 15:21:53 +02:00
|
|
|
ret = mbedtls_mpi_lt_mpi_ct( d, &grp->N, &cmp );
|
2019-09-16 15:27:39 +02:00
|
|
|
if( ret != 0 )
|
|
|
|
{
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2013-12-04 18:14:55 +01:00
|
|
|
}
|
2019-10-11 15:21:53 +02:00
|
|
|
while( mbedtls_mpi_cmp_int( d, 1 ) < 0 || cmp != 1 );
|
2013-10-23 20:19:57 +02:00
|
|
|
}
|
2018-09-14 17:44:21 +02:00
|
|
|
#endif /* MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED */
|
2012-11-21 10:00:45 +01:00
|
|
|
|
2014-01-03 12:54:00 +01:00
|
|
|
cleanup:
|
2017-04-20 15:37:46 +02:00
|
|
|
return( ret );
|
|
|
|
}
|
2014-01-03 12:54:00 +01:00
|
|
|
|
2017-04-20 15:37:46 +02:00
|
|
|
/*
|
|
|
|
* Generate a keypair with configurable base point
|
|
|
|
*/
|
|
|
|
int mbedtls_ecp_gen_keypair_base( mbedtls_ecp_group *grp,
|
|
|
|
const mbedtls_ecp_point *G,
|
|
|
|
mbedtls_mpi *d, mbedtls_ecp_point *Q,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng )
|
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
ECP_VALIDATE_RET( d != NULL );
|
|
|
|
ECP_VALIDATE_RET( G != NULL );
|
|
|
|
ECP_VALIDATE_RET( Q != NULL );
|
|
|
|
ECP_VALIDATE_RET( f_rng != NULL );
|
2017-04-20 15:37:46 +02:00
|
|
|
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_gen_privkey( grp, d, f_rng, p_rng ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_mul( grp, Q, d, G, f_rng, p_rng ) );
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
2015-08-11 14:31:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Generate key pair, wrapper for conventional base point
|
|
|
|
*/
|
|
|
|
int mbedtls_ecp_gen_keypair( mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_mpi *d, mbedtls_ecp_point *Q,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng )
|
|
|
|
{
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( grp != NULL );
|
|
|
|
ECP_VALIDATE_RET( d != NULL );
|
|
|
|
ECP_VALIDATE_RET( Q != NULL );
|
|
|
|
ECP_VALIDATE_RET( f_rng != NULL );
|
|
|
|
|
2015-08-11 14:31:03 +02:00
|
|
|
return( mbedtls_ecp_gen_keypair_base( grp, &grp->G, d, Q, f_rng, p_rng ) );
|
2013-10-23 20:19:57 +02:00
|
|
|
}
|
|
|
|
|
2013-11-30 14:13:16 +01:00
|
|
|
/*
|
|
|
|
* Generate a keypair, prettier wrapper
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecp_gen_key( mbedtls_ecp_group_id grp_id, mbedtls_ecp_keypair *key,
|
2013-11-30 14:13:16 +01:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
|
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( key != NULL );
|
|
|
|
ECP_VALIDATE_RET( f_rng != NULL );
|
2013-11-30 14:13:16 +01:00
|
|
|
|
2015-05-11 18:46:47 +02:00
|
|
|
if( ( ret = mbedtls_ecp_group_load( &key->grp, grp_id ) ) != 0 )
|
2013-11-30 14:13:16 +01:00
|
|
|
return( ret );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
return( mbedtls_ecp_gen_keypair( &key->grp, &key->d, &key->Q, f_rng, p_rng ) );
|
2013-11-30 14:13:16 +01:00
|
|
|
}
|
|
|
|
|
2019-02-25 17:32:08 +01:00
|
|
|
#define ECP_CURVE25519_KEY_SIZE 32
|
2019-02-15 17:17:45 +01:00
|
|
|
/*
|
|
|
|
* Read a private key.
|
|
|
|
*/
|
|
|
|
int mbedtls_ecp_read_key( mbedtls_ecp_group_id grp_id, mbedtls_ecp_keypair *key,
|
|
|
|
const unsigned char *buf, size_t buflen )
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
2019-02-26 11:53:34 +01:00
|
|
|
ECP_VALIDATE_RET( key != NULL );
|
|
|
|
ECP_VALIDATE_RET( buf != NULL );
|
|
|
|
|
2019-02-15 17:17:45 +01:00
|
|
|
if( ( ret = mbedtls_ecp_group_load( &key->grp, grp_id ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
2019-02-26 11:53:34 +01:00
|
|
|
ret = MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE;
|
2019-02-15 17:17:45 +01:00
|
|
|
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
|
2019-02-26 13:36:52 +01:00
|
|
|
if( mbedtls_ecp_get_type( &key->grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
|
2019-02-26 11:53:34 +01:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* If it is Curve25519 curve then mask the key as mandated by RFC7748
|
|
|
|
*/
|
|
|
|
if( grp_id == MBEDTLS_ECP_DP_CURVE25519 )
|
|
|
|
{
|
|
|
|
if( buflen != ECP_CURVE25519_KEY_SIZE )
|
|
|
|
return MBEDTLS_ERR_ECP_INVALID_KEY;
|
|
|
|
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary_le( &key->d, buf, buflen ) );
|
|
|
|
|
|
|
|
/* Set the three least significant bits to 0 */
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( &key->d, 0, 0 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( &key->d, 1, 0 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( &key->d, 2, 0 ) );
|
|
|
|
|
|
|
|
/* Set the most significant bit to 0 */
|
|
|
|
MBEDTLS_MPI_CHK(
|
|
|
|
mbedtls_mpi_set_bit( &key->d,
|
|
|
|
ECP_CURVE25519_KEY_SIZE * 8 - 1, 0 )
|
|
|
|
);
|
|
|
|
|
|
|
|
/* Set the second most significant bit to 1 */
|
|
|
|
MBEDTLS_MPI_CHK(
|
|
|
|
mbedtls_mpi_set_bit( &key->d,
|
|
|
|
ECP_CURVE25519_KEY_SIZE * 8 - 2, 1 )
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ret = MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE;
|
2019-02-15 17:17:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
|
2019-02-26 13:36:52 +01:00
|
|
|
if( mbedtls_ecp_get_type( &key->grp ) == MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
|
2019-02-15 17:17:45 +01:00
|
|
|
{
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary( &key->d, buf, buflen ) );
|
|
|
|
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_check_privkey( &key->grp, &key->d ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
cleanup:
|
|
|
|
|
|
|
|
if( ret != 0 )
|
|
|
|
mbedtls_mpi_free( &key->d );
|
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2020-06-09 19:55:26 +02:00
|
|
|
/*
|
|
|
|
* Write a private key.
|
|
|
|
*/
|
2020-07-13 10:59:40 +02:00
|
|
|
int mbedtls_ecp_write_key( mbedtls_ecp_keypair *key,
|
2020-06-11 17:00:36 +02:00
|
|
|
unsigned char *buf, size_t buflen )
|
2020-06-09 19:55:26 +02:00
|
|
|
{
|
2020-07-13 10:59:40 +02:00
|
|
|
int ret = MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE;
|
2020-06-09 19:55:26 +02:00
|
|
|
|
2020-07-13 10:59:40 +02:00
|
|
|
ECP_VALIDATE_RET( key != NULL );
|
|
|
|
ECP_VALIDATE_RET( buf != NULL );
|
2020-06-09 19:55:26 +02:00
|
|
|
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
|
2020-06-09 19:55:26 +02:00
|
|
|
if( mbedtls_ecp_get_type( &key->grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
|
|
|
|
{
|
2020-07-13 10:59:40 +02:00
|
|
|
if( key->grp.id == MBEDTLS_ECP_DP_CURVE25519 )
|
2020-06-09 19:55:26 +02:00
|
|
|
{
|
|
|
|
if( buflen < ECP_CURVE25519_KEY_SIZE )
|
|
|
|
return MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL;
|
|
|
|
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary_le( &key->d, buf, buflen ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ret = MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2018-09-14 17:44:21 +02:00
|
|
|
#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
|
2020-06-09 19:55:26 +02:00
|
|
|
if( mbedtls_ecp_get_type( &key->grp ) == MBEDTLS_ECP_TYPE_SHORT_WEIERSTRASS )
|
|
|
|
{
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary( &key->d, buf, buflen ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
cleanup:
|
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-06 15:25:32 +01:00
|
|
|
/*
|
|
|
|
* Check a public-private key pair
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecp_check_pub_priv( const mbedtls_ecp_keypair *pub, const mbedtls_ecp_keypair *prv )
|
2014-11-06 15:25:32 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point Q;
|
|
|
|
mbedtls_ecp_group grp;
|
2019-01-31 14:20:20 +01:00
|
|
|
ECP_VALIDATE_RET( pub != NULL );
|
|
|
|
ECP_VALIDATE_RET( prv != NULL );
|
2014-11-06 15:25:32 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( pub->grp.id == MBEDTLS_ECP_DP_NONE ||
|
2014-11-06 15:25:32 +01:00
|
|
|
pub->grp.id != prv->grp.id ||
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_cmp_mpi( &pub->Q.X, &prv->Q.X ) ||
|
|
|
|
mbedtls_mpi_cmp_mpi( &pub->Q.Y, &prv->Q.Y ) ||
|
|
|
|
mbedtls_mpi_cmp_mpi( &pub->Q.Z, &prv->Q.Z ) )
|
2014-11-06 15:25:32 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2014-11-06 15:25:32 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point_init( &Q );
|
|
|
|
mbedtls_ecp_group_init( &grp );
|
2014-11-06 15:25:32 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* mbedtls_ecp_mul() needs a non-const group... */
|
|
|
|
mbedtls_ecp_group_copy( &grp, &prv->grp );
|
2014-11-06 15:25:32 +01:00
|
|
|
|
|
|
|
/* Also checks d is valid */
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_mul( &grp, &Q, &prv->d, &prv->grp.G, NULL, NULL ) );
|
2014-11-06 15:25:32 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_mpi_cmp_mpi( &Q.X, &prv->Q.X ) ||
|
|
|
|
mbedtls_mpi_cmp_mpi( &Q.Y, &prv->Q.Y ) ||
|
|
|
|
mbedtls_mpi_cmp_mpi( &Q.Z, &prv->Q.Z ) )
|
2014-11-06 15:25:32 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
2014-11-06 15:25:32 +01:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
cleanup:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point_free( &Q );
|
|
|
|
mbedtls_ecp_group_free( &grp );
|
2014-11-06 15:25:32 +01:00
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SELF_TEST)
|
2012-10-31 09:26:55 +01:00
|
|
|
|
2020-07-22 01:26:25 +02:00
|
|
|
/* Adjust the exponent to be a valid private point for the specified curve.
|
|
|
|
* This is sometimes necessary because we use a single set of exponents
|
|
|
|
* for all curves but the validity of values depends on the curve. */
|
2018-09-17 18:31:15 +02:00
|
|
|
static int self_test_adjust_exponent( const mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_mpi *m )
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
switch( grp->id )
|
|
|
|
{
|
|
|
|
/* If Curve25519 is available, then that's what we use for the
|
|
|
|
* Montgomery test, so we don't need the adjustment code. */
|
|
|
|
#if ! defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
|
|
|
|
#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
|
|
|
|
case MBEDTLS_ECP_DP_CURVE448:
|
|
|
|
/* Move highest bit from 254 to N-1. Setting bit N-1 is
|
|
|
|
* necessary to enforce the highest-bit-set constraint. */
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( m, 254, 0 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_set_bit( m, grp->nbits, 1 ) );
|
|
|
|
/* Copy second-highest bit from 253 to N-2. This is not
|
|
|
|
* necessary but improves the test variety a bit. */
|
|
|
|
MBEDTLS_MPI_CHK(
|
|
|
|
mbedtls_mpi_set_bit( m, grp->nbits - 1,
|
|
|
|
mbedtls_mpi_get_bit( m, 253 ) ) );
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#endif /* ! defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED) */
|
|
|
|
default:
|
|
|
|
/* Non-Montgomery curves and Curve25519 need no adjustment. */
|
|
|
|
(void) grp;
|
|
|
|
(void) m;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2020-07-22 01:26:25 +02:00
|
|
|
/* Calculate R = m.P for each m in exponents. Check that the number of
|
|
|
|
* basic operations doesn't depend on the value of m. */
|
2018-09-17 15:59:01 +02:00
|
|
|
static int self_test_point( int verbose,
|
|
|
|
mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_ecp_point *R,
|
|
|
|
mbedtls_mpi *m,
|
2020-07-22 01:26:25 +02:00
|
|
|
const mbedtls_ecp_point *P,
|
2018-09-17 15:59:01 +02:00
|
|
|
const char *const *exponents,
|
|
|
|
size_t n_exponents )
|
|
|
|
{
|
|
|
|
int ret = 0;
|
2018-09-17 18:29:49 +02:00
|
|
|
size_t i = 0;
|
2018-09-17 15:59:01 +02:00
|
|
|
unsigned long add_c_prev, dbl_c_prev, mul_c_prev;
|
|
|
|
add_count = 0;
|
|
|
|
dbl_count = 0;
|
|
|
|
mul_count = 0;
|
2018-09-17 18:31:15 +02:00
|
|
|
|
2018-09-17 15:59:01 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( m, 16, exponents[0] ) );
|
2018-09-17 18:31:15 +02:00
|
|
|
MBEDTLS_MPI_CHK( self_test_adjust_exponent( grp, m ) );
|
2018-09-17 15:59:01 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_mul( grp, R, m, P, NULL, NULL ) );
|
|
|
|
|
|
|
|
for( i = 1; i < n_exponents; i++ )
|
|
|
|
{
|
|
|
|
add_c_prev = add_count;
|
|
|
|
dbl_c_prev = dbl_count;
|
|
|
|
mul_c_prev = mul_count;
|
|
|
|
add_count = 0;
|
|
|
|
dbl_count = 0;
|
|
|
|
mul_count = 0;
|
|
|
|
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( m, 16, exponents[i] ) );
|
2018-09-17 18:31:15 +02:00
|
|
|
MBEDTLS_MPI_CHK( self_test_adjust_exponent( grp, m ) );
|
2018-09-17 15:59:01 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_mul( grp, R, m, P, NULL, NULL ) );
|
|
|
|
|
|
|
|
if( add_count != add_c_prev ||
|
|
|
|
dbl_count != dbl_c_prev ||
|
|
|
|
mul_count != mul_c_prev )
|
|
|
|
{
|
|
|
|
ret = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if( verbose != 0 )
|
|
|
|
{
|
|
|
|
if( ret != 0 )
|
|
|
|
mbedtls_printf( "failed (%u)\n", (unsigned int) i );
|
|
|
|
else
|
|
|
|
mbedtls_printf( "passed\n" );
|
|
|
|
}
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2012-10-31 09:26:55 +01:00
|
|
|
/*
|
|
|
|
* Checkup routine
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecp_self_test( int verbose )
|
2012-10-31 09:26:55 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_group grp;
|
|
|
|
mbedtls_ecp_point R, P;
|
|
|
|
mbedtls_mpi m;
|
2018-09-17 18:29:49 +02:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
|
2018-09-14 19:29:47 +02:00
|
|
|
/* Exponents especially adapted for secp192k1, which has the lowest
|
|
|
|
* order n of all supported curves (secp192r1 is in a slightly larger
|
|
|
|
* field but the order of its base point is slightly smaller). */
|
2018-09-17 18:29:49 +02:00
|
|
|
const char *sw_exponents[] =
|
2012-11-13 20:57:00 +01:00
|
|
|
{
|
2012-11-21 13:00:58 +01:00
|
|
|
"000000000000000000000000000000000000000000000001", /* one */
|
2018-09-14 19:29:47 +02:00
|
|
|
"FFFFFFFFFFFFFFFFFFFFFFFE26F2FC170F69466A74DEFD8C", /* n - 1 */
|
2012-11-21 13:00:58 +01:00
|
|
|
"5EA6F389A38B8BC81E767753B15AA5569E1782E30ABE7D25", /* random */
|
2013-11-21 09:28:03 +01:00
|
|
|
"400000000000000000000000000000000000000000000000", /* one and zeros */
|
|
|
|
"7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF", /* all ones */
|
|
|
|
"555555555555555555555555555555555555555555555555", /* 101010... */
|
2012-11-13 20:57:00 +01:00
|
|
|
};
|
2018-09-17 18:29:49 +02:00
|
|
|
#endif /* MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED */
|
|
|
|
#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
|
|
|
|
const char *m_exponents[] =
|
|
|
|
{
|
2020-07-22 01:26:25 +02:00
|
|
|
/* Valid private values for Curve25519. In a build with Curve448
|
|
|
|
* but not Curve25519, they will be adjusted in
|
|
|
|
* self_test_adjust_exponent(). */
|
2018-09-17 18:29:49 +02:00
|
|
|
"4000000000000000000000000000000000000000000000000000000000000000",
|
|
|
|
"5C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C30",
|
|
|
|
"5715ECCE24583F7A7023C24164390586842E816D7280A49EF6DF4EAE6B280BF8",
|
|
|
|
"41A2B017516F6D254E1F002BCCBADD54BE30F8CEC737A0E912B4963B6BA74460",
|
|
|
|
"5555555555555555555555555555555555555555555555555555555555555550",
|
|
|
|
"7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8",
|
|
|
|
};
|
|
|
|
#endif /* MBEDTLS_ECP_MONTGOMERY_ENABLED */
|
2012-11-13 20:57:00 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_group_init( &grp );
|
|
|
|
mbedtls_ecp_point_init( &R );
|
|
|
|
mbedtls_ecp_point_init( &P );
|
|
|
|
mbedtls_mpi_init( &m );
|
2012-11-13 20:57:00 +01:00
|
|
|
|
2018-09-17 18:29:49 +02:00
|
|
|
#if defined(MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED)
|
2013-10-10 15:40:49 +02:00
|
|
|
/* Use secp192r1 if available, or any available curve */
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED)
|
2015-05-11 18:46:47 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_group_load( &grp, MBEDTLS_ECP_DP_SECP192R1 ) );
|
2013-06-29 23:26:34 +02:00
|
|
|
#else
|
2015-05-11 18:46:47 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_group_load( &grp, mbedtls_ecp_curve_list()->grp_id ) );
|
2013-10-10 15:40:49 +02:00
|
|
|
#endif
|
2012-11-13 20:57:00 +01:00
|
|
|
|
|
|
|
if( verbose != 0 )
|
2018-09-17 18:29:49 +02:00
|
|
|
mbedtls_printf( " ECP SW test #1 (constant op_count, base point G): " );
|
2013-09-17 19:13:10 +02:00
|
|
|
/* Do a dummy multiplication first to trigger precomputation */
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &m, 2 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_mul( &grp, &P, &m, &grp.G, NULL, NULL ) );
|
2018-09-17 15:59:01 +02:00
|
|
|
ret = self_test_point( verbose,
|
|
|
|
&grp, &R, &m, &grp.G,
|
2018-09-17 18:29:49 +02:00
|
|
|
sw_exponents,
|
|
|
|
sizeof( sw_exponents ) / sizeof( sw_exponents[0] ));
|
2018-09-17 15:59:01 +02:00
|
|
|
if( ret != 0 )
|
|
|
|
goto cleanup;
|
2012-11-13 20:57:00 +01:00
|
|
|
|
2013-09-17 19:13:10 +02:00
|
|
|
if( verbose != 0 )
|
2018-09-17 18:29:49 +02:00
|
|
|
mbedtls_printf( " ECP SW test #2 (constant op_count, other point): " );
|
2013-09-17 19:13:10 +02:00
|
|
|
/* We computed P = 2G last time, use it */
|
2018-09-17 15:59:01 +02:00
|
|
|
ret = self_test_point( verbose,
|
|
|
|
&grp, &R, &m, &P,
|
2018-09-17 18:29:49 +02:00
|
|
|
sw_exponents,
|
|
|
|
sizeof( sw_exponents ) / sizeof( sw_exponents[0] ));
|
|
|
|
if( ret != 0 )
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
mbedtls_ecp_group_free( &grp );
|
|
|
|
mbedtls_ecp_point_free( &R );
|
|
|
|
#endif /* MBEDTLS_ECP_SHORT_WEIERSTRASS_ENABLED */
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
|
|
|
|
if( verbose != 0 )
|
|
|
|
mbedtls_printf( " ECP Montgomery test (constant op_count): " );
|
|
|
|
#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_group_load( &grp, MBEDTLS_ECP_DP_CURVE25519 ) );
|
|
|
|
#elif defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_group_load( &grp, MBEDTLS_ECP_DP_CURVE448 ) );
|
|
|
|
#else
|
|
|
|
#error "MBEDTLS_ECP_MONTGOMERY_ENABLED is defined, but no curve is supported for self-test"
|
|
|
|
#endif
|
|
|
|
ret = self_test_point( verbose,
|
|
|
|
&grp, &R, &m, &grp.G,
|
|
|
|
m_exponents,
|
|
|
|
sizeof( m_exponents ) / sizeof( m_exponents[0] ));
|
|
|
|
if( ret != 0 )
|
|
|
|
goto cleanup;
|
|
|
|
#endif /* MBEDTLS_ECP_MONTGOMERY_ENABLED */
|
2013-09-17 19:13:10 +02:00
|
|
|
|
2012-11-13 20:57:00 +01:00
|
|
|
cleanup:
|
|
|
|
|
|
|
|
if( ret < 0 && verbose != 0 )
|
2020-04-01 17:22:45 +02:00
|
|
|
mbedtls_printf( "Unexpected error, return code = %08X\n", (unsigned int) ret );
|
2012-11-13 20:57:00 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_group_free( &grp );
|
|
|
|
mbedtls_ecp_point_free( &R );
|
|
|
|
mbedtls_ecp_point_free( &P );
|
|
|
|
mbedtls_mpi_free( &m );
|
2012-11-13 20:57:00 +01:00
|
|
|
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n" );
|
2012-11-13 20:57:00 +01:00
|
|
|
|
|
|
|
return( ret );
|
2012-10-31 09:26:55 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_SELF_TEST */
|
2012-10-31 09:26:55 +01:00
|
|
|
|
2016-08-18 13:38:46 +02:00
|
|
|
#endif /* !MBEDTLS_ECP_ALT */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_ECP_C */
|