Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 1 | /** |
| 2 | * \file ecp.h |
| 3 | * |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 4 | * \brief This file provides an API for Elliptic Curves over GF(P) (ECP). |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 5 | * |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 6 | * The use of ECP in cryptography and TLS is defined in |
| 7 | * <em>Standards for Efficient Cryptography Group (SECG): SEC1 |
| 8 | * Elliptic Curve Cryptography</em> and |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 9 | * <em>RFC-4492: Elliptic Curve Cryptography (ECC) Cipher Suites |
| 10 | * for Transport Layer Security (TLS)</em>. |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 11 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 12 | * <em>RFC-2409: The Internet Key Exchange (IKE)</em> defines ECP |
| 13 | * group types. |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 14 | * |
Darryl Green | a40a101 | 2018-01-05 15:33:17 +0000 | [diff] [blame] | 15 | */ |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 16 | |
Darryl Green | a40a101 | 2018-01-05 15:33:17 +0000 | [diff] [blame] | 17 | /* |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 18 | * Copyright (C) 2006-2018, Arm Limited (or its affiliates), All Rights Reserved |
Bence Szépkúti | f744bd7 | 2020-06-05 13:02:18 +0200 | [diff] [blame] | 19 | * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later |
| 20 | * |
| 21 | * This file is provided under the Apache License 2.0, or the |
| 22 | * GNU General Public License v2.0 or later. |
| 23 | * |
| 24 | * ********** |
| 25 | * Apache License 2.0: |
Manuel Pégourié-Gonnard | 37ff140 | 2015-09-04 14:21:07 +0200 | [diff] [blame] | 26 | * |
| 27 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 28 | * not use this file except in compliance with the License. |
| 29 | * You may obtain a copy of the License at |
| 30 | * |
| 31 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 32 | * |
| 33 | * Unless required by applicable law or agreed to in writing, software |
| 34 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 35 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 36 | * See the License for the specific language governing permissions and |
| 37 | * limitations under the License. |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 38 | * |
Bence Szépkúti | f744bd7 | 2020-06-05 13:02:18 +0200 | [diff] [blame] | 39 | * ********** |
| 40 | * |
| 41 | * ********** |
| 42 | * GNU General Public License v2.0 or later: |
| 43 | * |
| 44 | * This program is free software; you can redistribute it and/or modify |
| 45 | * it under the terms of the GNU General Public License as published by |
| 46 | * the Free Software Foundation; either version 2 of the License, or |
| 47 | * (at your option) any later version. |
| 48 | * |
| 49 | * This program is distributed in the hope that it will be useful, |
| 50 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 51 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 52 | * GNU General Public License for more details. |
| 53 | * |
| 54 | * You should have received a copy of the GNU General Public License along |
| 55 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 56 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 57 | * |
| 58 | * ********** |
| 59 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 60 | * This file is part of Mbed TLS (https://tls.mbed.org) |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 61 | */ |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 62 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 63 | #ifndef MBEDTLS_ECP_H |
| 64 | #define MBEDTLS_ECP_H |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 65 | |
Ron Eldor | 8b0cf2e | 2018-02-14 16:02:41 +0200 | [diff] [blame] | 66 | #if !defined(MBEDTLS_CONFIG_FILE) |
| 67 | #include "config.h" |
| 68 | #else |
| 69 | #include MBEDTLS_CONFIG_FILE |
| 70 | #endif |
| 71 | |
Manuel Pégourié-Gonnard | bdc9676 | 2013-10-03 11:50:39 +0200 | [diff] [blame] | 72 | #include "bignum.h" |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 73 | |
| 74 | /* |
Manuel Pégourié-Gonnard | 7cfcea3 | 2012-11-05 10:06:12 +0100 | [diff] [blame] | 75 | * ECP error codes |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 76 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 77 | #define MBEDTLS_ERR_ECP_BAD_INPUT_DATA -0x4F80 /**< Bad input parameters to function. */ |
| 78 | #define MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL -0x4F00 /**< The buffer is too small to write to. */ |
Rose Zadik | d353405 | 2018-04-23 16:12:42 +0100 | [diff] [blame] | 79 | #define MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE -0x4E80 /**< The requested feature is not available, for example, the requested curve is not supported. */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 80 | #define MBEDTLS_ERR_ECP_VERIFY_FAILED -0x4E00 /**< The signature is not valid. */ |
Manuel Pégourié-Gonnard | 6a8ca33 | 2015-05-28 09:33:39 +0200 | [diff] [blame] | 81 | #define MBEDTLS_ERR_ECP_ALLOC_FAILED -0x4D80 /**< Memory allocation failed. */ |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 82 | #define MBEDTLS_ERR_ECP_RANDOM_FAILED -0x4D00 /**< Generation of random value, such as ephemeral key, failed. */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 83 | #define MBEDTLS_ERR_ECP_INVALID_KEY -0x4C80 /**< Invalid private or public key. */ |
Gilles Peskine | 5114d3e | 2018-03-30 07:12:15 +0200 | [diff] [blame] | 84 | #define MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH -0x4C00 /**< The buffer contains a valid signature followed by more data. */ |
Ron Eldor | 9924bdc | 2018-10-04 10:59:13 +0300 | [diff] [blame] | 85 | |
| 86 | /* MBEDTLS_ERR_ECP_HW_ACCEL_FAILED is deprecated and should not be used. */ |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 87 | #define MBEDTLS_ERR_ECP_HW_ACCEL_FAILED -0x4B80 /**< The ECP hardware accelerator failed. */ |
Ron Eldor | 9924bdc | 2018-10-04 10:59:13 +0300 | [diff] [blame] | 88 | |
Manuel Pégourié-Gonnard | f0bbd7e | 2018-10-15 13:22:41 +0200 | [diff] [blame] | 89 | #define MBEDTLS_ERR_ECP_IN_PROGRESS -0x4B00 /**< Operation in progress, call again with the same parameters to continue. */ |
Manuel Pégourié-Gonnard | 883f313 | 2012-11-02 09:40:25 +0100 | [diff] [blame] | 90 | |
Paul Bakker | 407a0da | 2013-06-27 14:29:21 +0200 | [diff] [blame] | 91 | #ifdef __cplusplus |
| 92 | extern "C" { |
| 93 | #endif |
| 94 | |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 95 | /** |
Rose Zadik | d76ac58 | 2018-04-23 06:29:34 +0100 | [diff] [blame] | 96 | * Domain-parameter identifiers: curve, subgroup, and generator. |
Manuel Pégourié-Gonnard | 7038039 | 2013-09-16 16:19:53 +0200 | [diff] [blame] | 97 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 98 | * \note Only curves over prime fields are supported. |
Manuel Pégourié-Gonnard | 7038039 | 2013-09-16 16:19:53 +0200 | [diff] [blame] | 99 | * |
| 100 | * \warning This library does not support validation of arbitrary domain |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 101 | * parameters. Therefore, only standardized domain parameters from trusted |
Manuel Pégourié-Gonnard | e3a062b | 2015-05-11 18:46:47 +0200 | [diff] [blame] | 102 | * sources should be used. See mbedtls_ecp_group_load(). |
Manuel Pégourié-Gonnard | 7038039 | 2013-09-16 16:19:53 +0200 | [diff] [blame] | 103 | */ |
| 104 | typedef enum |
| 105 | { |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 106 | MBEDTLS_ECP_DP_NONE = 0, /*!< Curve not defined. */ |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 107 | MBEDTLS_ECP_DP_SECP192R1, /*!< Domain parameters for the 192-bit curve defined by FIPS 186-4 and SEC1. */ |
| 108 | MBEDTLS_ECP_DP_SECP224R1, /*!< Domain parameters for the 224-bit curve defined by FIPS 186-4 and SEC1. */ |
| 109 | MBEDTLS_ECP_DP_SECP256R1, /*!< Domain parameters for the 256-bit curve defined by FIPS 186-4 and SEC1. */ |
| 110 | MBEDTLS_ECP_DP_SECP384R1, /*!< Domain parameters for the 384-bit curve defined by FIPS 186-4 and SEC1. */ |
| 111 | MBEDTLS_ECP_DP_SECP521R1, /*!< Domain parameters for the 521-bit curve defined by FIPS 186-4 and SEC1. */ |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 112 | MBEDTLS_ECP_DP_BP256R1, /*!< Domain parameters for 256-bit Brainpool curve. */ |
| 113 | MBEDTLS_ECP_DP_BP384R1, /*!< Domain parameters for 384-bit Brainpool curve. */ |
| 114 | MBEDTLS_ECP_DP_BP512R1, /*!< Domain parameters for 512-bit Brainpool curve. */ |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 115 | MBEDTLS_ECP_DP_CURVE25519, /*!< Domain parameters for Curve25519. */ |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 116 | MBEDTLS_ECP_DP_SECP192K1, /*!< Domain parameters for 192-bit "Koblitz" curve. */ |
| 117 | MBEDTLS_ECP_DP_SECP224K1, /*!< Domain parameters for 224-bit "Koblitz" curve. */ |
| 118 | MBEDTLS_ECP_DP_SECP256K1, /*!< Domain parameters for 256-bit "Koblitz" curve. */ |
Jaeden Amero | fe0669f | 2018-04-27 17:43:32 +0100 | [diff] [blame] | 119 | MBEDTLS_ECP_DP_CURVE448, /*!< Domain parameters for Curve448. */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 120 | } mbedtls_ecp_group_id; |
Manuel Pégourié-Gonnard | 7038039 | 2013-09-16 16:19:53 +0200 | [diff] [blame] | 121 | |
| 122 | /** |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 123 | * The number of supported curves, plus one for #MBEDTLS_ECP_DP_NONE. |
Manuel Pégourié-Gonnard | 6615366 | 2013-12-03 14:12:26 +0100 | [diff] [blame] | 124 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 125 | * \note Montgomery curves are currently excluded. |
Manuel Pégourié-Gonnard | f24b4a7 | 2013-09-23 18:14:50 +0200 | [diff] [blame] | 126 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 127 | #define MBEDTLS_ECP_DP_MAX 12 |
Manuel Pégourié-Gonnard | f24b4a7 | 2013-09-23 18:14:50 +0200 | [diff] [blame] | 128 | |
| 129 | /** |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 130 | * Curve information, for use by other modules. |
Manuel Pégourié-Gonnard | 568c9cf | 2013-09-16 17:30:04 +0200 | [diff] [blame] | 131 | */ |
Dawid Drozd | 428cc52 | 2018-07-24 10:02:47 +0200 | [diff] [blame] | 132 | typedef struct mbedtls_ecp_curve_info |
Manuel Pégourié-Gonnard | 568c9cf | 2013-09-16 17:30:04 +0200 | [diff] [blame] | 133 | { |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 134 | mbedtls_ecp_group_id grp_id; /*!< An internal identifier. */ |
| 135 | uint16_t tls_id; /*!< The TLS NamedCurve identifier. */ |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 136 | uint16_t bit_size; /*!< The curve size in bits. */ |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 137 | const char *name; /*!< A human-friendly name. */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 138 | } mbedtls_ecp_curve_info; |
Manuel Pégourié-Gonnard | 568c9cf | 2013-09-16 17:30:04 +0200 | [diff] [blame] | 139 | |
| 140 | /** |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 141 | * \brief The ECP point structure, in Jacobian coordinates. |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 142 | * |
Manuel Pégourié-Gonnard | 1c2782c | 2012-11-19 20:16:28 +0100 | [diff] [blame] | 143 | * \note All functions expect and return points satisfying |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 144 | * the following condition: <code>Z == 0</code> or |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 145 | * <code>Z == 1</code>. Other values of \p Z are |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 146 | * used only by internal functions. |
| 147 | * The point is zero, or "at infinity", if <code>Z == 0</code>. |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 148 | * Otherwise, \p X and \p Y are its standard (affine) |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 149 | * coordinates. |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 150 | */ |
Dawid Drozd | 428cc52 | 2018-07-24 10:02:47 +0200 | [diff] [blame] | 151 | typedef struct mbedtls_ecp_point |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 152 | { |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 153 | mbedtls_mpi X; /*!< The X coordinate of the ECP point. */ |
| 154 | mbedtls_mpi Y; /*!< The Y coordinate of the ECP point. */ |
| 155 | mbedtls_mpi Z; /*!< The Z coordinate of the ECP point. */ |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 156 | } |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 157 | mbedtls_ecp_point; |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 158 | |
| 159 | #if !defined(MBEDTLS_ECP_ALT) |
| 160 | /* |
| 161 | * default mbed TLS elliptic curve arithmetic implementation |
| 162 | * |
| 163 | * (in case MBEDTLS_ECP_ALT is defined then the developer has to provide an |
| 164 | * alternative implementation for the whole module and it will replace this |
| 165 | * one.) |
| 166 | */ |
| 167 | |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 168 | /** |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 169 | * \brief The ECP group structure. |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 170 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 171 | * We consider two types of curve equations: |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 172 | * <ul><li>Short Weierstrass: <code>y^2 = x^3 + A x + B mod P</code> |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 173 | * (SEC1 + RFC-4492)</li> |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 174 | * <li>Montgomery: <code>y^2 = x^3 + A x^2 + x mod P</code> (Curve25519, |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 175 | * Curve448)</li></ul> |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 176 | * In both cases, the generator (\p G) for a prime-order subgroup is fixed. |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 177 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 178 | * For Short Weierstrass, this subgroup is the whole curve, and its |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 179 | * cardinality is denoted by \p N. Our code requires that \p N is an |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 180 | * odd prime as mbedtls_ecp_mul() requires an odd number, and |
| 181 | * mbedtls_ecdsa_sign() requires that it is prime for blinding purposes. |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 182 | * |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 183 | * For Montgomery curves, we do not store \p A, but <code>(A + 2) / 4</code>, |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 184 | * which is the quantity used in the formulas. Additionally, \p nbits is |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 185 | * not the size of \p N but the required size for private keys. |
Manuel Pégourié-Gonnard | 4712325 | 2012-11-10 14:44:24 +0100 | [diff] [blame] | 186 | * |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 187 | * If \p modp is NULL, reduction modulo \p P is done using a generic algorithm. |
| 188 | * Otherwise, \p modp must point to a function that takes an \p mbedtls_mpi in the |
| 189 | * range of <code>0..2^(2*pbits)-1</code>, and transforms it in-place to an integer |
| 190 | * which is congruent mod \p P to the given MPI, and is close enough to \p pbits |
| 191 | * in size, so that it may be efficiently brought in the 0..P-1 range by a few |
| 192 | * additions or subtractions. Therefore, it is only an approximative modular |
| 193 | * reduction. It must return 0 on success and non-zero on failure. |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 194 | * |
Janos Follath | c3b680b | 2018-12-05 16:01:13 +0000 | [diff] [blame] | 195 | * \note Alternative implementations must keep the group IDs distinct. If |
| 196 | * two group structures have the same ID, then they must be |
| 197 | * identical. |
| 198 | * |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 199 | */ |
Dawid Drozd | 428cc52 | 2018-07-24 10:02:47 +0200 | [diff] [blame] | 200 | typedef struct mbedtls_ecp_group |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 201 | { |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 202 | mbedtls_ecp_group_id id; /*!< An internal group identifier. */ |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 203 | mbedtls_mpi P; /*!< The prime modulus of the base field. */ |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 204 | mbedtls_mpi A; /*!< For Short Weierstrass: \p A in the equation. For |
| 205 | Montgomery curves: <code>(A + 2) / 4</code>. */ |
| 206 | mbedtls_mpi B; /*!< For Short Weierstrass: \p B in the equation. |
| 207 | For Montgomery curves: unused. */ |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 208 | mbedtls_ecp_point G; /*!< The generator of the subgroup used. */ |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 209 | mbedtls_mpi N; /*!< The order of \p G. */ |
| 210 | size_t pbits; /*!< The number of bits in \p P.*/ |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 211 | size_t nbits; /*!< For Short Weierstrass: The number of bits in \p P. |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 212 | For Montgomery curves: the number of bits in the |
Rose Zadik | d76ac58 | 2018-04-23 06:29:34 +0100 | [diff] [blame] | 213 | private keys. */ |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 214 | unsigned int h; /*!< \internal 1 if the constants are static. */ |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 215 | int (*modp)(mbedtls_mpi *); /*!< The function for fast pseudo-reduction |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 216 | mod \p P (see above).*/ |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 217 | int (*t_pre)(mbedtls_ecp_point *, void *); /*!< Unused. */ |
| 218 | int (*t_post)(mbedtls_ecp_point *, void *); /*!< Unused. */ |
| 219 | void *t_data; /*!< Unused. */ |
| 220 | mbedtls_ecp_point *T; /*!< Pre-computed points for ecp_mul_comb(). */ |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 221 | size_t T_size; /*!< The number of pre-computed points. */ |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 222 | } |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 223 | mbedtls_ecp_group; |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 224 | |
Darryl Green | b779759 | 2019-01-04 16:18:06 +0000 | [diff] [blame] | 225 | /** |
| 226 | * \name SECTION: Module settings |
| 227 | * |
| 228 | * The configuration options you can set for this module are in this section. |
| 229 | * Either change them in config.h, or define them using the compiler command line. |
| 230 | * \{ |
| 231 | */ |
| 232 | |
| 233 | #if !defined(MBEDTLS_ECP_MAX_BITS) |
| 234 | /** |
| 235 | * The maximum size of the groups, that is, of \c N and \c P. |
| 236 | */ |
| 237 | #define MBEDTLS_ECP_MAX_BITS 521 /**< The maximum size of groups, in bits. */ |
| 238 | #endif |
| 239 | |
| 240 | #define MBEDTLS_ECP_MAX_BYTES ( ( MBEDTLS_ECP_MAX_BITS + 7 ) / 8 ) |
| 241 | #define MBEDTLS_ECP_MAX_PT_LEN ( 2 * MBEDTLS_ECP_MAX_BYTES + 1 ) |
| 242 | |
| 243 | #if !defined(MBEDTLS_ECP_WINDOW_SIZE) |
| 244 | /* |
| 245 | * Maximum "window" size used for point multiplication. |
| 246 | * Default: 6. |
| 247 | * Minimum value: 2. Maximum value: 7. |
| 248 | * |
| 249 | * Result is an array of at most ( 1 << ( MBEDTLS_ECP_WINDOW_SIZE - 1 ) ) |
| 250 | * points used for point multiplication. This value is directly tied to EC |
| 251 | * peak memory usage, so decreasing it by one should roughly cut memory usage |
| 252 | * by two (if large curves are in use). |
| 253 | * |
| 254 | * Reduction in size may reduce speed, but larger curves are impacted first. |
| 255 | * Sample performances (in ECDHE handshakes/s, with FIXED_POINT_OPTIM = 1): |
| 256 | * w-size: 6 5 4 3 2 |
| 257 | * 521 145 141 135 120 97 |
| 258 | * 384 214 209 198 177 146 |
| 259 | * 256 320 320 303 262 226 |
| 260 | * 224 475 475 453 398 342 |
| 261 | * 192 640 640 633 587 476 |
| 262 | */ |
| 263 | #define MBEDTLS_ECP_WINDOW_SIZE 6 /**< The maximum window size used. */ |
| 264 | #endif /* MBEDTLS_ECP_WINDOW_SIZE */ |
| 265 | |
| 266 | #if !defined(MBEDTLS_ECP_FIXED_POINT_OPTIM) |
| 267 | /* |
| 268 | * Trade memory for speed on fixed-point multiplication. |
| 269 | * |
| 270 | * This speeds up repeated multiplication of the generator (that is, the |
| 271 | * multiplication in ECDSA signatures, and half of the multiplications in |
| 272 | * ECDSA verification and ECDHE) by a factor roughly 3 to 4. |
| 273 | * |
| 274 | * The cost is increasing EC peak memory usage by a factor roughly 2. |
| 275 | * |
| 276 | * Change this value to 0 to reduce peak memory usage. |
| 277 | */ |
| 278 | #define MBEDTLS_ECP_FIXED_POINT_OPTIM 1 /**< Enable fixed-point speed-up. */ |
| 279 | #endif /* MBEDTLS_ECP_FIXED_POINT_OPTIM */ |
| 280 | |
| 281 | /* \} name SECTION: Module settings */ |
| 282 | |
| 283 | #else /* MBEDTLS_ECP_ALT */ |
| 284 | #include "ecp_alt.h" |
| 285 | #endif /* MBEDTLS_ECP_ALT */ |
| 286 | |
Manuel Pégourié-Gonnard | 4b9c51e | 2017-04-20 15:50:26 +0200 | [diff] [blame] | 287 | #if defined(MBEDTLS_ECP_RESTARTABLE) |
Manuel Pégourié-Gonnard | b5a50e7 | 2017-04-20 16:06:13 +0200 | [diff] [blame] | 288 | |
Manuel Pégourié-Gonnard | b739a71 | 2017-04-19 10:11:56 +0200 | [diff] [blame] | 289 | /** |
Manuel Pégourié-Gonnard | 3cade22 | 2017-04-20 09:31:00 +0200 | [diff] [blame] | 290 | * \brief Internal restart context for multiplication |
| 291 | * |
| 292 | * \note Opaque struct |
| 293 | */ |
| 294 | typedef struct mbedtls_ecp_restart_mul mbedtls_ecp_restart_mul_ctx; |
| 295 | |
| 296 | /** |
Manuel Pégourié-Gonnard | 54dd652 | 2017-04-20 13:36:18 +0200 | [diff] [blame] | 297 | * \brief Internal restart context for ecp_muladd() |
| 298 | * |
| 299 | * \note Opaque struct |
| 300 | */ |
| 301 | typedef struct mbedtls_ecp_restart_muladd mbedtls_ecp_restart_muladd_ctx; |
| 302 | |
| 303 | /** |
Manuel Pégourié-Gonnard | b739a71 | 2017-04-19 10:11:56 +0200 | [diff] [blame] | 304 | * \brief General context for resuming ECC operations |
| 305 | */ |
| 306 | typedef struct |
| 307 | { |
Manuel Pégourié-Gonnard | 646393b | 2017-04-20 10:03:45 +0200 | [diff] [blame] | 308 | unsigned ops_done; /*!< current ops count */ |
Manuel Pégourié-Gonnard | 3a25612 | 2017-04-20 11:20:26 +0200 | [diff] [blame] | 309 | unsigned depth; /*!< call depth (0 = top-level) */ |
Manuel Pégourié-Gonnard | 646393b | 2017-04-20 10:03:45 +0200 | [diff] [blame] | 310 | mbedtls_ecp_restart_mul_ctx *rsm; /*!< ecp_mul_comb() sub-context */ |
Manuel Pégourié-Gonnard | 54dd652 | 2017-04-20 13:36:18 +0200 | [diff] [blame] | 311 | mbedtls_ecp_restart_muladd_ctx *ma; /*!< ecp_muladd() sub-context */ |
Manuel Pégourié-Gonnard | b739a71 | 2017-04-19 10:11:56 +0200 | [diff] [blame] | 312 | } mbedtls_ecp_restart_ctx; |
Manuel Pégourié-Gonnard | b5a50e7 | 2017-04-20 16:06:13 +0200 | [diff] [blame] | 313 | |
Manuel Pégourié-Gonnard | c751148 | 2017-04-20 16:31:00 +0200 | [diff] [blame] | 314 | /* |
| 315 | * Operation counts for restartable functions |
| 316 | */ |
Manuel Pégourié-Gonnard | 5314f23 | 2017-04-21 12:36:59 +0200 | [diff] [blame] | 317 | #define MBEDTLS_ECP_OPS_CHK 3 /*!< basic ops count for ecp_check_pubkey() */ |
Manuel Pégourié-Gonnard | c751148 | 2017-04-20 16:31:00 +0200 | [diff] [blame] | 318 | #define MBEDTLS_ECP_OPS_DBL 8 /*!< basic ops count for ecp_double_jac() */ |
| 319 | #define MBEDTLS_ECP_OPS_ADD 11 /*!< basic ops count for see ecp_add_mixed() */ |
| 320 | #define MBEDTLS_ECP_OPS_INV 120 /*!< empirical equivalent for mpi_mod_inv() */ |
| 321 | |
| 322 | /** |
| 323 | * \brief Internal; for restartable functions in other modules. |
| 324 | * Check and update basic ops budget. |
| 325 | * |
| 326 | * \param grp Group structure |
| 327 | * \param rs_ctx Restart context |
| 328 | * \param ops Number of basic ops to do |
| 329 | * |
Manuel Pégourié-Gonnard | 12e4a8b | 2018-09-12 10:55:15 +0200 | [diff] [blame] | 330 | * \return \c 0 if doing \p ops basic ops is still allowed, |
| 331 | * \return #MBEDTLS_ERR_ECP_IN_PROGRESS otherwise. |
Manuel Pégourié-Gonnard | c751148 | 2017-04-20 16:31:00 +0200 | [diff] [blame] | 332 | */ |
| 333 | int mbedtls_ecp_check_budget( const mbedtls_ecp_group *grp, |
| 334 | mbedtls_ecp_restart_ctx *rs_ctx, |
| 335 | unsigned ops ); |
| 336 | |
| 337 | /* Utility macro for checking and updating ops budget */ |
Hanno Becker | abdf67e | 2018-10-26 13:28:32 +0100 | [diff] [blame] | 338 | #define MBEDTLS_ECP_BUDGET( ops ) \ |
| 339 | MBEDTLS_MPI_CHK( mbedtls_ecp_check_budget( grp, rs_ctx, \ |
| 340 | (unsigned) (ops) ) ); |
Manuel Pégourié-Gonnard | c751148 | 2017-04-20 16:31:00 +0200 | [diff] [blame] | 341 | |
Manuel Pégourié-Gonnard | b5a50e7 | 2017-04-20 16:06:13 +0200 | [diff] [blame] | 342 | #else /* MBEDTLS_ECP_RESTARTABLE */ |
| 343 | |
Manuel Pégourié-Gonnard | c751148 | 2017-04-20 16:31:00 +0200 | [diff] [blame] | 344 | #define MBEDTLS_ECP_BUDGET( ops ) /* no-op; for compatibility */ |
| 345 | |
Manuel Pégourié-Gonnard | b5a50e7 | 2017-04-20 16:06:13 +0200 | [diff] [blame] | 346 | /* We want to declare restartable versions of existing functions anyway */ |
| 347 | typedef void mbedtls_ecp_restart_ctx; |
| 348 | |
Manuel Pégourié-Gonnard | 4b9c51e | 2017-04-20 15:50:26 +0200 | [diff] [blame] | 349 | #endif /* MBEDTLS_ECP_RESTARTABLE */ |
Manuel Pégourié-Gonnard | b739a71 | 2017-04-19 10:11:56 +0200 | [diff] [blame] | 350 | |
Paul Bakker | 088c5c5 | 2014-04-25 11:11:10 +0200 | [diff] [blame] | 351 | /** |
Jaeden Amero | 8945343 | 2018-04-24 17:15:38 +0100 | [diff] [blame] | 352 | * \brief The ECP key-pair structure. |
Ron Eldor | 05d0e51 | 2018-04-16 17:40:04 +0300 | [diff] [blame] | 353 | * |
Jaeden Amero | 8945343 | 2018-04-24 17:15:38 +0100 | [diff] [blame] | 354 | * A generic key-pair that may be used for ECDSA and fixed ECDH, for example. |
Ron Eldor | 05d0e51 | 2018-04-16 17:40:04 +0300 | [diff] [blame] | 355 | * |
Jaeden Amero | 8945343 | 2018-04-24 17:15:38 +0100 | [diff] [blame] | 356 | * \note Members are deliberately in the same order as in the |
| 357 | * ::mbedtls_ecdsa_context structure. |
Ron Eldor | 05d0e51 | 2018-04-16 17:40:04 +0300 | [diff] [blame] | 358 | */ |
Dawid Drozd | 428cc52 | 2018-07-24 10:02:47 +0200 | [diff] [blame] | 359 | typedef struct mbedtls_ecp_keypair |
Ron Eldor | 05d0e51 | 2018-04-16 17:40:04 +0300 | [diff] [blame] | 360 | { |
| 361 | mbedtls_ecp_group grp; /*!< Elliptic curve and base point */ |
| 362 | mbedtls_mpi d; /*!< our secret value */ |
| 363 | mbedtls_ecp_point Q; /*!< our public value */ |
| 364 | } |
| 365 | mbedtls_ecp_keypair; |
| 366 | |
Manuel Pégourié-Gonnard | 37d218a | 2012-11-24 15:19:55 +0100 | [diff] [blame] | 367 | /* |
Manuel Pégourié-Gonnard | 0079405 | 2013-02-09 19:00:07 +0100 | [diff] [blame] | 368 | * Point formats, from RFC 4492's enum ECPointFormat |
Manuel Pégourié-Gonnard | 37d218a | 2012-11-24 15:19:55 +0100 | [diff] [blame] | 369 | */ |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 370 | #define MBEDTLS_ECP_PF_UNCOMPRESSED 0 /**< Uncompressed point format. */ |
| 371 | #define MBEDTLS_ECP_PF_COMPRESSED 1 /**< Compressed point format. */ |
Manuel Pégourié-Gonnard | 37d218a | 2012-11-24 15:19:55 +0100 | [diff] [blame] | 372 | |
Manuel Pégourié-Gonnard | 1a96728 | 2013-02-09 17:03:58 +0100 | [diff] [blame] | 373 | /* |
Manuel Pégourié-Gonnard | 0079405 | 2013-02-09 19:00:07 +0100 | [diff] [blame] | 374 | * Some other constants from RFC 4492 |
Manuel Pégourié-Gonnard | 1a96728 | 2013-02-09 17:03:58 +0100 | [diff] [blame] | 375 | */ |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 376 | #define MBEDTLS_ECP_TLS_NAMED_CURVE 3 /**< The named_curve of ECCurveType. */ |
Manuel Pégourié-Gonnard | 1a96728 | 2013-02-09 17:03:58 +0100 | [diff] [blame] | 377 | |
Manuel Pégourié-Gonnard | 4b9c51e | 2017-04-20 15:50:26 +0200 | [diff] [blame] | 378 | #if defined(MBEDTLS_ECP_RESTARTABLE) |
Manuel Pégourié-Gonnard | 054433c | 2017-03-22 11:18:33 +0100 | [diff] [blame] | 379 | /** |
| 380 | * \brief Set the maximum number of basic operations done in a row. |
| 381 | * |
| 382 | * If more operations are needed to complete a computation, |
Manuel Pégourié-Gonnard | 12e4a8b | 2018-09-12 10:55:15 +0200 | [diff] [blame] | 383 | * #MBEDTLS_ERR_ECP_IN_PROGRESS will be returned by the |
Manuel Pégourié-Gonnard | 8467e68 | 2017-04-20 09:47:06 +0200 | [diff] [blame] | 384 | * function performing the computation. It is then the |
| 385 | * caller's responsibility to either call again with the same |
Manuel Pégourié-Gonnard | 7037e22 | 2017-08-23 14:30:36 +0200 | [diff] [blame] | 386 | * parameters until it returns 0 or an error code; or to free |
Manuel Pégourié-Gonnard | 8467e68 | 2017-04-20 09:47:06 +0200 | [diff] [blame] | 387 | * the restart context if the operation is to be aborted. |
Manuel Pégourié-Gonnard | 054433c | 2017-03-22 11:18:33 +0100 | [diff] [blame] | 388 | * |
Manuel Pégourié-Gonnard | 7037e22 | 2017-08-23 14:30:36 +0200 | [diff] [blame] | 389 | * It is strictly required that all input parameters and the |
| 390 | * restart context be the same on successive calls for the |
| 391 | * same operation, but output parameters need not be the |
| 392 | * same; they must not be used until the function finally |
| 393 | * returns 0. |
| 394 | * |
Manuel Pégourié-Gonnard | 32df911 | 2018-10-15 13:29:21 +0200 | [diff] [blame] | 395 | * This only applies to functions whose documentation |
| 396 | * mentions they may return #MBEDTLS_ERR_ECP_IN_PROGRESS (or |
| 397 | * #MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS for functions in the |
| 398 | * SSL module). For functions that accept a "restart context" |
| 399 | * argument, passing NULL disables restart and makes the |
| 400 | * function equivalent to the function with the same name |
| 401 | * with \c _restartable removed. For functions in the ECDH |
| 402 | * module, restart is disabled unless the function accepts |
| 403 | * an "ECDH context" argument and |
| 404 | * mbedtls_ecdh_enable_restart() was previously called on |
| 405 | * that context. For function in the SSL module, restart is |
| 406 | * only enabled for specific sides and key exchanges |
| 407 | * (currently only for clients and ECDHE-ECDSA). |
Manuel Pégourié-Gonnard | 8f28add | 2017-04-19 10:20:49 +0200 | [diff] [blame] | 408 | * |
Manuel Pégourié-Gonnard | 054433c | 2017-03-22 11:18:33 +0100 | [diff] [blame] | 409 | * \param max_ops Maximum number of basic operations done in a row. |
| 410 | * Default: 0 (unlimited). |
| 411 | * Lower (non-zero) values mean ECC functions will block for |
| 412 | * a lesser maximum amount of time. |
| 413 | * |
Manuel Pégourié-Gonnard | e685449 | 2017-03-20 14:35:19 +0100 | [diff] [blame] | 414 | * \note A "basic operation" is defined as a rough equivalent of a |
| 415 | * multiplication in GF(p) for the NIST P-256 curve. |
| 416 | * As an indication, with default settings, a scalar |
| 417 | * multiplication (full run of \c mbedtls_ecp_mul()) is: |
| 418 | * - about 3300 basic operations for P-256 |
| 419 | * - about 9400 basic operations for P-384 |
Manuel Pégourié-Gonnard | 054433c | 2017-03-22 11:18:33 +0100 | [diff] [blame] | 420 | * |
Manuel Pégourié-Gonnard | e58f65a | 2017-03-20 14:59:54 +0100 | [diff] [blame] | 421 | * \note Very low values are not always respected: sometimes |
Manuel Pégourié-Gonnard | 1c678e0 | 2017-03-20 13:39:39 +0100 | [diff] [blame] | 422 | * functions need to block for a minimum number of |
| 423 | * operations, and will do so even if max_ops is set to a |
| 424 | * lower value. That minimum depends on the curve size, and |
| 425 | * can be made lower by decreasing the value of |
Manuel Pégourié-Gonnard | 7037e22 | 2017-08-23 14:30:36 +0200 | [diff] [blame] | 426 | * \c MBEDTLS_ECP_WINDOW_SIZE. As an indication, here is the |
| 427 | * lowest effective value for various curves and values of |
| 428 | * that parameter (w for short): |
| 429 | * w=6 w=5 w=4 w=3 w=2 |
| 430 | * P-256 208 208 160 136 124 |
| 431 | * P-384 682 416 320 272 248 |
| 432 | * P-521 1364 832 640 544 496 |
Manuel Pégourié-Gonnard | e58f65a | 2017-03-20 14:59:54 +0100 | [diff] [blame] | 433 | * |
Manuel Pégourié-Gonnard | 12e4a8b | 2018-09-12 10:55:15 +0200 | [diff] [blame] | 434 | * \note This setting is currently ignored by Curve25519. |
Manuel Pégourié-Gonnard | 054433c | 2017-03-22 11:18:33 +0100 | [diff] [blame] | 435 | */ |
| 436 | void mbedtls_ecp_set_max_ops( unsigned max_ops ); |
Manuel Pégourié-Gonnard | a0c5bcc | 2017-04-21 11:33:57 +0200 | [diff] [blame] | 437 | |
| 438 | /** |
| 439 | * \brief Check if restart is enabled (max_ops != 0) |
| 440 | * |
Manuel Pégourié-Gonnard | 12e4a8b | 2018-09-12 10:55:15 +0200 | [diff] [blame] | 441 | * \return \c 0 if \c max_ops == 0 (restart disabled) |
| 442 | * \return \c 1 otherwise (restart enabled) |
Manuel Pégourié-Gonnard | a0c5bcc | 2017-04-21 11:33:57 +0200 | [diff] [blame] | 443 | */ |
Manuel Pégourié-Gonnard | b843b15 | 2018-10-16 10:41:31 +0200 | [diff] [blame] | 444 | int mbedtls_ecp_restart_is_enabled( void ); |
Manuel Pégourié-Gonnard | 4b9c51e | 2017-04-20 15:50:26 +0200 | [diff] [blame] | 445 | #endif /* MBEDTLS_ECP_RESTARTABLE */ |
Manuel Pégourié-Gonnard | 054433c | 2017-03-22 11:18:33 +0100 | [diff] [blame] | 446 | |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 447 | /** |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 448 | * \brief This function retrieves the information defined in |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 449 | * mbedtls_ecp_curve_info() for all supported curves in order |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 450 | * of preference. |
Manuel Pégourié-Gonnard | da179e4 | 2013-09-18 15:31:24 +0200 | [diff] [blame] | 451 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 452 | * \return A statically allocated array. The last entry is 0. |
Manuel Pégourié-Gonnard | da179e4 | 2013-09-18 15:31:24 +0200 | [diff] [blame] | 453 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 454 | const mbedtls_ecp_curve_info *mbedtls_ecp_curve_list( void ); |
Manuel Pégourié-Gonnard | da179e4 | 2013-09-18 15:31:24 +0200 | [diff] [blame] | 455 | |
| 456 | /** |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 457 | * \brief This function retrieves the list of internal group |
| 458 | * identifiers of all supported curves in the order of |
| 459 | * preference. |
Manuel Pégourié-Gonnard | ac71941 | 2014-02-04 14:48:50 +0100 | [diff] [blame] | 460 | * |
| 461 | * \return A statically allocated array, |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 462 | * terminated with MBEDTLS_ECP_DP_NONE. |
Manuel Pégourié-Gonnard | ac71941 | 2014-02-04 14:48:50 +0100 | [diff] [blame] | 463 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 464 | const mbedtls_ecp_group_id *mbedtls_ecp_grp_id_list( void ); |
Manuel Pégourié-Gonnard | ac71941 | 2014-02-04 14:48:50 +0100 | [diff] [blame] | 465 | |
| 466 | /** |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 467 | * \brief This function retrieves curve information from an internal |
| 468 | * group identifier. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 469 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 470 | * \param grp_id An \c MBEDTLS_ECP_DP_XXX value. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 471 | * |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 472 | * \return The associated curve information on success. |
| 473 | * \return NULL on failure. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 474 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 475 | const mbedtls_ecp_curve_info *mbedtls_ecp_curve_info_from_grp_id( mbedtls_ecp_group_id grp_id ); |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 476 | |
| 477 | /** |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 478 | * \brief This function retrieves curve information from a TLS |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 479 | * NamedCurve value. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 480 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 481 | * \param tls_id An \c MBEDTLS_ECP_DP_XXX value. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 482 | * |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 483 | * \return The associated curve information on success. |
| 484 | * \return NULL on failure. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 485 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 486 | const mbedtls_ecp_curve_info *mbedtls_ecp_curve_info_from_tls_id( uint16_t tls_id ); |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 487 | |
| 488 | /** |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 489 | * \brief This function retrieves curve information from a |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 490 | * human-readable name. |
Manuel Pégourié-Gonnard | 0267e3d | 2013-11-30 15:10:14 +0100 | [diff] [blame] | 491 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 492 | * \param name The human-readable name. |
Manuel Pégourié-Gonnard | 0267e3d | 2013-11-30 15:10:14 +0100 | [diff] [blame] | 493 | * |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 494 | * \return The associated curve information on success. |
| 495 | * \return NULL on failure. |
Manuel Pégourié-Gonnard | 0267e3d | 2013-11-30 15:10:14 +0100 | [diff] [blame] | 496 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 497 | const mbedtls_ecp_curve_info *mbedtls_ecp_curve_info_from_name( const char *name ); |
Manuel Pégourié-Gonnard | 0267e3d | 2013-11-30 15:10:14 +0100 | [diff] [blame] | 498 | |
| 499 | /** |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 500 | * \brief This function initializes a point as zero. |
| 501 | * |
| 502 | * \param pt The point to initialize. |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 503 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 504 | void mbedtls_ecp_point_init( mbedtls_ecp_point *pt ); |
Manuel Pégourié-Gonnard | ae180d0 | 2012-11-02 18:14:40 +0100 | [diff] [blame] | 505 | |
| 506 | /** |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 507 | * \brief This function initializes an ECP group context |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 508 | * without loading any domain parameters. |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 509 | * |
| 510 | * \note After this function is called, domain parameters |
| 511 | * for various ECP groups can be loaded through the |
Gilles Peskine | 4dc50bc | 2018-11-07 22:06:48 +0100 | [diff] [blame] | 512 | * mbedtls_ecp_group_load() or mbedtls_ecp_tls_read_group() |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 513 | * functions. |
Manuel Pégourié-Gonnard | b505c27 | 2012-11-05 17:27:54 +0100 | [diff] [blame] | 514 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 515 | void mbedtls_ecp_group_init( mbedtls_ecp_group *grp ); |
Manuel Pégourié-Gonnard | b505c27 | 2012-11-05 17:27:54 +0100 | [diff] [blame] | 516 | |
| 517 | /** |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 518 | * \brief This function initializes a key pair as an invalid one. |
| 519 | * |
| 520 | * \param key The key pair to initialize. |
Manuel Pégourié-Gonnard | b8c6e0e | 2013-07-01 13:40:52 +0200 | [diff] [blame] | 521 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 522 | void mbedtls_ecp_keypair_init( mbedtls_ecp_keypair *key ); |
Manuel Pégourié-Gonnard | b8c6e0e | 2013-07-01 13:40:52 +0200 | [diff] [blame] | 523 | |
| 524 | /** |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 525 | * \brief This function frees the components of a point. |
| 526 | * |
| 527 | * \param pt The point to free. |
Manuel Pégourié-Gonnard | 883f313 | 2012-11-02 09:40:25 +0100 | [diff] [blame] | 528 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 529 | void mbedtls_ecp_point_free( mbedtls_ecp_point *pt ); |
Manuel Pégourié-Gonnard | 883f313 | 2012-11-02 09:40:25 +0100 | [diff] [blame] | 530 | |
| 531 | /** |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 532 | * \brief This function frees the components of an ECP group. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 533 | * |
| 534 | * \param grp The group to free. This may be \c NULL, in which |
Hanno Becker | 486f1b3 | 2018-12-18 13:00:34 +0000 | [diff] [blame] | 535 | * case this function returns immediately. If it is not |
| 536 | * \c NULL, it must point to an initialized ECP group. |
Manuel Pégourié-Gonnard | 883f313 | 2012-11-02 09:40:25 +0100 | [diff] [blame] | 537 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 538 | void mbedtls_ecp_group_free( mbedtls_ecp_group *grp ); |
Manuel Pégourié-Gonnard | 883f313 | 2012-11-02 09:40:25 +0100 | [diff] [blame] | 539 | |
| 540 | /** |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 541 | * \brief This function frees the components of a key pair. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 542 | * |
| 543 | * \param key The key pair to free. This may be \c NULL, in which |
Hanno Becker | 486f1b3 | 2018-12-18 13:00:34 +0000 | [diff] [blame] | 544 | * case this function returns immediately. If it is not |
| 545 | * \c NULL, it must point to an initialized ECP key pair. |
Manuel Pégourié-Gonnard | b8c6e0e | 2013-07-01 13:40:52 +0200 | [diff] [blame] | 546 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 547 | void mbedtls_ecp_keypair_free( mbedtls_ecp_keypair *key ); |
Manuel Pégourié-Gonnard | b8c6e0e | 2013-07-01 13:40:52 +0200 | [diff] [blame] | 548 | |
Manuel Pégourié-Gonnard | 4b9c51e | 2017-04-20 15:50:26 +0200 | [diff] [blame] | 549 | #if defined(MBEDTLS_ECP_RESTARTABLE) |
Manuel Pégourié-Gonnard | b739a71 | 2017-04-19 10:11:56 +0200 | [diff] [blame] | 550 | /** |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 551 | * \brief Initialize a restart context. |
| 552 | * |
| 553 | * \param ctx The restart context to initialize. This must |
| 554 | * not be \c NULL. |
Manuel Pégourié-Gonnard | b739a71 | 2017-04-19 10:11:56 +0200 | [diff] [blame] | 555 | */ |
| 556 | void mbedtls_ecp_restart_init( mbedtls_ecp_restart_ctx *ctx ); |
| 557 | |
| 558 | /** |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 559 | * \brief Free the components of a restart context. |
| 560 | * |
| 561 | * \param ctx The restart context to free. This may be \c NULL, in which |
Hanno Becker | 486f1b3 | 2018-12-18 13:00:34 +0000 | [diff] [blame] | 562 | * case this function returns immediately. If it is not |
| 563 | * \c NULL, it must point to an initialized restart context. |
Manuel Pégourié-Gonnard | b739a71 | 2017-04-19 10:11:56 +0200 | [diff] [blame] | 564 | */ |
| 565 | void mbedtls_ecp_restart_free( mbedtls_ecp_restart_ctx *ctx ); |
Manuel Pégourié-Gonnard | 4b9c51e | 2017-04-20 15:50:26 +0200 | [diff] [blame] | 566 | #endif /* MBEDTLS_ECP_RESTARTABLE */ |
Manuel Pégourié-Gonnard | b739a71 | 2017-04-19 10:11:56 +0200 | [diff] [blame] | 567 | |
Manuel Pégourié-Gonnard | b8c6e0e | 2013-07-01 13:40:52 +0200 | [diff] [blame] | 568 | /** |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 569 | * \brief This function copies the contents of point \p Q into |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 570 | * point \p P. |
Manuel Pégourié-Gonnard | 883f313 | 2012-11-02 09:40:25 +0100 | [diff] [blame] | 571 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 572 | * \param P The destination point. This must be initialized. |
| 573 | * \param Q The source point. This must be initialized. |
Manuel Pégourié-Gonnard | 883f313 | 2012-11-02 09:40:25 +0100 | [diff] [blame] | 574 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 575 | * \return \c 0 on success. |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 576 | * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 577 | * \return Another negative error code for other kinds of failure. |
Manuel Pégourié-Gonnard | 883f313 | 2012-11-02 09:40:25 +0100 | [diff] [blame] | 578 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 579 | int mbedtls_ecp_copy( mbedtls_ecp_point *P, const mbedtls_ecp_point *Q ); |
Manuel Pégourié-Gonnard | 883f313 | 2012-11-02 09:40:25 +0100 | [diff] [blame] | 580 | |
| 581 | /** |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 582 | * \brief This function copies the contents of group \p src into |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 583 | * group \p dst. |
Manuel Pégourié-Gonnard | e09631b | 2013-08-12 15:44:31 +0200 | [diff] [blame] | 584 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 585 | * \param dst The destination group. This must be initialized. |
| 586 | * \param src The source group. This must be initialized. |
Manuel Pégourié-Gonnard | e09631b | 2013-08-12 15:44:31 +0200 | [diff] [blame] | 587 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 588 | * \return \c 0 on success. |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 589 | * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 590 | * \return Another negative error code on other kinds of failure. |
Manuel Pégourié-Gonnard | e09631b | 2013-08-12 15:44:31 +0200 | [diff] [blame] | 591 | */ |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 592 | int mbedtls_ecp_group_copy( mbedtls_ecp_group *dst, |
| 593 | const mbedtls_ecp_group *src ); |
Manuel Pégourié-Gonnard | e09631b | 2013-08-12 15:44:31 +0200 | [diff] [blame] | 594 | |
| 595 | /** |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 596 | * \brief This function sets a point to the point at infinity. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 597 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 598 | * \param pt The point to set. This must be initialized. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 599 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 600 | * \return \c 0 on success. |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 601 | * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 602 | * \return Another negative error code on other kinds of failure. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 603 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 604 | int mbedtls_ecp_set_zero( mbedtls_ecp_point *pt ); |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 605 | |
| 606 | /** |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 607 | * \brief This function checks if a point is the point at infinity. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 608 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 609 | * \param pt The point to test. This must be initialized. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 610 | * |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 611 | * \return \c 1 if the point is zero. |
| 612 | * \return \c 0 if the point is non-zero. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 613 | * \return A negative error code on failure. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 614 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 615 | int mbedtls_ecp_is_zero( mbedtls_ecp_point *pt ); |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 616 | |
| 617 | /** |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 618 | * \brief This function compares two points. |
Manuel Pégourié-Gonnard | 6029a85 | 2015-08-11 15:44:41 +0200 | [diff] [blame] | 619 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 620 | * \note This assumes that the points are normalized. Otherwise, |
Manuel Pégourié-Gonnard | 6029a85 | 2015-08-11 15:44:41 +0200 | [diff] [blame] | 621 | * they may compare as "not equal" even if they are. |
| 622 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 623 | * \param P The first point to compare. This must be initialized. |
| 624 | * \param Q The second point to compare. This must be initialized. |
Manuel Pégourié-Gonnard | 6029a85 | 2015-08-11 15:44:41 +0200 | [diff] [blame] | 625 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 626 | * \return \c 0 if the points are equal. |
| 627 | * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if the points are not equal. |
Manuel Pégourié-Gonnard | 6029a85 | 2015-08-11 15:44:41 +0200 | [diff] [blame] | 628 | */ |
| 629 | int mbedtls_ecp_point_cmp( const mbedtls_ecp_point *P, |
| 630 | const mbedtls_ecp_point *Q ); |
| 631 | |
| 632 | /** |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 633 | * \brief This function imports a non-zero point from two ASCII |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 634 | * strings. |
Manuel Pégourié-Gonnard | 847395a | 2012-11-05 13:13:44 +0100 | [diff] [blame] | 635 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 636 | * \param P The destination point. This must be initialized. |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 637 | * \param radix The numeric base of the input. |
| 638 | * \param x The first affine coordinate, as a null-terminated string. |
| 639 | * \param y The second affine coordinate, as a null-terminated string. |
Manuel Pégourié-Gonnard | 847395a | 2012-11-05 13:13:44 +0100 | [diff] [blame] | 640 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 641 | * \return \c 0 on success. |
| 642 | * \return An \c MBEDTLS_ERR_MPI_XXX error code on failure. |
Manuel Pégourié-Gonnard | 847395a | 2012-11-05 13:13:44 +0100 | [diff] [blame] | 643 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 644 | int mbedtls_ecp_point_read_string( mbedtls_ecp_point *P, int radix, |
Manuel Pégourié-Gonnard | 847395a | 2012-11-05 13:13:44 +0100 | [diff] [blame] | 645 | const char *x, const char *y ); |
| 646 | |
| 647 | /** |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 648 | * \brief This function exports a point into unsigned binary data. |
Manuel Pégourié-Gonnard | e19feb5 | 2012-11-24 14:10:14 +0100 | [diff] [blame] | 649 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 650 | * \param grp The group to which the point should belong. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 651 | * This must be initialized and have group parameters |
| 652 | * set, for example through mbedtls_ecp_group_load(). |
| 653 | * \param P The point to export. This must be initialized. |
| 654 | * \param format The point format. This must be either |
| 655 | * #MBEDTLS_ECP_PF_COMPRESSED or #MBEDTLS_ECP_PF_UNCOMPRESSED. |
| 656 | * \param olen The address at which to store the length of |
Hanno Becker | 5edcfa5 | 2018-12-18 12:49:55 +0000 | [diff] [blame] | 657 | * the output in Bytes. This must not be \c NULL. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 658 | * \param buf The output buffer. This must be a writable buffer |
| 659 | * of length \p buflen Bytes. |
| 660 | * \param buflen The length of the output buffer \p buf in Bytes. |
Manuel Pégourié-Gonnard | e19feb5 | 2012-11-24 14:10:14 +0100 | [diff] [blame] | 661 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 662 | * \return \c 0 on success. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 663 | * \return #MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL if the output buffer |
| 664 | * is too small to hold the point. |
| 665 | * \return Another negative error code on other kinds of failure. |
Manuel Pégourié-Gonnard | e19feb5 | 2012-11-24 14:10:14 +0100 | [diff] [blame] | 666 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 667 | int mbedtls_ecp_point_write_binary( const mbedtls_ecp_group *grp, const mbedtls_ecp_point *P, |
Manuel Pégourié-Gonnard | 420f1eb | 2013-02-10 12:22:46 +0100 | [diff] [blame] | 668 | int format, size_t *olen, |
Manuel Pégourié-Gonnard | 7e86025 | 2013-02-10 10:58:48 +0100 | [diff] [blame] | 669 | unsigned char *buf, size_t buflen ); |
Manuel Pégourié-Gonnard | e19feb5 | 2012-11-24 14:10:14 +0100 | [diff] [blame] | 670 | |
| 671 | /** |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 672 | * \brief This function imports a point from unsigned binary data. |
Manuel Pégourié-Gonnard | 5e402d8 | 2012-11-24 16:19:42 +0100 | [diff] [blame] | 673 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 674 | * \note This function does not check that the point actually |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 675 | * belongs to the given group, see mbedtls_ecp_check_pubkey() |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 676 | * for that. |
Manuel Pégourié-Gonnard | 5e402d8 | 2012-11-24 16:19:42 +0100 | [diff] [blame] | 677 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 678 | * \param grp The group to which the point should belong. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 679 | * This must be initialized and have group parameters |
| 680 | * set, for example through mbedtls_ecp_group_load(). |
| 681 | * \param P The destination context to import the point to. |
| 682 | * This must be initialized. |
| 683 | * \param buf The input buffer. This must be a readable buffer |
| 684 | * of length \p ilen Bytes. |
| 685 | * \param ilen The length of the input buffer \p buf in Bytes. |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 686 | * |
| 687 | * \return \c 0 on success. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 688 | * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if the input is invalid. |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 689 | * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure. |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 690 | * \return #MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE if the point format |
Manuel Pégourié-Gonnard | 5246ee5 | 2014-03-19 16:18:38 +0100 | [diff] [blame] | 691 | * is not implemented. |
Manuel Pégourié-Gonnard | 5e402d8 | 2012-11-24 16:19:42 +0100 | [diff] [blame] | 692 | */ |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 693 | int mbedtls_ecp_point_read_binary( const mbedtls_ecp_group *grp, |
| 694 | mbedtls_ecp_point *P, |
| 695 | const unsigned char *buf, size_t ilen ); |
Manuel Pégourié-Gonnard | 1a96728 | 2013-02-09 17:03:58 +0100 | [diff] [blame] | 696 | |
Manuel Pégourié-Gonnard | 5e402d8 | 2012-11-24 16:19:42 +0100 | [diff] [blame] | 697 | /** |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 698 | * \brief This function imports a point from a TLS ECPoint record. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 699 | * |
Janos Follath | 89ac8c9 | 2018-10-30 11:24:05 +0000 | [diff] [blame] | 700 | * \note On function return, \p *buf is updated to point immediately |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 701 | * after the ECPoint record. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 702 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 703 | * \param grp The ECP group to use. |
| 704 | * This must be initialized and have group parameters |
| 705 | * set, for example through mbedtls_ecp_group_load(). |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 706 | * \param pt The destination point. |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 707 | * \param buf The address of the pointer to the start of the input buffer. |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 708 | * \param len The length of the buffer. |
Manuel Pégourié-Gonnard | 150c4f6 | 2014-11-21 09:14:52 +0100 | [diff] [blame] | 709 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 710 | * \return \c 0 on success. |
Janos Follath | 89ac8c9 | 2018-10-30 11:24:05 +0000 | [diff] [blame] | 711 | * \return An \c MBEDTLS_ERR_MPI_XXX error code on initialization |
| 712 | * failure. |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 713 | * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if input is invalid. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 714 | */ |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 715 | int mbedtls_ecp_tls_read_point( const mbedtls_ecp_group *grp, |
| 716 | mbedtls_ecp_point *pt, |
| 717 | const unsigned char **buf, size_t len ); |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 718 | |
| 719 | /** |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 720 | * \brief This function exports a point as a TLS ECPoint record |
| 721 | * defined in RFC 4492, Section 5.4. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 722 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 723 | * \param grp The ECP group to use. |
| 724 | * This must be initialized and have group parameters |
| 725 | * set, for example through mbedtls_ecp_group_load(). |
| 726 | * \param pt The point to be exported. This must be initialized. |
| 727 | * \param format The point format to use. This must be either |
| 728 | * #MBEDTLS_ECP_PF_COMPRESSED or #MBEDTLS_ECP_PF_UNCOMPRESSED. |
| 729 | * \param olen The address at which to store the length in Bytes |
| 730 | * of the data written. |
| 731 | * \param buf The target buffer. This must be a writable buffer of |
| 732 | * length \p blen Bytes. |
| 733 | * \param blen The length of the target buffer \p buf in Bytes. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 734 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 735 | * \return \c 0 on success. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 736 | * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if the input is invalid. |
| 737 | * \return #MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL if the target buffer |
| 738 | * is too small to hold the exported point. |
| 739 | * \return Another negative error code on other kinds of failure. |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 740 | */ |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 741 | int mbedtls_ecp_tls_write_point( const mbedtls_ecp_group *grp, |
| 742 | const mbedtls_ecp_point *pt, |
| 743 | int format, size_t *olen, |
| 744 | unsigned char *buf, size_t blen ); |
Manuel Pégourié-Gonnard | cae6f3e | 2013-10-23 20:19:57 +0200 | [diff] [blame] | 745 | |
| 746 | /** |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 747 | * \brief This function sets up an ECP group context |
| 748 | * from a standardized set of domain parameters. |
Manuel Pégourié-Gonnard | a5402fe | 2012-11-07 20:24:05 +0100 | [diff] [blame] | 749 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 750 | * \note The index should be a value of the NamedCurve enum, |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 751 | * as defined in <em>RFC-4492: Elliptic Curve Cryptography |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 752 | * (ECC) Cipher Suites for Transport Layer Security (TLS)</em>, |
| 753 | * usually in the form of an \c MBEDTLS_ECP_DP_XXX macro. |
Manuel Pégourié-Gonnard | a5402fe | 2012-11-07 20:24:05 +0100 | [diff] [blame] | 754 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 755 | * \param grp The group context to setup. This must be initialized. |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 756 | * \param id The identifier of the domain parameter set to load. |
Manuel Pégourié-Gonnard | a5402fe | 2012-11-07 20:24:05 +0100 | [diff] [blame] | 757 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 758 | * \return \c 0 on success. |
| 759 | * \return #MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE if \p id doesn't |
| 760 | * correspond to a known group. |
| 761 | * \return Another negative error code on other kinds of failure. |
Manuel Pégourié-Gonnard | a5402fe | 2012-11-07 20:24:05 +0100 | [diff] [blame] | 762 | */ |
Hanno Becker | 61937d4 | 2017-04-26 15:01:23 +0100 | [diff] [blame] | 763 | int mbedtls_ecp_group_load( mbedtls_ecp_group *grp, mbedtls_ecp_group_id id ); |
Manuel Pégourié-Gonnard | 1a96728 | 2013-02-09 17:03:58 +0100 | [diff] [blame] | 764 | |
| 765 | /** |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 766 | * \brief This function sets up an ECP group context from a TLS |
| 767 | * ECParameters record as defined in RFC 4492, Section 5.4. |
Manuel Pégourié-Gonnard | 1a96728 | 2013-02-09 17:03:58 +0100 | [diff] [blame] | 768 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 769 | * \note The read pointer \p buf is updated to point right after |
| 770 | * the ECParameters record on exit. |
Manuel Pégourié-Gonnard | 1a96728 | 2013-02-09 17:03:58 +0100 | [diff] [blame] | 771 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 772 | * \param grp The group context to setup. This must be initialized. |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 773 | * \param buf The address of the pointer to the start of the input buffer. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 774 | * \param len The length of the input buffer \c *buf in Bytes. |
Manuel Pégourié-Gonnard | 150c4f6 | 2014-11-21 09:14:52 +0100 | [diff] [blame] | 775 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 776 | * \return \c 0 on success. |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 777 | * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if input is invalid. |
Janos Follath | 89ac8c9 | 2018-10-30 11:24:05 +0000 | [diff] [blame] | 778 | * \return #MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE if the group is not |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 779 | * recognized. |
| 780 | * \return Another negative error code on other kinds of failure. |
Manuel Pégourié-Gonnard | 1a96728 | 2013-02-09 17:03:58 +0100 | [diff] [blame] | 781 | */ |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 782 | int mbedtls_ecp_tls_read_group( mbedtls_ecp_group *grp, |
| 783 | const unsigned char **buf, size_t len ); |
Manuel Pégourié-Gonnard | a5402fe | 2012-11-07 20:24:05 +0100 | [diff] [blame] | 784 | |
| 785 | /** |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 786 | * \brief This function extracts an elliptic curve group ID from a |
| 787 | * TLS ECParameters record as defined in RFC 4492, Section 5.4. |
Janos Follath | 89ac8c9 | 2018-10-30 11:24:05 +0000 | [diff] [blame] | 788 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 789 | * \note The read pointer \p buf is updated to point right after |
| 790 | * the ECParameters record on exit. |
Janos Follath | 89ac8c9 | 2018-10-30 11:24:05 +0000 | [diff] [blame] | 791 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 792 | * \param grp The address at which to store the group id. |
| 793 | * This must not be \c NULL. |
Janos Follath | 89ac8c9 | 2018-10-30 11:24:05 +0000 | [diff] [blame] | 794 | * \param buf The address of the pointer to the start of the input buffer. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 795 | * \param len The length of the input buffer \c *buf in Bytes. |
Janos Follath | 89ac8c9 | 2018-10-30 11:24:05 +0000 | [diff] [blame] | 796 | * |
| 797 | * \return \c 0 on success. |
| 798 | * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if input is invalid. |
| 799 | * \return #MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE if the group is not |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 800 | * recognized. |
| 801 | * \return Another negative error code on other kinds of failure. |
Janos Follath | 89ac8c9 | 2018-10-30 11:24:05 +0000 | [diff] [blame] | 802 | */ |
| 803 | int mbedtls_ecp_tls_read_group_id( mbedtls_ecp_group_id *grp, |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 804 | const unsigned char **buf, |
| 805 | size_t len ); |
Janos Follath | 89ac8c9 | 2018-10-30 11:24:05 +0000 | [diff] [blame] | 806 | /** |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 807 | * \brief This function exports an elliptic curve as a TLS |
| 808 | * ECParameters record as defined in RFC 4492, Section 5.4. |
Manuel Pégourié-Gonnard | b325887 | 2013-02-10 12:06:19 +0100 | [diff] [blame] | 809 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 810 | * \param grp The ECP group to be exported. |
| 811 | * This must be initialized and have group parameters |
| 812 | * set, for example through mbedtls_ecp_group_load(). |
| 813 | * \param olen The address at which to store the number of Bytes written. |
| 814 | * This must not be \c NULL. |
| 815 | * \param buf The buffer to write to. This must be a writable buffer |
| 816 | * of length \p blen Bytes. |
| 817 | * \param blen The length of the output buffer \p buf in Bytes. |
Manuel Pégourié-Gonnard | b325887 | 2013-02-10 12:06:19 +0100 | [diff] [blame] | 818 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 819 | * \return \c 0 on success. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 820 | * \return #MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL if the output |
| 821 | * buffer is too small to hold the exported group. |
| 822 | * \return Another negative error code on other kinds of failure. |
Manuel Pégourié-Gonnard | b325887 | 2013-02-10 12:06:19 +0100 | [diff] [blame] | 823 | */ |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 824 | int mbedtls_ecp_tls_write_group( const mbedtls_ecp_group *grp, |
| 825 | size_t *olen, |
| 826 | unsigned char *buf, size_t blen ); |
Manuel Pégourié-Gonnard | b325887 | 2013-02-10 12:06:19 +0100 | [diff] [blame] | 827 | |
| 828 | /** |
Hanno Becker | 5edcfa5 | 2018-12-18 12:49:55 +0000 | [diff] [blame] | 829 | * \brief This function performs a scalar multiplication of a point |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 830 | * by an integer: \p R = \p m * \p P. |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 831 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 832 | * It is not thread-safe to use same group in multiple threads. |
Manuel Pégourié-Gonnard | 56cc88a | 2015-05-11 18:40:45 +0200 | [diff] [blame] | 833 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 834 | * \note To prevent timing attacks, this function |
| 835 | * executes the exact same sequence of base-field |
| 836 | * operations for any valid \p m. It avoids any if-branch or |
| 837 | * array index depending on the value of \p m. |
Manuel Pégourié-Gonnard | 56cc88a | 2015-05-11 18:40:45 +0200 | [diff] [blame] | 838 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 839 | * \note If \p f_rng is not NULL, it is used to randomize |
| 840 | * intermediate results to prevent potential timing attacks |
| 841 | * targeting these results. We recommend always providing |
| 842 | * a non-NULL \p f_rng. The overhead is negligible. |
Manuel Pégourié-Gonnard | b34aeeb | 2020-06-04 10:20:12 +0200 | [diff] [blame] | 843 | * Note: unless #MBEDTLS_ECP_NO_INTERNAL_RNG is defined, when |
| 844 | * \p f_rng is NULL, an internal RNG (seeded from the value |
| 845 | * of \p m) will be used instead. |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 846 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 847 | * \param grp The ECP group to use. |
| 848 | * This must be initialized and have group parameters |
| 849 | * set, for example through mbedtls_ecp_group_load(). |
| 850 | * \param R The point in which to store the result of the calculation. |
| 851 | * This must be initialized. |
| 852 | * \param m The integer by which to multiply. This must be initialized. |
| 853 | * \param P The point to multiply. This must be initialized. |
| 854 | * \param f_rng The RNG function. This may be \c NULL if randomization |
| 855 | * of intermediate results isn't desired (discouraged). |
| 856 | * \param p_rng The RNG context to be passed to \p p_rng. |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 857 | * |
| 858 | * \return \c 0 on success. |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 859 | * \return #MBEDTLS_ERR_ECP_INVALID_KEY if \p m is not a valid private |
| 860 | * key, or \p P is not a valid public key. |
| 861 | * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 862 | * \return Another negative error code on other kinds of failure. |
Manuel Pégourié-Gonnard | b739a71 | 2017-04-19 10:11:56 +0200 | [diff] [blame] | 863 | */ |
| 864 | int mbedtls_ecp_mul( mbedtls_ecp_group *grp, mbedtls_ecp_point *R, |
| 865 | const mbedtls_mpi *m, const mbedtls_ecp_point *P, |
| 866 | int (*f_rng)(void *, unsigned char *, size_t), void *p_rng ); |
| 867 | |
Manuel Pégourié-Gonnard | b739a71 | 2017-04-19 10:11:56 +0200 | [diff] [blame] | 868 | /** |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 869 | * \brief This function performs multiplication of a point by |
| 870 | * an integer: \p R = \p m * \p P in a restartable way. |
Manuel Pégourié-Gonnard | b739a71 | 2017-04-19 10:11:56 +0200 | [diff] [blame] | 871 | * |
Manuel Pégourié-Gonnard | 12e4a8b | 2018-09-12 10:55:15 +0200 | [diff] [blame] | 872 | * \see mbedtls_ecp_mul() |
Manuel Pégourié-Gonnard | b739a71 | 2017-04-19 10:11:56 +0200 | [diff] [blame] | 873 | * |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 874 | * \note This function does the same as \c mbedtls_ecp_mul(), but |
| 875 | * it can return early and restart according to the limit set |
| 876 | * with \c mbedtls_ecp_set_max_ops() to reduce blocking. |
| 877 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 878 | * \param grp The ECP group to use. |
| 879 | * This must be initialized and have group parameters |
| 880 | * set, for example through mbedtls_ecp_group_load(). |
| 881 | * \param R The point in which to store the result of the calculation. |
| 882 | * This must be initialized. |
| 883 | * \param m The integer by which to multiply. This must be initialized. |
| 884 | * \param P The point to multiply. This must be initialized. |
| 885 | * \param f_rng The RNG function. This may be \c NULL if randomization |
| 886 | * of intermediate results isn't desired (discouraged). |
| 887 | * \param p_rng The RNG context to be passed to \p p_rng. |
Manuel Pégourié-Gonnard | f0bbd7e | 2018-10-15 13:22:41 +0200 | [diff] [blame] | 888 | * \param rs_ctx The restart context (NULL disables restart). |
Manuel Pégourié-Gonnard | b739a71 | 2017-04-19 10:11:56 +0200 | [diff] [blame] | 889 | * |
Manuel Pégourié-Gonnard | 12e4a8b | 2018-09-12 10:55:15 +0200 | [diff] [blame] | 890 | * \return \c 0 on success. |
| 891 | * \return #MBEDTLS_ERR_ECP_INVALID_KEY if \p m is not a valid private |
| 892 | * key, or \p P is not a valid public key. |
| 893 | * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure. |
| 894 | * \return #MBEDTLS_ERR_ECP_IN_PROGRESS if maximum number of |
Manuel Pégourié-Gonnard | 8467e68 | 2017-04-20 09:47:06 +0200 | [diff] [blame] | 895 | * operations was reached: see \c mbedtls_ecp_set_max_ops(). |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 896 | * \return Another negative error code on other kinds of failure. |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 897 | */ |
Manuel Pégourié-Gonnard | b739a71 | 2017-04-19 10:11:56 +0200 | [diff] [blame] | 898 | int mbedtls_ecp_mul_restartable( mbedtls_ecp_group *grp, mbedtls_ecp_point *R, |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 899 | const mbedtls_mpi *m, const mbedtls_ecp_point *P, |
Manuel Pégourié-Gonnard | b739a71 | 2017-04-19 10:11:56 +0200 | [diff] [blame] | 900 | int (*f_rng)(void *, unsigned char *, size_t), void *p_rng, |
| 901 | mbedtls_ecp_restart_ctx *rs_ctx ); |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 902 | |
| 903 | /** |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 904 | * \brief This function performs multiplication and addition of two |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 905 | * points by integers: \p R = \p m * \p P + \p n * \p Q |
Manuel Pégourié-Gonnard | 56cc88a | 2015-05-11 18:40:45 +0200 | [diff] [blame] | 906 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 907 | * It is not thread-safe to use same group in multiple threads. |
Manuel Pégourié-Gonnard | 56cc88a | 2015-05-11 18:40:45 +0200 | [diff] [blame] | 908 | * |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 909 | * \note In contrast to mbedtls_ecp_mul(), this function does not |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 910 | * guarantee a constant execution flow and timing. |
Manuel Pégourié-Gonnard | 56cc88a | 2015-05-11 18:40:45 +0200 | [diff] [blame] | 911 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 912 | * \param grp The ECP group to use. |
| 913 | * This must be initialized and have group parameters |
| 914 | * set, for example through mbedtls_ecp_group_load(). |
| 915 | * \param R The point in which to store the result of the calculation. |
| 916 | * This must be initialized. |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 917 | * \param m The integer by which to multiply \p P. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 918 | * This must be initialized. |
| 919 | * \param P The point to multiply by \p m. This must be initialized. |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 920 | * \param n The integer by which to multiply \p Q. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 921 | * This must be initialized. |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 922 | * \param Q The point to be multiplied by \p n. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 923 | * This must be initialized. |
Manuel Pégourié-Gonnard | 56cc88a | 2015-05-11 18:40:45 +0200 | [diff] [blame] | 924 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 925 | * \return \c 0 on success. |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 926 | * \return #MBEDTLS_ERR_ECP_INVALID_KEY if \p m or \p n are not |
| 927 | * valid private keys, or \p P or \p Q are not valid public |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 928 | * keys. |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 929 | * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 930 | * \return Another negative error code on other kinds of failure. |
Manuel Pégourié-Gonnard | 56cc88a | 2015-05-11 18:40:45 +0200 | [diff] [blame] | 931 | */ |
| 932 | int mbedtls_ecp_muladd( mbedtls_ecp_group *grp, mbedtls_ecp_point *R, |
| 933 | const mbedtls_mpi *m, const mbedtls_ecp_point *P, |
| 934 | const mbedtls_mpi *n, const mbedtls_ecp_point *Q ); |
| 935 | |
Manuel Pégourié-Gonnard | 54dd652 | 2017-04-20 13:36:18 +0200 | [diff] [blame] | 936 | /** |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 937 | * \brief This function performs multiplication and addition of two |
| 938 | * points by integers: \p R = \p m * \p P + \p n * \p Q in a |
Manuel Pégourié-Gonnard | 12e4a8b | 2018-09-12 10:55:15 +0200 | [diff] [blame] | 939 | * restartable way. |
Manuel Pégourié-Gonnard | 54dd652 | 2017-04-20 13:36:18 +0200 | [diff] [blame] | 940 | * |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 941 | * \see \c mbedtls_ecp_muladd() |
Manuel Pégourié-Gonnard | 54dd652 | 2017-04-20 13:36:18 +0200 | [diff] [blame] | 942 | * |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 943 | * \note This function works the same as \c mbedtls_ecp_muladd(), |
| 944 | * but it can return early and restart according to the limit |
| 945 | * set with \c mbedtls_ecp_set_max_ops() to reduce blocking. |
Manuel Pégourié-Gonnard | 54dd652 | 2017-04-20 13:36:18 +0200 | [diff] [blame] | 946 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 947 | * \param grp The ECP group to use. |
| 948 | * This must be initialized and have group parameters |
| 949 | * set, for example through mbedtls_ecp_group_load(). |
| 950 | * \param R The point in which to store the result of the calculation. |
| 951 | * This must be initialized. |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 952 | * \param m The integer by which to multiply \p P. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 953 | * This must be initialized. |
| 954 | * \param P The point to multiply by \p m. This must be initialized. |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 955 | * \param n The integer by which to multiply \p Q. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 956 | * This must be initialized. |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 957 | * \param Q The point to be multiplied by \p n. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 958 | * This must be initialized. |
Manuel Pégourié-Gonnard | f0bbd7e | 2018-10-15 13:22:41 +0200 | [diff] [blame] | 959 | * \param rs_ctx The restart context (NULL disables restart). |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 960 | * |
| 961 | * \return \c 0 on success. |
| 962 | * \return #MBEDTLS_ERR_ECP_INVALID_KEY if \p m or \p n are not |
| 963 | * valid private keys, or \p P or \p Q are not valid public |
| 964 | * keys. |
| 965 | * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED on memory-allocation failure. |
| 966 | * \return #MBEDTLS_ERR_ECP_IN_PROGRESS if maximum number of |
Manuel Pégourié-Gonnard | 54dd652 | 2017-04-20 13:36:18 +0200 | [diff] [blame] | 967 | * operations was reached: see \c mbedtls_ecp_set_max_ops(). |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 968 | * \return Another negative error code on other kinds of failure. |
Manuel Pégourié-Gonnard | 54dd652 | 2017-04-20 13:36:18 +0200 | [diff] [blame] | 969 | */ |
| 970 | int mbedtls_ecp_muladd_restartable( |
| 971 | mbedtls_ecp_group *grp, mbedtls_ecp_point *R, |
| 972 | const mbedtls_mpi *m, const mbedtls_ecp_point *P, |
| 973 | const mbedtls_mpi *n, const mbedtls_ecp_point *Q, |
| 974 | mbedtls_ecp_restart_ctx *rs_ctx ); |
Manuel Pégourié-Gonnard | 54dd652 | 2017-04-20 13:36:18 +0200 | [diff] [blame] | 975 | |
Manuel Pégourié-Gonnard | 56cc88a | 2015-05-11 18:40:45 +0200 | [diff] [blame] | 976 | /** |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 977 | * \brief This function checks that a point is a valid public key |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 978 | * on this curve. |
Manuel Pégourié-Gonnard | c8dc295 | 2013-07-01 14:06:13 +0200 | [diff] [blame] | 979 | * |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 980 | * It only checks that the point is non-zero, has |
| 981 | * valid coordinates and lies on the curve. It does not verify |
| 982 | * that it is indeed a multiple of \p G. This additional |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 983 | * check is computationally more expensive, is not required |
| 984 | * by standards, and should not be necessary if the group |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 985 | * used has a small cofactor. In particular, it is useless for |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 986 | * the NIST groups which all have a cofactor of 1. |
Manuel Pégourié-Gonnard | c8dc295 | 2013-07-01 14:06:13 +0200 | [diff] [blame] | 987 | * |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 988 | * \note This function uses bare components rather than an |
| 989 | * ::mbedtls_ecp_keypair structure, to ease use with other |
| 990 | * structures, such as ::mbedtls_ecdh_context or |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 991 | * ::mbedtls_ecdsa_context. |
Manuel Pégourié-Gonnard | c8dc295 | 2013-07-01 14:06:13 +0200 | [diff] [blame] | 992 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 993 | * \param grp The ECP group the point should belong to. |
| 994 | * This must be initialized and have group parameters |
| 995 | * set, for example through mbedtls_ecp_group_load(). |
| 996 | * \param pt The point to check. This must be initialized. |
Manuel Pégourié-Gonnard | c8dc295 | 2013-07-01 14:06:13 +0200 | [diff] [blame] | 997 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 998 | * \return \c 0 if the point is a valid public key. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 999 | * \return #MBEDTLS_ERR_ECP_INVALID_KEY if the point is not |
| 1000 | * a valid public key for the given curve. |
| 1001 | * \return Another negative error code on other kinds of failure. |
Manuel Pégourié-Gonnard | c8dc295 | 2013-07-01 14:06:13 +0200 | [diff] [blame] | 1002 | */ |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1003 | int mbedtls_ecp_check_pubkey( const mbedtls_ecp_group *grp, |
| 1004 | const mbedtls_ecp_point *pt ); |
Manuel Pégourié-Gonnard | c8dc295 | 2013-07-01 14:06:13 +0200 | [diff] [blame] | 1005 | |
| 1006 | /** |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1007 | * \brief This function checks that an \p mbedtls_mpi is a |
| 1008 | * valid private key for this curve. |
Manuel Pégourié-Gonnard | c8dc295 | 2013-07-01 14:06:13 +0200 | [diff] [blame] | 1009 | * |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 1010 | * \note This function uses bare components rather than an |
| 1011 | * ::mbedtls_ecp_keypair structure to ease use with other |
| 1012 | * structures, such as ::mbedtls_ecdh_context or |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 1013 | * ::mbedtls_ecdsa_context. |
Manuel Pégourié-Gonnard | c8dc295 | 2013-07-01 14:06:13 +0200 | [diff] [blame] | 1014 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1015 | * \param grp The ECP group the private key should belong to. |
| 1016 | * This must be initialized and have group parameters |
| 1017 | * set, for example through mbedtls_ecp_group_load(). |
| 1018 | * \param d The integer to check. This must be initialized. |
Manuel Pégourié-Gonnard | c8dc295 | 2013-07-01 14:06:13 +0200 | [diff] [blame] | 1019 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 1020 | * \return \c 0 if the point is a valid private key. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1021 | * \return #MBEDTLS_ERR_ECP_INVALID_KEY if the point is not a valid |
| 1022 | * private key for the given curve. |
| 1023 | * \return Another negative error code on other kinds of failure. |
Manuel Pégourié-Gonnard | c8dc295 | 2013-07-01 14:06:13 +0200 | [diff] [blame] | 1024 | */ |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1025 | int mbedtls_ecp_check_privkey( const mbedtls_ecp_group *grp, |
| 1026 | const mbedtls_mpi *d ); |
Manuel Pégourié-Gonnard | c8dc295 | 2013-07-01 14:06:13 +0200 | [diff] [blame] | 1027 | |
| 1028 | /** |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 1029 | * \brief This function generates a private key. |
Manuel Pégourié-Gonnard | a7937f9 | 2017-04-20 15:37:46 +0200 | [diff] [blame] | 1030 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1031 | * \param grp The ECP group to generate a private key for. |
| 1032 | * This must be initialized and have group parameters |
| 1033 | * set, for example through mbedtls_ecp_group_load(). |
| 1034 | * \param d The destination MPI (secret part). This must be initialized. |
| 1035 | * \param f_rng The RNG function. This must not be \c NULL. |
| 1036 | * \param p_rng The RNG parameter to be passed to \p f_rng. This may be |
| 1037 | * \c NULL if \p f_rng doesn't need a context argument. |
Manuel Pégourié-Gonnard | a7937f9 | 2017-04-20 15:37:46 +0200 | [diff] [blame] | 1038 | * |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 1039 | * \return \c 0 on success. |
| 1040 | * \return An \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_MPI_XXX error code |
| 1041 | * on failure. |
Manuel Pégourié-Gonnard | a7937f9 | 2017-04-20 15:37:46 +0200 | [diff] [blame] | 1042 | */ |
| 1043 | int mbedtls_ecp_gen_privkey( const mbedtls_ecp_group *grp, |
| 1044 | mbedtls_mpi *d, |
| 1045 | int (*f_rng)(void *, unsigned char *, size_t), |
| 1046 | void *p_rng ); |
| 1047 | |
| 1048 | /** |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 1049 | * \brief This function generates a keypair with a configurable base |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 1050 | * point. |
Manuel Pégourié-Gonnard | d9a3f47 | 2015-08-11 14:31:03 +0200 | [diff] [blame] | 1051 | * |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 1052 | * \note This function uses bare components rather than an |
| 1053 | * ::mbedtls_ecp_keypair structure to ease use with other |
| 1054 | * structures, such as ::mbedtls_ecdh_context or |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 1055 | * ::mbedtls_ecdsa_context. |
Manuel Pégourié-Gonnard | d9a3f47 | 2015-08-11 14:31:03 +0200 | [diff] [blame] | 1056 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1057 | * \param grp The ECP group to generate a key pair for. |
| 1058 | * This must be initialized and have group parameters |
| 1059 | * set, for example through mbedtls_ecp_group_load(). |
| 1060 | * \param G The base point to use. This must be initialized |
| 1061 | * and belong to \p grp. It replaces the default base |
| 1062 | * point \c grp->G used by mbedtls_ecp_gen_keypair(). |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 1063 | * \param d The destination MPI (secret part). |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1064 | * This must be initialized. |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 1065 | * \param Q The destination point (public part). |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1066 | * This must be initialized. |
| 1067 | * \param f_rng The RNG function. This must not be \c NULL. |
| 1068 | * \param p_rng The RNG context to be passed to \p f_rng. This may |
| 1069 | * be \c NULL if \p f_rng doesn't need a context argument. |
Manuel Pégourié-Gonnard | d9a3f47 | 2015-08-11 14:31:03 +0200 | [diff] [blame] | 1070 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 1071 | * \return \c 0 on success. |
| 1072 | * \return An \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_MPI_XXX error code |
| 1073 | * on failure. |
Manuel Pégourié-Gonnard | d9a3f47 | 2015-08-11 14:31:03 +0200 | [diff] [blame] | 1074 | */ |
| 1075 | int mbedtls_ecp_gen_keypair_base( mbedtls_ecp_group *grp, |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1076 | const mbedtls_ecp_point *G, |
| 1077 | mbedtls_mpi *d, mbedtls_ecp_point *Q, |
| 1078 | int (*f_rng)(void *, unsigned char *, size_t), |
| 1079 | void *p_rng ); |
Manuel Pégourié-Gonnard | d9a3f47 | 2015-08-11 14:31:03 +0200 | [diff] [blame] | 1080 | |
| 1081 | /** |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 1082 | * \brief This function generates an ECP keypair. |
Manuel Pégourié-Gonnard | 45a035a | 2013-01-26 14:42:45 +0100 | [diff] [blame] | 1083 | * |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 1084 | * \note This function uses bare components rather than an |
| 1085 | * ::mbedtls_ecp_keypair structure to ease use with other |
| 1086 | * structures, such as ::mbedtls_ecdh_context or |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 1087 | * ::mbedtls_ecdsa_context. |
Manuel Pégourié-Gonnard | 45a035a | 2013-01-26 14:42:45 +0100 | [diff] [blame] | 1088 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1089 | * \param grp The ECP group to generate a key pair for. |
| 1090 | * This must be initialized and have group parameters |
| 1091 | * set, for example through mbedtls_ecp_group_load(). |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 1092 | * \param d The destination MPI (secret part). |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1093 | * This must be initialized. |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 1094 | * \param Q The destination point (public part). |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1095 | * This must be initialized. |
| 1096 | * \param f_rng The RNG function. This must not be \c NULL. |
| 1097 | * \param p_rng The RNG context to be passed to \p f_rng. This may |
| 1098 | * be \c NULL if \p f_rng doesn't need a context argument. |
Manuel Pégourié-Gonnard | c8dc295 | 2013-07-01 14:06:13 +0200 | [diff] [blame] | 1099 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 1100 | * \return \c 0 on success. |
| 1101 | * \return An \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_MPI_XXX error code |
| 1102 | * on failure. |
Manuel Pégourié-Gonnard | 45a035a | 2013-01-26 14:42:45 +0100 | [diff] [blame] | 1103 | */ |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1104 | int mbedtls_ecp_gen_keypair( mbedtls_ecp_group *grp, mbedtls_mpi *d, |
| 1105 | mbedtls_ecp_point *Q, |
| 1106 | int (*f_rng)(void *, unsigned char *, size_t), |
| 1107 | void *p_rng ); |
Manuel Pégourié-Gonnard | 45a035a | 2013-01-26 14:42:45 +0100 | [diff] [blame] | 1108 | |
| 1109 | /** |
Rose Zadik | f56cb34 | 2018-04-19 12:49:10 +0100 | [diff] [blame] | 1110 | * \brief This function generates an ECP key. |
Manuel Pégourié-Gonnard | 104ee1d | 2013-11-30 14:13:16 +0100 | [diff] [blame] | 1111 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 1112 | * \param grp_id The ECP group identifier. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1113 | * \param key The destination key. This must be initialized. |
| 1114 | * \param f_rng The RNG function to use. This must not be \c NULL. |
| 1115 | * \param p_rng The RNG context to be passed to \p f_rng. This may |
| 1116 | * be \c NULL if \p f_rng doesn't need a context argument. |
Manuel Pégourié-Gonnard | 104ee1d | 2013-11-30 14:13:16 +0100 | [diff] [blame] | 1117 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 1118 | * \return \c 0 on success. |
| 1119 | * \return An \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_MPI_XXX error code |
| 1120 | * on failure. |
Manuel Pégourié-Gonnard | 104ee1d | 2013-11-30 14:13:16 +0100 | [diff] [blame] | 1121 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1122 | int mbedtls_ecp_gen_key( mbedtls_ecp_group_id grp_id, mbedtls_ecp_keypair *key, |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1123 | int (*f_rng)(void *, unsigned char *, size_t), |
| 1124 | void *p_rng ); |
Manuel Pégourié-Gonnard | 104ee1d | 2013-11-30 14:13:16 +0100 | [diff] [blame] | 1125 | |
Manuel Pégourié-Gonnard | 30668d6 | 2014-11-06 15:25:32 +0100 | [diff] [blame] | 1126 | /** |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 1127 | * \brief This function checks that the keypair objects |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 1128 | * \p pub and \p prv have the same group and the |
| 1129 | * same public point, and that the private key in |
| 1130 | * \p prv is consistent with the public key. |
Manuel Pégourié-Gonnard | 30668d6 | 2014-11-06 15:25:32 +0100 | [diff] [blame] | 1131 | * |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1132 | * \param pub The keypair structure holding the public key. This |
| 1133 | * must be initialized. If it contains a private key, that |
| 1134 | * part is ignored. |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 1135 | * \param prv The keypair structure holding the full keypair. |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1136 | * This must be initialized. |
Manuel Pégourié-Gonnard | 30668d6 | 2014-11-06 15:25:32 +0100 | [diff] [blame] | 1137 | * |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 1138 | * \return \c 0 on success, meaning that the keys are valid and match. |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 1139 | * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if the keys are invalid or do not match. |
Rose Zadik | a7a6155 | 2018-04-24 13:14:01 +0100 | [diff] [blame] | 1140 | * \return An \c MBEDTLS_ERR_ECP_XXX or an \c MBEDTLS_ERR_MPI_XXX |
Rose Zadik | b2e111a | 2018-04-20 10:13:48 +0100 | [diff] [blame] | 1141 | * error code on calculation failure. |
Manuel Pégourié-Gonnard | 30668d6 | 2014-11-06 15:25:32 +0100 | [diff] [blame] | 1142 | */ |
Hanno Becker | ebffa79 | 2018-12-14 15:07:50 +0000 | [diff] [blame] | 1143 | int mbedtls_ecp_check_pub_priv( const mbedtls_ecp_keypair *pub, |
| 1144 | const mbedtls_ecp_keypair *prv ); |
Manuel Pégourié-Gonnard | 30668d6 | 2014-11-06 15:25:32 +0100 | [diff] [blame] | 1145 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1146 | #if defined(MBEDTLS_SELF_TEST) |
Janos Follath | b069753 | 2016-08-18 12:38:46 +0100 | [diff] [blame] | 1147 | |
Manuel Pégourié-Gonnard | 104ee1d | 2013-11-30 14:13:16 +0100 | [diff] [blame] | 1148 | /** |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 1149 | * \brief The ECP checkup routine. |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 1150 | * |
Rose Zadik | d3c9bfc | 2018-04-17 10:56:55 +0100 | [diff] [blame] | 1151 | * \return \c 0 on success. |
| 1152 | * \return \c 1 on failure. |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 1153 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1154 | int mbedtls_ecp_self_test( int verbose ); |
Janos Follath | b069753 | 2016-08-18 12:38:46 +0100 | [diff] [blame] | 1155 | |
Janos Follath | 372697b | 2016-10-28 16:53:11 +0100 | [diff] [blame] | 1156 | #endif /* MBEDTLS_SELF_TEST */ |
Manuel Pégourié-Gonnard | 39d2adb | 2012-10-31 09:26:55 +0100 | [diff] [blame] | 1157 | |
| 1158 | #ifdef __cplusplus |
| 1159 | } |
| 1160 | #endif |
| 1161 | |
Paul Bakker | 9af723c | 2014-05-01 13:03:14 +0200 | [diff] [blame] | 1162 | #endif /* ecp.h */ |