2019-04-24 14:40:43 +02:00
|
|
|
/* ecc.c - TinyCrypt implementation of common ECC functions */
|
|
|
|
|
2019-09-09 18:25:08 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019, Arm Limited (or its affiliates), All Rights Reserved.
|
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*/
|
|
|
|
|
2019-04-24 14:40:43 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014, Kenneth MacKay
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017 by Intel Corporation, All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* - Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* - Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* - Neither the name of Intel Corporation nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2019-07-23 16:52:35 +02:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
|
|
|
#include "mbedtls/config.h"
|
|
|
|
#else
|
|
|
|
#include MBEDTLS_CONFIG_FILE
|
|
|
|
#endif
|
|
|
|
|
2019-05-09 11:24:11 +02:00
|
|
|
#if defined(MBEDTLS_USE_TINYCRYPT)
|
2019-04-24 14:40:43 +02:00
|
|
|
#include <tinycrypt/ecc.h>
|
2019-11-04 11:19:30 +01:00
|
|
|
#include "mbedtls/platform_util.h"
|
2019-04-24 14:40:43 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2019-11-21 10:02:58 +01:00
|
|
|
/* Parameters for curve NIST P-256 aka secp256r1 */
|
|
|
|
const uECC_word_t curve_p[NUM_ECC_WORDS] = {
|
|
|
|
BYTES_TO_WORDS_8(FF, FF, FF, FF, FF, FF, FF, FF),
|
|
|
|
BYTES_TO_WORDS_8(FF, FF, FF, FF, 00, 00, 00, 00),
|
|
|
|
BYTES_TO_WORDS_8(00, 00, 00, 00, 00, 00, 00, 00),
|
|
|
|
BYTES_TO_WORDS_8(01, 00, 00, 00, FF, FF, FF, FF)
|
|
|
|
};
|
|
|
|
|
2019-04-24 14:40:43 +02:00
|
|
|
/* IMPORTANT: Make sure a cryptographically-secure PRNG is set and the platform
|
|
|
|
* has access to enough entropy in order to feed the PRNG regularly. */
|
|
|
|
#if default_RNG_defined
|
|
|
|
static uECC_RNG_Function g_rng_function = &default_CSPRNG;
|
|
|
|
#else
|
|
|
|
static uECC_RNG_Function g_rng_function = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void uECC_set_rng(uECC_RNG_Function rng_function)
|
|
|
|
{
|
|
|
|
g_rng_function = rng_function;
|
|
|
|
}
|
|
|
|
|
|
|
|
uECC_RNG_Function uECC_get_rng(void)
|
|
|
|
{
|
|
|
|
return g_rng_function;
|
|
|
|
}
|
|
|
|
|
|
|
|
int uECC_curve_private_key_size(uECC_Curve curve)
|
|
|
|
{
|
2019-11-21 09:46:52 +01:00
|
|
|
(void) curve;
|
|
|
|
return BITS_TO_BYTES(NUM_ECC_BITS);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int uECC_curve_public_key_size(uECC_Curve curve)
|
|
|
|
{
|
2019-11-21 09:34:09 +01:00
|
|
|
(void) curve;
|
|
|
|
return 2 * NUM_ECC_BYTES;
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
2019-11-04 12:47:28 +01:00
|
|
|
void uECC_vli_clear(uECC_word_t *vli)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
wordcount_t i;
|
2019-11-04 12:47:28 +01:00
|
|
|
for (i = 0; i < NUM_ECC_WORDS; ++i) {
|
2019-04-24 14:40:43 +02:00
|
|
|
vli[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-04 12:44:43 +01:00
|
|
|
uECC_word_t uECC_vli_isZero(const uECC_word_t *vli)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
uECC_word_t bits = 0;
|
|
|
|
wordcount_t i;
|
2019-11-04 12:44:43 +01:00
|
|
|
for (i = 0; i < NUM_ECC_WORDS; ++i) {
|
2019-04-24 14:40:43 +02:00
|
|
|
bits |= vli[i];
|
|
|
|
}
|
|
|
|
return (bits == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
uECC_word_t uECC_vli_testBit(const uECC_word_t *vli, bitcount_t bit)
|
|
|
|
{
|
|
|
|
return (vli[bit >> uECC_WORD_BITS_SHIFT] &
|
|
|
|
((uECC_word_t)1 << (bit & uECC_WORD_BITS_MASK)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Counts the number of words in vli. */
|
2019-11-04 12:56:59 +01:00
|
|
|
static wordcount_t vli_numDigits(const uECC_word_t *vli)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
wordcount_t i;
|
|
|
|
/* Search from the end until we find a non-zero digit. We do it in reverse
|
|
|
|
* because we expect that most digits will be nonzero. */
|
2019-11-04 12:56:59 +01:00
|
|
|
for (i = NUM_ECC_WORDS - 1; i >= 0 && vli[i] == 0; --i) {
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return (i + 1);
|
|
|
|
}
|
|
|
|
|
2019-11-04 12:56:59 +01:00
|
|
|
bitcount_t uECC_vli_numBits(const uECC_word_t *vli)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
uECC_word_t i;
|
|
|
|
uECC_word_t digit;
|
|
|
|
|
2019-11-04 12:56:59 +01:00
|
|
|
wordcount_t num_digits = vli_numDigits(vli);
|
2019-04-24 14:40:43 +02:00
|
|
|
if (num_digits == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
digit = vli[num_digits - 1];
|
|
|
|
for (i = 0; digit; ++i) {
|
|
|
|
digit >>= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (((bitcount_t)(num_digits - 1) << uECC_WORD_BITS_SHIFT) + i);
|
|
|
|
}
|
|
|
|
|
2019-11-04 13:02:04 +01:00
|
|
|
void uECC_vli_set(uECC_word_t *dest, const uECC_word_t *src)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
wordcount_t i;
|
|
|
|
|
2019-11-04 13:02:04 +01:00
|
|
|
for (i = 0; i < NUM_ECC_WORDS; ++i) {
|
2019-04-24 14:40:43 +02:00
|
|
|
dest[i] = src[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cmpresult_t uECC_vli_cmp_unsafe(const uECC_word_t *left,
|
2019-11-04 14:31:35 +01:00
|
|
|
const uECC_word_t *right)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
wordcount_t i;
|
|
|
|
|
2019-11-04 14:31:35 +01:00
|
|
|
for (i = NUM_ECC_WORDS - 1; i >= 0; --i) {
|
2019-04-24 14:40:43 +02:00
|
|
|
if (left[i] > right[i]) {
|
|
|
|
return 1;
|
|
|
|
} else if (left[i] < right[i]) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-11-04 14:33:09 +01:00
|
|
|
uECC_word_t uECC_vli_equal(const uECC_word_t *left, const uECC_word_t *right)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
uECC_word_t diff = 0;
|
|
|
|
wordcount_t i;
|
|
|
|
|
2019-11-04 14:33:09 +01:00
|
|
|
for (i = NUM_ECC_WORDS - 1; i >= 0; --i) {
|
2019-04-24 14:40:43 +02:00
|
|
|
diff |= (left[i] ^ right[i]);
|
|
|
|
}
|
2019-11-06 10:42:02 +01:00
|
|
|
return diff;
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
uECC_word_t cond_set(uECC_word_t p_true, uECC_word_t p_false, unsigned int cond)
|
|
|
|
{
|
|
|
|
return (p_true*(cond)) | (p_false*(!cond));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Computes result = left - right, returning borrow, in constant time.
|
|
|
|
* Can modify in place. */
|
|
|
|
uECC_word_t uECC_vli_sub(uECC_word_t *result, const uECC_word_t *left,
|
2019-11-04 14:41:45 +01:00
|
|
|
const uECC_word_t *right)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
uECC_word_t borrow = 0;
|
|
|
|
wordcount_t i;
|
2019-11-04 14:41:45 +01:00
|
|
|
for (i = 0; i < NUM_ECC_WORDS; ++i) {
|
2019-04-24 14:40:43 +02:00
|
|
|
uECC_word_t diff = left[i] - right[i] - borrow;
|
|
|
|
uECC_word_t val = (diff > left[i]);
|
|
|
|
borrow = cond_set(val, borrow, (diff != left[i]));
|
|
|
|
|
|
|
|
result[i] = diff;
|
|
|
|
}
|
|
|
|
return borrow;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Computes result = left + right, returning carry, in constant time.
|
|
|
|
* Can modify in place. */
|
|
|
|
static uECC_word_t uECC_vli_add(uECC_word_t *result, const uECC_word_t *left,
|
2019-11-04 12:37:08 +01:00
|
|
|
const uECC_word_t *right)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
uECC_word_t carry = 0;
|
|
|
|
wordcount_t i;
|
2019-11-04 12:37:08 +01:00
|
|
|
for (i = 0; i < NUM_ECC_WORDS; ++i) {
|
2019-04-24 14:40:43 +02:00
|
|
|
uECC_word_t sum = left[i] + right[i] + carry;
|
|
|
|
uECC_word_t val = (sum < left[i]);
|
|
|
|
carry = cond_set(val, carry, (sum != left[i]));
|
|
|
|
result[i] = sum;
|
|
|
|
}
|
|
|
|
return carry;
|
|
|
|
}
|
|
|
|
|
2019-11-04 14:43:35 +01:00
|
|
|
cmpresult_t uECC_vli_cmp(const uECC_word_t *left, const uECC_word_t *right)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
uECC_word_t tmp[NUM_ECC_WORDS];
|
2019-11-04 14:41:45 +01:00
|
|
|
uECC_word_t neg = !!uECC_vli_sub(tmp, left, right);
|
2019-11-04 12:44:43 +01:00
|
|
|
uECC_word_t equal = uECC_vli_isZero(tmp);
|
2019-04-24 14:40:43 +02:00
|
|
|
return (!equal - 2 * neg);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Computes vli = vli >> 1. */
|
2019-11-04 14:46:10 +01:00
|
|
|
static void uECC_vli_rshift1(uECC_word_t *vli)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
uECC_word_t *end = vli;
|
|
|
|
uECC_word_t carry = 0;
|
|
|
|
|
2019-11-04 14:46:10 +01:00
|
|
|
vli += NUM_ECC_WORDS;
|
2019-04-24 14:40:43 +02:00
|
|
|
while (vli-- > end) {
|
|
|
|
uECC_word_t temp = *vli;
|
|
|
|
*vli = (temp >> 1) | carry;
|
|
|
|
carry = temp << (uECC_WORD_BITS - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-31 13:02:03 +01:00
|
|
|
/* Compute a * b + r, where r is a double-word with high-order word r1 and
|
|
|
|
* low-order word r0, and store the result in the same double-word (r1, r0),
|
|
|
|
* with the carry bit stored in r2.
|
|
|
|
*
|
|
|
|
* (r2, r1, r0) = a * b + (r1, r0):
|
2019-10-22 09:49:53 +02:00
|
|
|
* [in] a, b: operands to be multiplied
|
|
|
|
* [in] r0, r1: low and high-order words of operand to add
|
|
|
|
* [out] r0, r1: low and high-order words of the result
|
|
|
|
* [out] r2: carry
|
|
|
|
*/
|
2019-04-24 14:40:43 +02:00
|
|
|
static void muladd(uECC_word_t a, uECC_word_t b, uECC_word_t *r0,
|
|
|
|
uECC_word_t *r1, uECC_word_t *r2)
|
|
|
|
{
|
|
|
|
|
|
|
|
uECC_dword_t p = (uECC_dword_t)a * b;
|
|
|
|
uECC_dword_t r01 = ((uECC_dword_t)(*r1) << uECC_WORD_BITS) | *r0;
|
|
|
|
r01 += p;
|
|
|
|
*r2 += (r01 < p);
|
|
|
|
*r1 = r01 >> uECC_WORD_BITS;
|
|
|
|
*r0 = (uECC_word_t)r01;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-10-22 09:49:53 +02:00
|
|
|
/* State for implementing random delays in uECC_vli_mult_rnd().
|
|
|
|
*
|
2019-10-31 11:26:26 +01:00
|
|
|
* The state is initialized by randomizing delays and setting i = 0.
|
2019-10-22 09:49:53 +02:00
|
|
|
* Each call to uECC_vli_mult_rnd() uses one byte of delays and increments i.
|
|
|
|
*
|
2019-10-31 11:26:26 +01:00
|
|
|
* Randomized vli multiplication is used only for point operations
|
|
|
|
* (XYcZ_add_rnd() * and XYcZ_addC_rnd()) in scalar multiplication
|
|
|
|
* (ECCPoint_mult()). Those go in pair, and each pair does 14 calls to
|
|
|
|
* uECC_vli_mult_rnd() (6 in XYcZ_add_rnd() and 8 in XYcZ_addC_rnd(),
|
2019-11-04 10:18:42 +01:00
|
|
|
* indirectly through uECC_vli_modMult_rnd().
|
2019-10-31 11:26:26 +01:00
|
|
|
*
|
|
|
|
* Considering this, in order to minimize the number of calls to the RNG
|
|
|
|
* (which impact performance) while keeping the size of the structure low,
|
|
|
|
* make room for 14 randomized vli mults, which corresponds to one step in the
|
|
|
|
* scalar multiplication routine.
|
2019-10-22 09:49:53 +02:00
|
|
|
*/
|
|
|
|
typedef struct {
|
2019-10-31 11:26:26 +01:00
|
|
|
uint8_t i;
|
|
|
|
uint8_t delays[14];
|
2019-10-31 12:53:44 +01:00
|
|
|
} ecc_wait_state_t;
|
2019-10-22 09:49:53 +02:00
|
|
|
|
2019-10-31 11:26:26 +01:00
|
|
|
/*
|
|
|
|
* Reset wait_state so that it's ready to be used.
|
|
|
|
*/
|
2019-10-31 12:53:44 +01:00
|
|
|
void ecc_wait_state_reset(ecc_wait_state_t *ws)
|
2019-10-31 11:26:26 +01:00
|
|
|
{
|
|
|
|
if (ws == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ws->i = 0;
|
|
|
|
g_rng_function(ws->delays, sizeof(ws->delays));
|
|
|
|
}
|
|
|
|
|
2019-10-22 09:49:53 +02:00
|
|
|
/* Computes result = left * right. Result must be 2 * num_words long.
|
|
|
|
*
|
|
|
|
* As a counter-measure against horizontal attacks, add noise by performing
|
|
|
|
* a random number of extra computations performing random additional accesses
|
|
|
|
* to limbs of the input.
|
|
|
|
*
|
|
|
|
* Each of the two actual computation loops is surrounded by two
|
|
|
|
* similar-looking waiting loops, to make the beginning and end of the actual
|
|
|
|
* computation harder to spot.
|
|
|
|
*
|
|
|
|
* We add 4 waiting loops of between 0 and 3 calls to muladd() each. That
|
|
|
|
* makes an average of 6 extra calls. Compared to the main computation which
|
|
|
|
* makes 64 such calls, this represents an average performance degradation of
|
|
|
|
* less than 10%.
|
|
|
|
*
|
|
|
|
* Compared to the original uECC_vli_mult(), loose the num_words argument as we
|
|
|
|
* know it's always 8. This saves a bit of code size and execution speed.
|
|
|
|
*/
|
|
|
|
static void uECC_vli_mult_rnd(uECC_word_t *result, const uECC_word_t *left,
|
2019-10-31 12:53:44 +01:00
|
|
|
const uECC_word_t *right, ecc_wait_state_t *s)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
uECC_word_t r0 = 0;
|
|
|
|
uECC_word_t r1 = 0;
|
|
|
|
uECC_word_t r2 = 0;
|
|
|
|
wordcount_t i, k;
|
2019-11-04 12:31:06 +01:00
|
|
|
const uint8_t num_words = NUM_ECC_WORDS;
|
2019-10-22 09:49:53 +02:00
|
|
|
|
|
|
|
/* Fetch 8 bit worth of delay from the state; 0 if we have no state */
|
|
|
|
uint8_t delays = s ? s->delays[s->i++] : 0;
|
|
|
|
uECC_word_t rr0 = 0, rr1 = 0;
|
|
|
|
volatile uECC_word_t r;
|
|
|
|
|
|
|
|
/* Mimic start of next loop: k in [0, 3] */
|
|
|
|
k = 0 + (delays & 0x03);
|
|
|
|
delays >>= 2;
|
|
|
|
/* k = 0 -> i in [1, 0] -> 0 extra muladd;
|
|
|
|
* k = 3 -> i in [1, 3] -> 3 extra muladd */
|
2019-11-05 10:32:37 +01:00
|
|
|
for (i = 1; i <= k; ++i) {
|
2019-10-22 09:49:53 +02:00
|
|
|
muladd(left[i], right[k - i], &rr0, &rr1, &r2);
|
|
|
|
}
|
|
|
|
r = rr0;
|
|
|
|
rr0 = rr1;
|
|
|
|
rr1 = r2;
|
|
|
|
r2 = 0;
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
/* Compute each digit of result in sequence, maintaining the carries. */
|
|
|
|
for (k = 0; k < num_words; ++k) {
|
|
|
|
|
|
|
|
for (i = 0; i <= k; ++i) {
|
|
|
|
muladd(left[i], right[k - i], &r0, &r1, &r2);
|
|
|
|
}
|
|
|
|
|
|
|
|
result[k] = r0;
|
|
|
|
r0 = r1;
|
|
|
|
r1 = r2;
|
|
|
|
r2 = 0;
|
|
|
|
}
|
|
|
|
|
2019-10-22 09:49:53 +02:00
|
|
|
/* Mimic end of previous loop: k in [4, 7] */
|
|
|
|
k = 4 + (delays & 0x03);
|
|
|
|
delays >>= 2;
|
|
|
|
/* k = 4 -> i in [5, 4] -> 0 extra muladd;
|
|
|
|
* k = 7 -> i in [5, 7] -> 3 extra muladd */
|
|
|
|
for (i = 5; i <= k; ++i) {
|
|
|
|
muladd(left[i], right[k - i], &rr0, &rr1, &r2);
|
|
|
|
}
|
|
|
|
r = rr0;
|
|
|
|
rr0 = rr1;
|
|
|
|
rr1 = r2;
|
|
|
|
r2 = 0;
|
|
|
|
|
|
|
|
/* Mimic start of next loop: k in [8, 11] */
|
|
|
|
k = 11 - (delays & 0x03);
|
|
|
|
delays >>= 2;
|
|
|
|
/* k = 8 -> i in [5, 7] -> 3 extra muladd;
|
|
|
|
* k = 11 -> i in [8, 7] -> 0 extra muladd */
|
|
|
|
for (i = (k + 5) - num_words; i < num_words; ++i) {
|
|
|
|
muladd(left[i], right[k - i], &rr0, &rr1, &r2);
|
|
|
|
}
|
|
|
|
r = rr0;
|
|
|
|
rr0 = rr1;
|
|
|
|
rr1 = r2;
|
|
|
|
r2 = 0;
|
|
|
|
|
2019-04-24 14:40:43 +02:00
|
|
|
for (k = num_words; k < num_words * 2 - 1; ++k) {
|
|
|
|
|
|
|
|
for (i = (k + 1) - num_words; i < num_words; ++i) {
|
|
|
|
muladd(left[i], right[k - i], &r0, &r1, &r2);
|
|
|
|
}
|
|
|
|
result[k] = r0;
|
|
|
|
r0 = r1;
|
|
|
|
r1 = r2;
|
|
|
|
r2 = 0;
|
|
|
|
}
|
2019-10-22 09:49:53 +02:00
|
|
|
|
2019-04-24 14:40:43 +02:00
|
|
|
result[num_words * 2 - 1] = r0;
|
2019-10-22 09:49:53 +02:00
|
|
|
|
|
|
|
/* Mimic end of previous loop: k in [12, 15] */
|
|
|
|
k = 15 - (delays & 0x03);
|
|
|
|
delays >>= 2;
|
|
|
|
/* k = 12 -> i in [5, 7] -> 3 extra muladd;
|
|
|
|
* k = 15 -> i in [8, 7] -> 0 extra muladd */
|
|
|
|
for (i = (k + 1) - num_words; i < num_words; ++i) {
|
|
|
|
muladd(left[i], right[k - i], &rr0, &rr1, &r2);
|
|
|
|
}
|
|
|
|
r = rr0;
|
|
|
|
rr0 = rr1;
|
|
|
|
rr1 = r2;
|
|
|
|
r2 = 0;
|
|
|
|
|
|
|
|
/* avoid warning that r is set but not used */
|
|
|
|
(void) r;
|
|
|
|
}
|
|
|
|
|
2019-04-24 14:40:43 +02:00
|
|
|
void uECC_vli_modAdd(uECC_word_t *result, const uECC_word_t *left,
|
2019-11-04 14:48:22 +01:00
|
|
|
const uECC_word_t *right, const uECC_word_t *mod)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
2019-11-04 12:37:08 +01:00
|
|
|
uECC_word_t carry = uECC_vli_add(result, left, right);
|
2019-11-04 14:31:35 +01:00
|
|
|
if (carry || uECC_vli_cmp_unsafe(mod, result) != 1) {
|
2019-04-24 14:40:43 +02:00
|
|
|
/* result > mod (result = mod + remainder), so subtract mod to get
|
|
|
|
* remainder. */
|
2019-11-04 14:41:45 +01:00
|
|
|
uECC_vli_sub(result, result, mod);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void uECC_vli_modSub(uECC_word_t *result, const uECC_word_t *left,
|
2019-11-04 14:50:54 +01:00
|
|
|
const uECC_word_t *right, const uECC_word_t *mod)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
2019-11-04 14:41:45 +01:00
|
|
|
uECC_word_t l_borrow = uECC_vli_sub(result, left, right);
|
2019-04-24 14:40:43 +02:00
|
|
|
if (l_borrow) {
|
|
|
|
/* In this case, result == -diff == (max int) - diff. Since -x % d == d - x,
|
|
|
|
* we can get the correct result from result + mod (with overflow). */
|
2019-11-04 12:37:08 +01:00
|
|
|
uECC_vli_add(result, result, mod);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Computes result = product % mod, where product is 2N words long. */
|
|
|
|
/* Currently only designed to work for curve_p or curve_n. */
|
|
|
|
void uECC_vli_mmod(uECC_word_t *result, uECC_word_t *product,
|
2019-11-04 14:57:53 +01:00
|
|
|
const uECC_word_t *mod)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
uECC_word_t mod_multiple[2 * NUM_ECC_WORDS];
|
|
|
|
uECC_word_t tmp[2 * NUM_ECC_WORDS];
|
|
|
|
uECC_word_t *v[2] = {tmp, product};
|
|
|
|
uECC_word_t index;
|
2019-11-04 14:57:53 +01:00
|
|
|
const wordcount_t num_words = NUM_ECC_WORDS;
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
/* Shift mod so its highest set bit is at the maximum position. */
|
|
|
|
bitcount_t shift = (num_words * 2 * uECC_WORD_BITS) -
|
2019-11-04 12:56:59 +01:00
|
|
|
uECC_vli_numBits(mod);
|
2019-04-24 14:40:43 +02:00
|
|
|
wordcount_t word_shift = shift / uECC_WORD_BITS;
|
|
|
|
wordcount_t bit_shift = shift % uECC_WORD_BITS;
|
|
|
|
uECC_word_t carry = 0;
|
2019-11-04 12:47:28 +01:00
|
|
|
uECC_vli_clear(mod_multiple);
|
2019-04-24 14:40:43 +02:00
|
|
|
if (bit_shift > 0) {
|
|
|
|
for(index = 0; index < (uECC_word_t)num_words; ++index) {
|
|
|
|
mod_multiple[word_shift + index] = (mod[index] << bit_shift) | carry;
|
|
|
|
carry = mod[index] >> (uECC_WORD_BITS - bit_shift);
|
|
|
|
}
|
|
|
|
} else {
|
2019-11-04 13:02:04 +01:00
|
|
|
uECC_vli_set(mod_multiple + word_shift, mod);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (index = 1; shift >= 0; --shift) {
|
|
|
|
uECC_word_t borrow = 0;
|
|
|
|
wordcount_t i;
|
|
|
|
for (i = 0; i < num_words * 2; ++i) {
|
|
|
|
uECC_word_t diff = v[index][i] - mod_multiple[i] - borrow;
|
|
|
|
if (diff != v[index][i]) {
|
|
|
|
borrow = (diff > v[index][i]);
|
|
|
|
}
|
|
|
|
v[1 - index][i] = diff;
|
|
|
|
}
|
|
|
|
/* Swap the index if there was no borrow */
|
|
|
|
index = !(index ^ borrow);
|
2019-11-04 14:46:10 +01:00
|
|
|
uECC_vli_rshift1(mod_multiple);
|
2019-04-24 14:40:43 +02:00
|
|
|
mod_multiple[num_words - 1] |= mod_multiple[num_words] <<
|
|
|
|
(uECC_WORD_BITS - 1);
|
2019-11-04 14:46:10 +01:00
|
|
|
uECC_vli_rshift1(mod_multiple + num_words);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
2019-11-04 13:02:04 +01:00
|
|
|
uECC_vli_set(result, v[index]);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void uECC_vli_modMult(uECC_word_t *result, const uECC_word_t *left,
|
2019-11-04 15:00:43 +01:00
|
|
|
const uECC_word_t *right, const uECC_word_t *mod)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
uECC_word_t product[2 * NUM_ECC_WORDS];
|
2019-11-04 10:18:42 +01:00
|
|
|
uECC_vli_mult_rnd(product, left, right, NULL);
|
2019-11-04 14:57:53 +01:00
|
|
|
uECC_vli_mmod(result, product, mod);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
2019-10-29 11:23:43 +01:00
|
|
|
static void uECC_vli_modMult_rnd(uECC_word_t *result, const uECC_word_t *left,
|
2019-10-31 12:53:44 +01:00
|
|
|
const uECC_word_t *right, ecc_wait_state_t *s)
|
2019-10-29 11:23:43 +01:00
|
|
|
{
|
|
|
|
uECC_word_t product[2 * NUM_ECC_WORDS];
|
|
|
|
uECC_vli_mult_rnd(product, left, right, s);
|
|
|
|
|
|
|
|
vli_mmod_fast_secp256r1(result, product);
|
|
|
|
}
|
|
|
|
|
2019-04-24 14:40:43 +02:00
|
|
|
void uECC_vli_modMult_fast(uECC_word_t *result, const uECC_word_t *left,
|
2019-11-04 12:12:00 +01:00
|
|
|
const uECC_word_t *right)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
2019-11-04 12:12:00 +01:00
|
|
|
uECC_vli_modMult_rnd(result, left, right, NULL);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#define EVEN(vli) (!(vli[0] & 1))
|
|
|
|
|
|
|
|
static void vli_modInv_update(uECC_word_t *uv,
|
2019-11-04 15:04:20 +01:00
|
|
|
const uECC_word_t *mod)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
uECC_word_t carry = 0;
|
|
|
|
|
|
|
|
if (!EVEN(uv)) {
|
2019-11-04 12:37:08 +01:00
|
|
|
carry = uECC_vli_add(uv, uv, mod);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
2019-11-04 14:46:10 +01:00
|
|
|
uECC_vli_rshift1(uv);
|
2019-04-24 14:40:43 +02:00
|
|
|
if (carry) {
|
2019-11-04 15:04:20 +01:00
|
|
|
uv[NUM_ECC_WORDS - 1] |= HIGH_BIT_SET;
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void uECC_vli_modInv(uECC_word_t *result, const uECC_word_t *input,
|
2019-11-04 15:04:20 +01:00
|
|
|
const uECC_word_t *mod)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
uECC_word_t a[NUM_ECC_WORDS], b[NUM_ECC_WORDS];
|
|
|
|
uECC_word_t u[NUM_ECC_WORDS], v[NUM_ECC_WORDS];
|
|
|
|
cmpresult_t cmpResult;
|
|
|
|
|
2019-11-04 12:44:43 +01:00
|
|
|
if (uECC_vli_isZero(input)) {
|
2019-11-04 12:47:28 +01:00
|
|
|
uECC_vli_clear(result);
|
2019-04-24 14:40:43 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-04 13:02:04 +01:00
|
|
|
uECC_vli_set(a, input);
|
|
|
|
uECC_vli_set(b, mod);
|
2019-11-04 12:47:28 +01:00
|
|
|
uECC_vli_clear(u);
|
2019-04-24 14:40:43 +02:00
|
|
|
u[0] = 1;
|
2019-11-04 12:47:28 +01:00
|
|
|
uECC_vli_clear(v);
|
2019-11-04 14:31:35 +01:00
|
|
|
while ((cmpResult = uECC_vli_cmp_unsafe(a, b)) != 0) {
|
2019-04-24 14:40:43 +02:00
|
|
|
if (EVEN(a)) {
|
2019-11-04 14:46:10 +01:00
|
|
|
uECC_vli_rshift1(a);
|
2019-11-04 15:04:20 +01:00
|
|
|
vli_modInv_update(u, mod);
|
2019-04-24 14:40:43 +02:00
|
|
|
} else if (EVEN(b)) {
|
2019-11-04 14:46:10 +01:00
|
|
|
uECC_vli_rshift1(b);
|
2019-11-04 15:04:20 +01:00
|
|
|
vli_modInv_update(v, mod);
|
2019-04-24 14:40:43 +02:00
|
|
|
} else if (cmpResult > 0) {
|
2019-11-04 14:41:45 +01:00
|
|
|
uECC_vli_sub(a, a, b);
|
2019-11-04 14:46:10 +01:00
|
|
|
uECC_vli_rshift1(a);
|
2019-11-04 14:31:35 +01:00
|
|
|
if (uECC_vli_cmp_unsafe(u, v) < 0) {
|
2019-11-04 12:37:08 +01:00
|
|
|
uECC_vli_add(u, u, mod);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
2019-11-04 14:41:45 +01:00
|
|
|
uECC_vli_sub(u, u, v);
|
2019-11-04 15:04:20 +01:00
|
|
|
vli_modInv_update(u, mod);
|
2019-04-24 14:40:43 +02:00
|
|
|
} else {
|
2019-11-04 14:41:45 +01:00
|
|
|
uECC_vli_sub(b, b, a);
|
2019-11-04 14:46:10 +01:00
|
|
|
uECC_vli_rshift1(b);
|
2019-11-04 14:31:35 +01:00
|
|
|
if (uECC_vli_cmp_unsafe(v, u) < 0) {
|
2019-11-04 12:37:08 +01:00
|
|
|
uECC_vli_add(v, v, mod);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
2019-11-04 14:41:45 +01:00
|
|
|
uECC_vli_sub(v, v, u);
|
2019-11-04 15:04:20 +01:00
|
|
|
vli_modInv_update(v, mod);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
}
|
2019-11-04 13:02:04 +01:00
|
|
|
uECC_vli_set(result, u);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ------ Point operations ------ */
|
|
|
|
|
|
|
|
void double_jacobian_default(uECC_word_t * X1, uECC_word_t * Y1,
|
|
|
|
uECC_word_t * Z1, uECC_Curve curve)
|
|
|
|
{
|
|
|
|
/* t1 = X, t2 = Y, t3 = Z */
|
|
|
|
uECC_word_t t4[NUM_ECC_WORDS];
|
|
|
|
uECC_word_t t5[NUM_ECC_WORDS];
|
2019-11-21 09:27:38 +01:00
|
|
|
wordcount_t num_words = NUM_ECC_WORDS;
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-21 10:02:58 +01:00
|
|
|
(void) curve;
|
|
|
|
|
2019-11-04 12:44:43 +01:00
|
|
|
if (uECC_vli_isZero(Z1)) {
|
2019-04-24 14:40:43 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-04 12:12:00 +01:00
|
|
|
uECC_vli_modMult_fast(t4, Y1, Y1); /* t4 = y1^2 */
|
|
|
|
uECC_vli_modMult_fast(t5, X1, t4); /* t5 = x1*y1^2 = A */
|
|
|
|
uECC_vli_modMult_fast(t4, t4, t4); /* t4 = y1^4 */
|
|
|
|
uECC_vli_modMult_fast(Y1, Y1, Z1); /* t2 = y1*z1 = z3 */
|
|
|
|
uECC_vli_modMult_fast(Z1, Z1, Z1); /* t3 = z1^2 */
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modAdd(X1, X1, Z1, curve_p); /* t1 = x1 + z1^2 */
|
|
|
|
uECC_vli_modAdd(Z1, Z1, Z1, curve_p); /* t3 = 2*z1^2 */
|
|
|
|
uECC_vli_modSub(Z1, X1, Z1, curve_p); /* t3 = x1 - z1^2 */
|
2019-11-04 12:12:00 +01:00
|
|
|
uECC_vli_modMult_fast(X1, X1, Z1); /* t1 = x1^2 - z1^4 */
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modAdd(Z1, X1, X1, curve_p); /* t3 = 2*(x1^2 - z1^4) */
|
|
|
|
uECC_vli_modAdd(X1, X1, Z1, curve_p); /* t1 = 3*(x1^2 - z1^4) */
|
2019-04-24 14:40:43 +02:00
|
|
|
if (uECC_vli_testBit(X1, 0)) {
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_word_t l_carry = uECC_vli_add(X1, X1, curve_p);
|
2019-11-04 14:46:10 +01:00
|
|
|
uECC_vli_rshift1(X1);
|
2019-04-24 14:40:43 +02:00
|
|
|
X1[num_words - 1] |= l_carry << (uECC_WORD_BITS - 1);
|
|
|
|
} else {
|
2019-11-04 14:46:10 +01:00
|
|
|
uECC_vli_rshift1(X1);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* t1 = 3/2*(x1^2 - z1^4) = B */
|
2019-11-04 12:12:00 +01:00
|
|
|
uECC_vli_modMult_fast(Z1, X1, X1); /* t3 = B^2 */
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modSub(Z1, Z1, t5, curve_p); /* t3 = B^2 - A */
|
|
|
|
uECC_vli_modSub(Z1, Z1, t5, curve_p); /* t3 = B^2 - 2A = x3 */
|
|
|
|
uECC_vli_modSub(t5, t5, Z1, curve_p); /* t5 = A - x3 */
|
2019-11-04 12:12:00 +01:00
|
|
|
uECC_vli_modMult_fast(X1, X1, t5); /* t1 = B * (A - x3) */
|
2019-04-24 14:40:43 +02:00
|
|
|
/* t4 = B * (A - x3) - y1^4 = y3: */
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modSub(t4, X1, t4, curve_p);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-04 13:02:04 +01:00
|
|
|
uECC_vli_set(X1, Z1);
|
|
|
|
uECC_vli_set(Z1, Y1);
|
|
|
|
uECC_vli_set(Y1, t4);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
2019-11-21 09:18:29 +01:00
|
|
|
/*
|
|
|
|
* @brief Computes x^3 + ax + b. result must not overlap x.
|
|
|
|
* @param result OUT -- x^3 + ax + b
|
|
|
|
* @param x IN -- value of x
|
|
|
|
* @param curve IN -- elliptic curve
|
|
|
|
*/
|
|
|
|
static void x_side_default(uECC_word_t *result,
|
2019-04-24 14:40:43 +02:00
|
|
|
const uECC_word_t *x,
|
|
|
|
uECC_Curve curve)
|
|
|
|
{
|
|
|
|
uECC_word_t _3[NUM_ECC_WORDS] = {3}; /* -a = 3 */
|
|
|
|
|
2019-11-04 12:12:00 +01:00
|
|
|
uECC_vli_modMult_fast(result, x, x); /* r = x^2 */
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modSub(result, result, _3, curve_p); /* r = x^2 - 3 */
|
2019-11-04 12:12:00 +01:00
|
|
|
uECC_vli_modMult_fast(result, result, x); /* r = x^3 - 3x */
|
2019-04-24 14:40:43 +02:00
|
|
|
/* r = x^3 - 3x + b: */
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modAdd(result, result, curve->b, curve_p);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
uECC_Curve uECC_secp256r1(void)
|
|
|
|
{
|
|
|
|
return &curve_secp256r1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void vli_mmod_fast_secp256r1(unsigned int *result, unsigned int*product)
|
|
|
|
{
|
|
|
|
unsigned int tmp[NUM_ECC_WORDS];
|
|
|
|
int carry;
|
|
|
|
|
|
|
|
/* t */
|
2019-11-04 13:02:04 +01:00
|
|
|
uECC_vli_set(result, product);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
/* s1 */
|
|
|
|
tmp[0] = tmp[1] = tmp[2] = 0;
|
|
|
|
tmp[3] = product[11];
|
|
|
|
tmp[4] = product[12];
|
|
|
|
tmp[5] = product[13];
|
|
|
|
tmp[6] = product[14];
|
|
|
|
tmp[7] = product[15];
|
2019-11-04 12:37:08 +01:00
|
|
|
carry = uECC_vli_add(tmp, tmp, tmp);
|
|
|
|
carry += uECC_vli_add(result, result, tmp);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
/* s2 */
|
|
|
|
tmp[3] = product[12];
|
|
|
|
tmp[4] = product[13];
|
|
|
|
tmp[5] = product[14];
|
|
|
|
tmp[6] = product[15];
|
|
|
|
tmp[7] = 0;
|
2019-11-04 12:37:08 +01:00
|
|
|
carry += uECC_vli_add(tmp, tmp, tmp);
|
|
|
|
carry += uECC_vli_add(result, result, tmp);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
/* s3 */
|
|
|
|
tmp[0] = product[8];
|
|
|
|
tmp[1] = product[9];
|
|
|
|
tmp[2] = product[10];
|
|
|
|
tmp[3] = tmp[4] = tmp[5] = 0;
|
|
|
|
tmp[6] = product[14];
|
|
|
|
tmp[7] = product[15];
|
2019-11-04 12:37:08 +01:00
|
|
|
carry += uECC_vli_add(result, result, tmp);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
/* s4 */
|
|
|
|
tmp[0] = product[9];
|
|
|
|
tmp[1] = product[10];
|
|
|
|
tmp[2] = product[11];
|
|
|
|
tmp[3] = product[13];
|
|
|
|
tmp[4] = product[14];
|
|
|
|
tmp[5] = product[15];
|
|
|
|
tmp[6] = product[13];
|
|
|
|
tmp[7] = product[8];
|
2019-11-04 12:37:08 +01:00
|
|
|
carry += uECC_vli_add(result, result, tmp);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
/* d1 */
|
|
|
|
tmp[0] = product[11];
|
|
|
|
tmp[1] = product[12];
|
|
|
|
tmp[2] = product[13];
|
|
|
|
tmp[3] = tmp[4] = tmp[5] = 0;
|
|
|
|
tmp[6] = product[8];
|
|
|
|
tmp[7] = product[10];
|
2019-11-04 14:41:45 +01:00
|
|
|
carry -= uECC_vli_sub(result, result, tmp);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
/* d2 */
|
|
|
|
tmp[0] = product[12];
|
|
|
|
tmp[1] = product[13];
|
|
|
|
tmp[2] = product[14];
|
|
|
|
tmp[3] = product[15];
|
|
|
|
tmp[4] = tmp[5] = 0;
|
|
|
|
tmp[6] = product[9];
|
|
|
|
tmp[7] = product[11];
|
2019-11-04 14:41:45 +01:00
|
|
|
carry -= uECC_vli_sub(result, result, tmp);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
/* d3 */
|
|
|
|
tmp[0] = product[13];
|
|
|
|
tmp[1] = product[14];
|
|
|
|
tmp[2] = product[15];
|
|
|
|
tmp[3] = product[8];
|
|
|
|
tmp[4] = product[9];
|
|
|
|
tmp[5] = product[10];
|
|
|
|
tmp[6] = 0;
|
|
|
|
tmp[7] = product[12];
|
2019-11-04 14:41:45 +01:00
|
|
|
carry -= uECC_vli_sub(result, result, tmp);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
/* d4 */
|
|
|
|
tmp[0] = product[14];
|
|
|
|
tmp[1] = product[15];
|
|
|
|
tmp[2] = 0;
|
|
|
|
tmp[3] = product[9];
|
|
|
|
tmp[4] = product[10];
|
|
|
|
tmp[5] = product[11];
|
|
|
|
tmp[6] = 0;
|
|
|
|
tmp[7] = product[13];
|
2019-11-04 14:41:45 +01:00
|
|
|
carry -= uECC_vli_sub(result, result, tmp);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
if (carry < 0) {
|
|
|
|
do {
|
2019-11-21 10:02:58 +01:00
|
|
|
carry += uECC_vli_add(result, result, curve_p);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
while (carry < 0);
|
|
|
|
} else {
|
|
|
|
while (carry ||
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_cmp_unsafe(curve_p, result) != 1) {
|
|
|
|
carry -= uECC_vli_sub(result, result, curve_p);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uECC_word_t EccPoint_isZero(const uECC_word_t *point, uECC_Curve curve)
|
|
|
|
{
|
2019-11-04 12:44:43 +01:00
|
|
|
(void) curve;
|
|
|
|
return uECC_vli_isZero(point);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
2019-11-04 12:12:00 +01:00
|
|
|
void apply_z(uECC_word_t * X1, uECC_word_t * Y1, const uECC_word_t * const Z)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
uECC_word_t t1[NUM_ECC_WORDS];
|
|
|
|
|
2019-11-04 12:12:00 +01:00
|
|
|
uECC_vli_modMult_fast(t1, Z, Z); /* z^2 */
|
|
|
|
uECC_vli_modMult_fast(X1, X1, t1); /* x1 * z^2 */
|
|
|
|
uECC_vli_modMult_fast(t1, t1, Z); /* z^3 */
|
|
|
|
uECC_vli_modMult_fast(Y1, Y1, t1); /* y1 * z^3 */
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* P = (x1, y1) => 2P, (x2, y2) => P' */
|
|
|
|
static void XYcZ_initial_double(uECC_word_t * X1, uECC_word_t * Y1,
|
|
|
|
uECC_word_t * X2, uECC_word_t * Y2,
|
|
|
|
const uECC_word_t * const initial_Z,
|
|
|
|
uECC_Curve curve)
|
|
|
|
{
|
|
|
|
uECC_word_t z[NUM_ECC_WORDS];
|
|
|
|
if (initial_Z) {
|
2019-11-04 13:02:04 +01:00
|
|
|
uECC_vli_set(z, initial_Z);
|
2019-04-24 14:40:43 +02:00
|
|
|
} else {
|
2019-11-04 12:47:28 +01:00
|
|
|
uECC_vli_clear(z);
|
2019-04-24 14:40:43 +02:00
|
|
|
z[0] = 1;
|
|
|
|
}
|
|
|
|
|
2019-11-04 13:02:04 +01:00
|
|
|
uECC_vli_set(X2, X1);
|
|
|
|
uECC_vli_set(Y2, Y1);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-04 12:12:00 +01:00
|
|
|
apply_z(X1, Y1, z);
|
2019-11-21 09:18:29 +01:00
|
|
|
double_jacobian_default(X1, Y1, z, curve);
|
2019-11-04 12:12:00 +01:00
|
|
|
apply_z(X2, Y2, z);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
2019-10-29 11:23:43 +01:00
|
|
|
static void XYcZ_add_rnd(uECC_word_t * X1, uECC_word_t * Y1,
|
|
|
|
uECC_word_t * X2, uECC_word_t * Y2,
|
2019-10-31 12:53:44 +01:00
|
|
|
ecc_wait_state_t *s)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
/* t1 = X1, t2 = Y1, t3 = X2, t4 = Y2 */
|
|
|
|
uECC_word_t t5[NUM_ECC_WORDS];
|
2019-10-29 11:23:43 +01:00
|
|
|
const uECC_Curve curve = &curve_secp256r1;
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-21 10:02:58 +01:00
|
|
|
(void) curve;
|
|
|
|
|
|
|
|
uECC_vli_modSub(t5, X2, X1, curve_p); /* t5 = x2 - x1 */
|
2019-11-04 10:18:42 +01:00
|
|
|
uECC_vli_modMult_rnd(t5, t5, t5, s); /* t5 = (x2 - x1)^2 = A */
|
2019-10-29 11:23:43 +01:00
|
|
|
uECC_vli_modMult_rnd(X1, X1, t5, s); /* t1 = x1*A = B */
|
|
|
|
uECC_vli_modMult_rnd(X2, X2, t5, s); /* t3 = x2*A = C */
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modSub(Y2, Y2, Y1, curve_p); /* t4 = y2 - y1 */
|
2019-11-04 10:18:42 +01:00
|
|
|
uECC_vli_modMult_rnd(t5, Y2, Y2, s); /* t5 = (y2 - y1)^2 = D */
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modSub(t5, t5, X1, curve_p); /* t5 = D - B */
|
|
|
|
uECC_vli_modSub(t5, t5, X2, curve_p); /* t5 = D - B - C = x3 */
|
|
|
|
uECC_vli_modSub(X2, X2, X1, curve_p); /* t3 = C - B */
|
2019-10-29 11:23:43 +01:00
|
|
|
uECC_vli_modMult_rnd(Y1, Y1, X2, s); /* t2 = y1*(C - B) */
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modSub(X2, X1, t5, curve_p); /* t3 = B - x3 */
|
2019-10-29 11:23:43 +01:00
|
|
|
uECC_vli_modMult_rnd(Y2, Y2, X2, s); /* t4 = (y2 - y1)*(B - x3) */
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modSub(Y2, Y2, Y1, curve_p); /* t4 = y3 */
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-04 13:02:04 +01:00
|
|
|
uECC_vli_set(X2, t5);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
2019-10-29 11:23:43 +01:00
|
|
|
void XYcZ_add(uECC_word_t * X1, uECC_word_t * Y1,
|
|
|
|
uECC_word_t * X2, uECC_word_t * Y2,
|
|
|
|
uECC_Curve curve)
|
|
|
|
{
|
|
|
|
(void) curve;
|
|
|
|
XYcZ_add_rnd(X1, Y1, X2, Y2, NULL);
|
|
|
|
}
|
|
|
|
|
2019-04-24 14:40:43 +02:00
|
|
|
/* Input P = (x1, y1, Z), Q = (x2, y2, Z)
|
|
|
|
Output P + Q = (x3, y3, Z3), P - Q = (x3', y3', Z3)
|
|
|
|
or P => P - Q, Q => P + Q
|
|
|
|
*/
|
2019-10-29 11:23:43 +01:00
|
|
|
static void XYcZ_addC_rnd(uECC_word_t * X1, uECC_word_t * Y1,
|
|
|
|
uECC_word_t * X2, uECC_word_t * Y2,
|
2019-10-31 12:53:44 +01:00
|
|
|
ecc_wait_state_t *s)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
/* t1 = X1, t2 = Y1, t3 = X2, t4 = Y2 */
|
|
|
|
uECC_word_t t5[NUM_ECC_WORDS];
|
|
|
|
uECC_word_t t6[NUM_ECC_WORDS];
|
|
|
|
uECC_word_t t7[NUM_ECC_WORDS];
|
2019-10-29 11:23:43 +01:00
|
|
|
const uECC_Curve curve = &curve_secp256r1;
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-21 10:02:58 +01:00
|
|
|
(void) curve;
|
|
|
|
|
|
|
|
uECC_vli_modSub(t5, X2, X1, curve_p); /* t5 = x2 - x1 */
|
2019-11-04 10:18:42 +01:00
|
|
|
uECC_vli_modMult_rnd(t5, t5, t5, s); /* t5 = (x2 - x1)^2 = A */
|
2019-10-29 11:23:43 +01:00
|
|
|
uECC_vli_modMult_rnd(X1, X1, t5, s); /* t1 = x1*A = B */
|
|
|
|
uECC_vli_modMult_rnd(X2, X2, t5, s); /* t3 = x2*A = C */
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modAdd(t5, Y2, Y1, curve_p); /* t5 = y2 + y1 */
|
|
|
|
uECC_vli_modSub(Y2, Y2, Y1, curve_p); /* t4 = y2 - y1 */
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modSub(t6, X2, X1, curve_p); /* t6 = C - B */
|
2019-10-29 11:23:43 +01:00
|
|
|
uECC_vli_modMult_rnd(Y1, Y1, t6, s); /* t2 = y1 * (C - B) = E */
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modAdd(t6, X1, X2, curve_p); /* t6 = B + C */
|
2019-11-04 10:18:42 +01:00
|
|
|
uECC_vli_modMult_rnd(X2, Y2, Y2, s); /* t3 = (y2 - y1)^2 = D */
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modSub(X2, X2, t6, curve_p); /* t3 = D - (B + C) = x3 */
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modSub(t7, X1, X2, curve_p); /* t7 = B - x3 */
|
2019-10-29 11:23:43 +01:00
|
|
|
uECC_vli_modMult_rnd(Y2, Y2, t7, s); /* t4 = (y2 - y1)*(B - x3) */
|
2019-04-24 14:40:43 +02:00
|
|
|
/* t4 = (y2 - y1)*(B - x3) - E = y3: */
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modSub(Y2, Y2, Y1, curve_p);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-04 10:18:42 +01:00
|
|
|
uECC_vli_modMult_rnd(t7, t5, t5, s); /* t7 = (y2 + y1)^2 = F */
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modSub(t7, t7, t6, curve_p); /* t7 = F - (B + C) = x3' */
|
|
|
|
uECC_vli_modSub(t6, t7, X1, curve_p); /* t6 = x3' - B */
|
2019-10-29 11:23:43 +01:00
|
|
|
uECC_vli_modMult_rnd(t6, t6, t5, s); /* t6 = (y2+y1)*(x3' - B) */
|
2019-04-24 14:40:43 +02:00
|
|
|
/* t2 = (y2+y1)*(x3' - B) - E = y3': */
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modSub(Y1, t6, Y1, curve_p);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-04 13:02:04 +01:00
|
|
|
uECC_vli_set(X1, t7);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
2019-11-04 11:26:46 +01:00
|
|
|
static void EccPoint_mult(uECC_word_t * result, const uECC_word_t * point,
|
2019-04-24 14:40:43 +02:00
|
|
|
const uECC_word_t * scalar,
|
2019-11-04 11:39:18 +01:00
|
|
|
const uECC_word_t * initial_Z)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
/* R0 and R1 */
|
|
|
|
uECC_word_t Rx[2][NUM_ECC_WORDS];
|
|
|
|
uECC_word_t Ry[2][NUM_ECC_WORDS];
|
|
|
|
uECC_word_t z[NUM_ECC_WORDS];
|
|
|
|
bitcount_t i;
|
|
|
|
uECC_word_t nb;
|
2019-11-04 12:31:06 +01:00
|
|
|
const wordcount_t num_words = NUM_ECC_WORDS;
|
|
|
|
const bitcount_t num_bits = NUM_ECC_BITS + 1; /* from regularize_k */
|
2019-11-04 11:39:18 +01:00
|
|
|
const uECC_Curve curve = uECC_secp256r1();
|
2019-10-31 12:53:44 +01:00
|
|
|
ecc_wait_state_t wait_state;
|
|
|
|
ecc_wait_state_t * const ws = g_rng_function ? &wait_state : NULL;
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-04 13:02:04 +01:00
|
|
|
uECC_vli_set(Rx[1], point);
|
|
|
|
uECC_vli_set(Ry[1], point + num_words);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
XYcZ_initial_double(Rx[1], Ry[1], Rx[0], Ry[0], initial_Z, curve);
|
|
|
|
|
|
|
|
for (i = num_bits - 2; i > 0; --i) {
|
2019-10-31 12:53:44 +01:00
|
|
|
ecc_wait_state_reset(ws);
|
2019-04-24 14:40:43 +02:00
|
|
|
nb = !uECC_vli_testBit(scalar, i);
|
2019-10-29 11:23:43 +01:00
|
|
|
XYcZ_addC_rnd(Rx[1 - nb], Ry[1 - nb], Rx[nb], Ry[nb], ws);
|
|
|
|
XYcZ_add_rnd(Rx[nb], Ry[nb], Rx[1 - nb], Ry[1 - nb], ws);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
2019-10-31 12:53:44 +01:00
|
|
|
ecc_wait_state_reset(ws);
|
2019-04-24 14:40:43 +02:00
|
|
|
nb = !uECC_vli_testBit(scalar, 0);
|
2019-10-29 11:23:43 +01:00
|
|
|
XYcZ_addC_rnd(Rx[1 - nb], Ry[1 - nb], Rx[nb], Ry[nb], ws);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
/* Find final 1/Z value. */
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modSub(z, Rx[1], Rx[0], curve_p); /* X1 - X0 */
|
2019-11-04 12:12:00 +01:00
|
|
|
uECC_vli_modMult_fast(z, z, Ry[1 - nb]); /* Yb * (X1 - X0) */
|
|
|
|
uECC_vli_modMult_fast(z, z, point); /* xP * Yb * (X1 - X0) */
|
2019-11-21 10:02:58 +01:00
|
|
|
uECC_vli_modInv(z, z, curve_p); /* 1 / (xP * Yb * (X1 - X0))*/
|
2019-04-24 14:40:43 +02:00
|
|
|
/* yP / (xP * Yb * (X1 - X0)) */
|
2019-11-04 12:12:00 +01:00
|
|
|
uECC_vli_modMult_fast(z, z, point + num_words);
|
2019-04-24 14:40:43 +02:00
|
|
|
/* Xb * yP / (xP * Yb * (X1 - X0)) */
|
2019-11-04 12:12:00 +01:00
|
|
|
uECC_vli_modMult_fast(z, z, Rx[1 - nb]);
|
2019-04-24 14:40:43 +02:00
|
|
|
/* End 1/Z calculation */
|
|
|
|
|
2019-10-29 11:23:43 +01:00
|
|
|
XYcZ_add_rnd(Rx[nb], Ry[nb], Rx[1 - nb], Ry[1 - nb], ws);
|
2019-11-04 12:12:00 +01:00
|
|
|
apply_z(Rx[0], Ry[0], z);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-04 13:02:04 +01:00
|
|
|
uECC_vli_set(result, Rx[0]);
|
|
|
|
uECC_vli_set(result + num_words, Ry[0]);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
2019-11-04 11:26:46 +01:00
|
|
|
static uECC_word_t regularize_k(const uECC_word_t * const k, uECC_word_t *k0,
|
2019-11-04 11:39:18 +01:00
|
|
|
uECC_word_t *k1)
|
2019-04-24 14:40:43 +02:00
|
|
|
{
|
|
|
|
|
2019-11-04 12:31:06 +01:00
|
|
|
wordcount_t num_n_words = NUM_ECC_WORDS;
|
|
|
|
bitcount_t num_n_bits = NUM_ECC_BITS;
|
2019-11-04 11:39:18 +01:00
|
|
|
const uECC_Curve curve = uECC_secp256r1();
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-04 12:37:08 +01:00
|
|
|
uECC_word_t carry = uECC_vli_add(k0, k, curve->n) ||
|
2019-04-24 14:40:43 +02:00
|
|
|
(num_n_bits < ((bitcount_t)num_n_words * uECC_WORD_SIZE * 8) &&
|
|
|
|
uECC_vli_testBit(k0, num_n_bits));
|
|
|
|
|
2019-11-04 12:37:08 +01:00
|
|
|
uECC_vli_add(k1, k0, curve->n);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
return carry;
|
|
|
|
}
|
|
|
|
|
2019-11-04 11:19:30 +01:00
|
|
|
int EccPoint_mult_safer(uECC_word_t * result, const uECC_word_t * point,
|
|
|
|
const uECC_word_t * scalar, uECC_Curve curve)
|
|
|
|
{
|
|
|
|
uECC_word_t tmp[NUM_ECC_WORDS];
|
|
|
|
uECC_word_t s[NUM_ECC_WORDS];
|
|
|
|
uECC_word_t *k2[2] = {tmp, s};
|
2019-11-04 12:31:06 +01:00
|
|
|
wordcount_t num_words = NUM_ECC_WORDS;
|
2019-11-04 11:19:30 +01:00
|
|
|
uECC_word_t carry;
|
|
|
|
uECC_word_t *initial_Z = 0;
|
|
|
|
int r;
|
|
|
|
|
2019-11-04 11:39:18 +01:00
|
|
|
if (curve != uECC_secp256r1())
|
|
|
|
return 0;
|
|
|
|
|
2019-11-15 10:47:45 +01:00
|
|
|
/* Protects against invalid curves attacks */
|
|
|
|
if (uECC_valid_point(point, curve) != 0 ) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-11-04 11:19:30 +01:00
|
|
|
/* Regularize the bitcount for the private key so that attackers cannot use a
|
|
|
|
* side channel attack to learn the number of leading zeros. */
|
2019-11-04 11:39:18 +01:00
|
|
|
carry = regularize_k(scalar, tmp, s);
|
2019-11-04 11:19:30 +01:00
|
|
|
|
|
|
|
/* If an RNG function was specified, get a random initial Z value to
|
|
|
|
* protect against side-channel attacks such as Template SPA */
|
|
|
|
if (g_rng_function) {
|
2019-11-21 10:02:58 +01:00
|
|
|
if (!uECC_generate_random_int(k2[carry], curve_p, num_words)) {
|
2019-11-04 11:19:30 +01:00
|
|
|
r = 0;
|
|
|
|
goto clear_and_out;
|
|
|
|
}
|
|
|
|
initial_Z = k2[carry];
|
|
|
|
}
|
|
|
|
|
2019-11-04 11:39:18 +01:00
|
|
|
EccPoint_mult(result, point, k2[!carry], initial_Z);
|
2019-11-14 11:59:09 +01:00
|
|
|
|
2019-11-15 10:47:45 +01:00
|
|
|
/* Protect against fault injections that would make the resulting
|
|
|
|
* point not lie on the intended curve */
|
|
|
|
if (uECC_valid_point(result, curve) != 0 ) {
|
2019-11-14 11:59:09 +01:00
|
|
|
r = 0;
|
|
|
|
goto clear_and_out;
|
|
|
|
}
|
|
|
|
|
2019-11-04 11:19:30 +01:00
|
|
|
r = 1;
|
|
|
|
|
|
|
|
clear_and_out:
|
|
|
|
/* erasing temporary buffer used to store secret: */
|
|
|
|
mbedtls_platform_zeroize(k2, sizeof(k2));
|
|
|
|
mbedtls_platform_zeroize(tmp, sizeof(tmp));
|
|
|
|
mbedtls_platform_zeroize(s, sizeof(s));
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2019-04-24 14:40:43 +02:00
|
|
|
uECC_word_t EccPoint_compute_public_key(uECC_word_t *result,
|
|
|
|
uECC_word_t *private_key,
|
|
|
|
uECC_Curve curve)
|
|
|
|
{
|
2019-11-14 11:59:09 +01:00
|
|
|
return EccPoint_mult_safer(result, curve->G, private_key, curve);
|
2019-04-24 14:40:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Converts an integer in uECC native format to big-endian bytes. */
|
|
|
|
void uECC_vli_nativeToBytes(uint8_t *bytes, int num_bytes,
|
|
|
|
const unsigned int *native)
|
|
|
|
{
|
|
|
|
wordcount_t i;
|
|
|
|
for (i = 0; i < num_bytes; ++i) {
|
|
|
|
unsigned b = num_bytes - 1 - i;
|
|
|
|
bytes[i] = native[b / uECC_WORD_SIZE] >> (8 * (b % uECC_WORD_SIZE));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Converts big-endian bytes to an integer in uECC native format. */
|
|
|
|
void uECC_vli_bytesToNative(unsigned int *native, const uint8_t *bytes,
|
|
|
|
int num_bytes)
|
|
|
|
{
|
|
|
|
wordcount_t i;
|
2019-11-04 12:47:28 +01:00
|
|
|
uECC_vli_clear(native);
|
2019-04-24 14:40:43 +02:00
|
|
|
for (i = 0; i < num_bytes; ++i) {
|
|
|
|
unsigned b = num_bytes - 1 - i;
|
|
|
|
native[b / uECC_WORD_SIZE] |=
|
|
|
|
(uECC_word_t)bytes[i] << (8 * (b % uECC_WORD_SIZE));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int uECC_generate_random_int(uECC_word_t *random, const uECC_word_t *top,
|
|
|
|
wordcount_t num_words)
|
|
|
|
{
|
|
|
|
uECC_word_t mask = (uECC_word_t)-1;
|
|
|
|
uECC_word_t tries;
|
2019-11-04 12:56:59 +01:00
|
|
|
bitcount_t num_bits = uECC_vli_numBits(top);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
if (!g_rng_function) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (tries = 0; tries < uECC_RNG_MAX_TRIES; ++tries) {
|
|
|
|
if (!g_rng_function((uint8_t *)random, num_words * uECC_WORD_SIZE)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
random[num_words - 1] &=
|
|
|
|
mask >> ((bitcount_t)(num_words * uECC_WORD_SIZE * 8 - num_bits));
|
2019-11-04 12:44:43 +01:00
|
|
|
if (!uECC_vli_isZero(random) &&
|
2019-11-04 14:43:35 +01:00
|
|
|
uECC_vli_cmp(top, random) == 1) {
|
2019-04-24 14:40:43 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int uECC_valid_point(const uECC_word_t *point, uECC_Curve curve)
|
|
|
|
{
|
|
|
|
uECC_word_t tmp1[NUM_ECC_WORDS];
|
|
|
|
uECC_word_t tmp2[NUM_ECC_WORDS];
|
2019-11-21 09:27:38 +01:00
|
|
|
wordcount_t num_words = NUM_ECC_WORDS;
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
/* The point at infinity is invalid. */
|
|
|
|
if (EccPoint_isZero(point, curve)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* x and y must be smaller than p. */
|
2019-11-21 10:02:58 +01:00
|
|
|
if (uECC_vli_cmp_unsafe(curve_p, point) != 1 ||
|
|
|
|
uECC_vli_cmp_unsafe(curve_p, point + num_words) != 1) {
|
2019-04-24 14:40:43 +02:00
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
|
2019-11-04 12:12:00 +01:00
|
|
|
uECC_vli_modMult_fast(tmp1, point + num_words, point + num_words);
|
2019-11-21 09:18:29 +01:00
|
|
|
x_side_default(tmp2, point, curve); /* tmp2 = x^3 + ax + b */
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
/* Make sure that y^2 == x^3 + ax + b */
|
2019-11-04 14:33:09 +01:00
|
|
|
if (uECC_vli_equal(tmp1, tmp2) != 0)
|
2019-04-24 14:40:43 +02:00
|
|
|
return -3;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int uECC_valid_public_key(const uint8_t *public_key, uECC_Curve curve)
|
|
|
|
{
|
|
|
|
|
|
|
|
uECC_word_t _public[NUM_ECC_WORDS * 2];
|
|
|
|
|
2019-11-21 09:34:09 +01:00
|
|
|
uECC_vli_bytesToNative(_public, public_key, NUM_ECC_BYTES);
|
2019-04-24 14:40:43 +02:00
|
|
|
uECC_vli_bytesToNative(
|
2019-11-21 09:27:38 +01:00
|
|
|
_public + NUM_ECC_WORDS,
|
2019-11-21 09:34:09 +01:00
|
|
|
public_key + NUM_ECC_BYTES,
|
|
|
|
NUM_ECC_BYTES);
|
2019-04-24 14:40:43 +02:00
|
|
|
|
2019-11-04 14:31:35 +01:00
|
|
|
if (memcmp(_public, curve->G, NUM_ECC_WORDS * 2) == 0) {
|
2019-04-24 14:40:43 +02:00
|
|
|
return -4;
|
|
|
|
}
|
|
|
|
|
|
|
|
return uECC_valid_point(_public, curve);
|
|
|
|
}
|
|
|
|
|
|
|
|
int uECC_compute_public_key(const uint8_t *private_key, uint8_t *public_key,
|
|
|
|
uECC_Curve curve)
|
|
|
|
{
|
|
|
|
|
|
|
|
uECC_word_t _private[NUM_ECC_WORDS];
|
|
|
|
uECC_word_t _public[NUM_ECC_WORDS * 2];
|
|
|
|
|
|
|
|
uECC_vli_bytesToNative(
|
|
|
|
_private,
|
|
|
|
private_key,
|
2019-11-21 09:46:52 +01:00
|
|
|
BITS_TO_BYTES(NUM_ECC_BITS));
|
2019-04-24 14:40:43 +02:00
|
|
|
|
|
|
|
/* Make sure the private key is in the range [1, n-1]. */
|
2019-11-04 12:44:43 +01:00
|
|
|
if (uECC_vli_isZero(_private)) {
|
2019-04-24 14:40:43 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-11-04 14:43:35 +01:00
|
|
|
if (uECC_vli_cmp(curve->n, _private) != 1) {
|
2019-04-24 14:40:43 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Compute public key. */
|
|
|
|
if (!EccPoint_compute_public_key(_public, _private, curve)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-11-21 09:34:09 +01:00
|
|
|
uECC_vli_nativeToBytes(public_key, NUM_ECC_BYTES, _public);
|
2019-04-24 14:40:43 +02:00
|
|
|
uECC_vli_nativeToBytes(
|
|
|
|
public_key +
|
2019-11-21 09:34:09 +01:00
|
|
|
NUM_ECC_BYTES, NUM_ECC_BYTES, _public + NUM_ECC_WORDS);
|
2019-04-24 14:40:43 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2019-04-29 13:29:52 +02:00
|
|
|
#else
|
2019-05-09 11:24:11 +02:00
|
|
|
typedef int mbedtls_dummy_tinycrypt_def;
|
|
|
|
#endif /* MBEDTLS_USE_TINYCRYPT */
|
2019-04-24 14:40:43 +02:00
|
|
|
|