blob: b6b1898d3dcd964b7e009e9bb1f425e969653620 [file] [log] [blame]
Jarno Lamsa18987a42019-04-24 15:40:43 +03001/* ec_dh.c - TinyCrypt implementation of EC-DH */
2
Jarno Lamsa187fbb12019-04-25 09:03:19 +03003/*
Simon Butcher92c3d1f2019-09-09 17:25:08 +01004 * Copyright (c) 2019, Arm Limited (or its affiliates), All Rights Reserved.
5 * SPDX-License-Identifier: BSD-3-Clause
6 */
7
8/*
Jarno Lamsa18987a42019-04-24 15:40:43 +03009 * Copyright (c) 2014, Kenneth MacKay
10 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions are met:
14 * * Redistributions of source code must retain the above copyright notice,
Andrzej Kurek0919b142020-07-06 15:28:59 -040015 * this list of conditions and the following disclaimer.
Jarno Lamsa18987a42019-04-24 15:40:43 +030016 * * Redistributions in binary form must reproduce the above copyright notice,
Andrzej Kurek0919b142020-07-06 15:28:59 -040017 * this list of conditions and the following disclaimer in the documentation
18 * and/or other materials provided with the distribution.
Jarno Lamsa18987a42019-04-24 15:40:43 +030019 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
24 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 */
32
33/*
34 * Copyright (C) 2017 by Intel Corporation, All Rights Reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions are met:
38 *
Andrzej Kurek0919b142020-07-06 15:28:59 -040039 * - Redistributions of source code must retain the above copyright notice,
40 * this list of conditions and the following disclaimer.
Jarno Lamsa18987a42019-04-24 15:40:43 +030041 *
Andrzej Kurek0919b142020-07-06 15:28:59 -040042 * - Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in the
44 * documentation and/or other materials provided with the distribution.
Jarno Lamsa18987a42019-04-24 15:40:43 +030045 *
Andrzej Kurek0919b142020-07-06 15:28:59 -040046 * - Neither the name of Intel Corporation nor the names of its contributors
47 * may be used to endorse or promote products derived from this software
48 * without specific prior written permission.
Jarno Lamsa18987a42019-04-24 15:40:43 +030049 *
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
51 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
52 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
53 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
54 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
55 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
56 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
57 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
58 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
59 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
60 * POSSIBILITY OF SUCH DAMAGE.
61 */
Hanno Becker36ae7582019-07-23 15:52:35 +010062
63#if !defined(MBEDTLS_CONFIG_FILE)
64#include "mbedtls/config.h"
65#else
66#include MBEDTLS_CONFIG_FILE
67#endif
68
Andrzej Kurek7e62c312020-10-14 12:02:40 +020069#if defined(MBEDTLS_USE_TINYCRYPT)
Jarno Lamsa18987a42019-04-24 15:40:43 +030070#include <tinycrypt/ecc.h>
71#include <tinycrypt/ecc_dh.h>
72#include <string.h>
Jarno Lamsa187fbb12019-04-25 09:03:19 +030073#include "mbedtls/platform_util.h"
Jarno Lamsa18987a42019-04-24 15:40:43 +030074
Jarno Lamsa18987a42019-04-24 15:40:43 +030075int uECC_make_key_with_d(uint8_t *public_key, uint8_t *private_key,
Manuel Pégourié-Gonnard1a533712019-11-21 12:00:43 +010076 unsigned int *d)
Jarno Lamsa18987a42019-04-24 15:40:43 +030077{
Andrzej Kurekfd56f402020-05-25 11:52:05 -040078 int ret = UECC_FAULT_DETECTED;
Jarno Lamsa18987a42019-04-24 15:40:43 +030079 uECC_word_t _private[NUM_ECC_WORDS];
80 uECC_word_t _public[NUM_ECC_WORDS * 2];
81
82 /* This function is designed for test purposes-only (such as validating NIST
83 * test vectors) as it uses a provided value for d instead of generating
84 * it uniformly at random. */
Piotr Nowicki305a5ec2020-08-10 17:42:18 +020085 if( mbedtls_platform_memcpy (_private, d, NUM_ECC_BYTES) != _private )
86 {
87 goto exit;
88 }
Jarno Lamsa18987a42019-04-24 15:40:43 +030089
90 /* Computing public-key from private: */
Manuel Pégourié-Gonnard9d6a5352019-11-25 13:06:05 +010091 ret = EccPoint_compute_public_key(_public, _private);
92 if (ret != UECC_SUCCESS) {
93 goto exit;
Jarno Lamsa18987a42019-04-24 15:40:43 +030094 }
Manuel Pégourié-Gonnard9d6a5352019-11-25 13:06:05 +010095
96 /* Converting buffers to correct bit order: */
97 uECC_vli_nativeToBytes(private_key,
Andrzej Kurek0919b142020-07-06 15:28:59 -040098 BITS_TO_BYTES(NUM_ECC_BITS),
99 _private);
Manuel Pégourié-Gonnard9d6a5352019-11-25 13:06:05 +0100100 uECC_vli_nativeToBytes(public_key,
Andrzej Kurek0919b142020-07-06 15:28:59 -0400101 NUM_ECC_BYTES,
102 _public);
Manuel Pégourié-Gonnard9d6a5352019-11-25 13:06:05 +0100103 uECC_vli_nativeToBytes(public_key + NUM_ECC_BYTES,
Andrzej Kurek0919b142020-07-06 15:28:59 -0400104 NUM_ECC_BYTES,
105 _public + NUM_ECC_WORDS);
Manuel Pégourié-Gonnard9d6a5352019-11-25 13:06:05 +0100106
107exit:
108 /* erasing temporary buffer used to store secret: */
109 mbedtls_platform_memset(_private, 0, NUM_ECC_BYTES);
110
111 return ret;
Jarno Lamsa18987a42019-04-24 15:40:43 +0300112}
113
Manuel Pégourié-Gonnard1a533712019-11-21 12:00:43 +0100114int uECC_make_key(uint8_t *public_key, uint8_t *private_key)
Jarno Lamsa18987a42019-04-24 15:40:43 +0300115{
Andrzej Kurekfd56f402020-05-25 11:52:05 -0400116 int ret = UECC_FAULT_DETECTED;
Jarno Lamsa18987a42019-04-24 15:40:43 +0300117 uECC_word_t _random[NUM_ECC_WORDS * 2];
118 uECC_word_t _private[NUM_ECC_WORDS];
119 uECC_word_t _public[NUM_ECC_WORDS * 2];
120 uECC_word_t tries;
Andrzej Kurek74f7d0f2020-07-06 14:28:12 -0400121 volatile uint8_t *public_key_dup = public_key;
122 volatile uint8_t *private_key_dup = private_key;
Jarno Lamsa18987a42019-04-24 15:40:43 +0300123
124 for (tries = 0; tries < uECC_RNG_MAX_TRIES; ++tries) {
125 /* Generating _private uniformly at random: */
126 uECC_RNG_Function rng_function = uECC_get_rng();
127 if (!rng_function ||
Andrzej Kurek090365f2020-06-08 11:00:51 -0400128 rng_function((uint8_t *)_random, 2 * NUM_ECC_WORDS*uECC_WORD_SIZE) != 2 * NUM_ECC_WORDS*uECC_WORD_SIZE) {
Andrzej Kurek0919b142020-07-06 15:28:59 -0400129 return UECC_FAILURE;
Jarno Lamsa18987a42019-04-24 15:40:43 +0300130 }
131
132 /* computing modular reduction of _random (see FIPS 186.4 B.4.1): */
Manuel Pégourié-Gonnard356d8592019-11-21 10:23:05 +0100133 uECC_vli_mmod(_private, _random, curve_n);
Jarno Lamsa18987a42019-04-24 15:40:43 +0300134
135 /* Computing public-key from private: */
Manuel Pégourié-Gonnard9d6a5352019-11-25 13:06:05 +0100136 ret = EccPoint_compute_public_key(_public, _private);
137 /* don't try again if a fault was detected */
138 if (ret == UECC_FAULT_DETECTED) {
139 return ret;
140 }
141 if (ret == UECC_SUCCESS) {
Jarno Lamsa18987a42019-04-24 15:40:43 +0300142
143 /* Converting buffers to correct bit order: */
144 uECC_vli_nativeToBytes(private_key,
Andrzej Kurek0919b142020-07-06 15:28:59 -0400145 BITS_TO_BYTES(NUM_ECC_BITS),
146 _private);
Jarno Lamsa18987a42019-04-24 15:40:43 +0300147 uECC_vli_nativeToBytes(public_key,
Andrzej Kurek0919b142020-07-06 15:28:59 -0400148 NUM_ECC_BYTES,
149 _public);
Manuel Pégourié-Gonnard72c17642019-11-21 09:34:09 +0100150 uECC_vli_nativeToBytes(public_key + NUM_ECC_BYTES,
Andrzej Kurek0919b142020-07-06 15:28:59 -0400151 NUM_ECC_BYTES,
152 _public + NUM_ECC_WORDS);
Jarno Lamsa18987a42019-04-24 15:40:43 +0300153
154 /* erasing temporary buffer that stored secret: */
Manuel Pégourié-Gonnard7a346b82019-10-02 14:47:01 +0200155 mbedtls_platform_memset(_private, 0, NUM_ECC_BYTES);
Jarno Lamsa18987a42019-04-24 15:40:43 +0300156
Andrzej Kurek0919b142020-07-06 15:28:59 -0400157 if (private_key == private_key_dup && public_key == public_key_dup) {
158 return UECC_SUCCESS;
Andrzej Kurek74f7d0f2020-07-06 14:28:12 -0400159 }
Andrzej Kurekca609372020-07-08 03:19:02 -0400160 /* Erase key in case of FI */
161 mbedtls_platform_memset(public_key, 0, 2*NUM_ECC_BYTES);
Andrzej Kurek74f7d0f2020-07-06 14:28:12 -0400162 return UECC_FAULT_DETECTED;
Andrzej Kurek0919b142020-07-06 15:28:59 -0400163 }
Jarno Lamsa18987a42019-04-24 15:40:43 +0300164 }
Manuel Pégourié-Gonnard9d6a5352019-11-25 13:06:05 +0100165 return UECC_FAILURE;
Jarno Lamsa18987a42019-04-24 15:40:43 +0300166}
167
168int uECC_shared_secret(const uint8_t *public_key, const uint8_t *private_key,
Andrzej Kurek0919b142020-07-06 15:28:59 -0400169 uint8_t *secret)
Jarno Lamsa18987a42019-04-24 15:40:43 +0300170{
171
172 uECC_word_t _public[NUM_ECC_WORDS * 2];
173 uECC_word_t _private[NUM_ECC_WORDS];
Manuel Pégourié-Gonnard17659332019-11-21 09:27:38 +0100174 wordcount_t num_words = NUM_ECC_WORDS;
Manuel Pégourié-Gonnard72c17642019-11-21 09:34:09 +0100175 wordcount_t num_bytes = NUM_ECC_BYTES;
Andrzej Kurekfd56f402020-05-25 11:52:05 -0400176 int r = UECC_FAULT_DETECTED;
Andrzej Kurek74f7d0f2020-07-06 14:28:12 -0400177
Jarno Lamsa18987a42019-04-24 15:40:43 +0300178 /* Converting buffers to correct bit order: */
179 uECC_vli_bytesToNative(_private,
Andrzej Kurek0919b142020-07-06 15:28:59 -0400180 private_key,
181 BITS_TO_BYTES(NUM_ECC_BITS));
Jarno Lamsa18987a42019-04-24 15:40:43 +0300182 uECC_vli_bytesToNative(_public,
Andrzej Kurek0919b142020-07-06 15:28:59 -0400183 public_key,
184 num_bytes);
Jarno Lamsa18987a42019-04-24 15:40:43 +0300185 uECC_vli_bytesToNative(_public + num_words,
Andrzej Kurek0919b142020-07-06 15:28:59 -0400186 public_key + num_bytes,
187 num_bytes);
Jarno Lamsa18987a42019-04-24 15:40:43 +0300188
Manuel Pégourié-Gonnard1a533712019-11-21 12:00:43 +0100189 r = EccPoint_mult_safer(_public, _public, _private);
Jarno Lamsa18987a42019-04-24 15:40:43 +0300190 uECC_vli_nativeToBytes(secret, num_bytes, _public);
Jarno Lamsa18987a42019-04-24 15:40:43 +0300191
Jarno Lamsa18987a42019-04-24 15:40:43 +0300192 /* erasing temporary buffer used to store secret: */
Piotr Nowickia6348ed2020-06-29 15:03:56 +0200193 if (_private == mbedtls_platform_zeroize(_private, sizeof(_private))) {
194 return r;
195 }
Jarno Lamsa18987a42019-04-24 15:40:43 +0300196
Piotr Nowickia6348ed2020-06-29 15:03:56 +0200197 return UECC_FAULT_DETECTED;
Jarno Lamsa18987a42019-04-24 15:40:43 +0300198}
Andrzej Kurek7e62c312020-10-14 12:02:40 +0200199#endif /* MBEDTLS_USE_TINYCRYPT */