blob: 10aa34bb1723c96dd59335f0ef070c585648024f [file] [log] [blame]
Gilles Peskine80ba8502021-04-03 20:36:37 +02001/**
2 * \file ecp_invasive.h
3 *
4 * \brief ECP module: interfaces for invasive testing only.
5 *
6 * The interfaces in this file are intended for testing purposes only.
7 * They SHOULD NOT be made available in library integrations except when
8 * building the library for testing.
9 */
10/*
11 * Copyright The Mbed TLS Contributors
12 * SPDX-License-Identifier: Apache-2.0
13 *
14 * Licensed under the Apache License, Version 2.0 (the "License"); you may
15 * not use this file except in compliance with the License.
16 * You may obtain a copy of the License at
17 *
18 * http://www.apache.org/licenses/LICENSE-2.0
19 *
20 * Unless required by applicable law or agreed to in writing, software
21 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
22 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23 * See the License for the specific language governing permissions and
24 * limitations under the License.
25 */
26#ifndef MBEDTLS_ECP_INVASIVE_H
27#define MBEDTLS_ECP_INVASIVE_H
28
29#include "common.h"
Gilles Peskine72fcc982021-03-23 22:31:31 +010030#include "mbedtls/bignum.h"
Minos Galanakisdd556922023-02-03 19:12:21 +000031#include "bignum_mod.h"
Gilles Peskine80ba8502021-04-03 20:36:37 +020032#include "mbedtls/ecp.h"
33
34#if defined(MBEDTLS_TEST_HOOKS) && defined(MBEDTLS_ECP_C)
35
Gilles Peskine618be2e2021-04-03 21:47:53 +020036#if defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED) || \
37 defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED) || \
38 defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED)
39/* Preconditions:
40 * - bits is a multiple of 64 or is 224
41 * - c is -1 or -2
42 * - 0 <= N < 2^bits
Gilles Peskine392d1012021-04-09 15:46:51 +020043 * - N has room for bits plus one limb
Gilles Peskine618be2e2021-04-03 21:47:53 +020044 *
Gilles Peskine392d1012021-04-09 15:46:51 +020045 * Behavior:
46 * Set N to c * 2^bits + old_value_of_N.
Gilles Peskine618be2e2021-04-03 21:47:53 +020047 */
Gilles Peskine449bd832023-01-11 14:50:10 +010048void mbedtls_ecp_fix_negative(mbedtls_mpi *N, signed char c, size_t bits);
Gilles Peskine618be2e2021-04-03 21:47:53 +020049#endif
50
Gilles Peskine72fcc982021-03-23 22:31:31 +010051#if defined(MBEDTLS_ECP_MONTGOMERY_ENABLED)
52/** Generate a private key on a Montgomery curve (Curve25519 or Curve448).
53 *
54 * This function implements key generation for the set of secret keys
55 * specified in [Curve25519] p. 5 and in [Curve448]. The resulting value
56 * has the lower bits masked but is not necessarily canonical.
57 *
58 * \note - [Curve25519] http://cr.yp.to/ecdh/curve25519-20060209.pdf
59 * - [RFC7748] https://tools.ietf.org/html/rfc7748
60 *
Gilles Peskine55c46042021-03-24 12:34:40 +010061 * \p high_bit The position of the high-order bit of the key to generate.
Gilles Peskine72fcc982021-03-23 22:31:31 +010062 * This is the bit-size of the key minus 1:
63 * 254 for Curve25519 or 447 for Curve448.
64 * \param d The randomly generated key. This is a number of size
65 * exactly \p n_bits + 1 bits, with the least significant bits
66 * masked as specified in [Curve25519] and in [RFC7748] ยง5.
67 * \param f_rng The RNG function.
68 * \param p_rng The RNG context to be passed to \p f_rng.
69 *
70 * \return \c 0 on success.
71 * \return \c MBEDTLS_ERR_ECP_xxx or MBEDTLS_ERR_MPI_xxx on failure.
72 */
Gilles Peskine449bd832023-01-11 14:50:10 +010073int mbedtls_ecp_gen_privkey_mx(size_t n_bits,
74 mbedtls_mpi *d,
75 int (*f_rng)(void *, unsigned char *, size_t),
76 void *p_rng);
Gilles Peskine72fcc982021-03-23 22:31:31 +010077
78#endif /* MBEDTLS_ECP_MONTGOMERY_ENABLED */
79
Gabor Mezeideece2b2023-01-25 17:57:36 +010080#if defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED)
81
Gabor Mezei9b290b32023-01-27 11:00:51 +010082/** Fast quasi-reduction modulo p192 (FIPS 186-3 D.2.1)
83 *
Gabor Mezeia2648312023-02-13 16:29:05 +010084 * This operation expects a 384 bit MPI and the result of the reduction
85 * is a 192 bit MPI.
86 *
Gabor Mezei9b290b32023-01-27 11:00:51 +010087 * \param[in,out] Np The address of the MPI to be converted.
Gabor Mezei0b4b8e32023-02-14 16:36:38 +010088 * Must have twice as many limbs as the modulus.
89 * Upon return this holds the reduced value. The bitlength
90 * of the reduced value is the same as that of the modulus
91 * (192 bits).
Gabor Mezei63aae682023-02-06 16:24:08 +010092 * \param[in] Nn The length of \p Np in limbs.
Gabor Mezei9b290b32023-01-27 11:00:51 +010093 */
Gabor Mezeideece2b2023-01-25 17:57:36 +010094MBEDTLS_STATIC_TESTABLE
Gabor Mezei2038ce92023-01-31 14:33:12 +010095int mbedtls_ecp_mod_p192_raw(mbedtls_mpi_uint *Np, size_t Nn);
Gabor Mezeideece2b2023-01-25 17:57:36 +010096
97#endif /* MBEDTLS_ECP_DP_SECP192R1_ENABLED */
98
Gabor Mezei2cb630e2023-02-01 14:02:16 +010099#if defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED)
100
Gabor Mezeib1c62ca2023-02-06 16:02:05 +0100101/** Fast quasi-reduction modulo p521 = 2^521 - 1 (FIPS 186-3 D.2.5)
102 *
Gabor Mezei7e6fcc12023-02-15 17:51:59 +0100103 * \param[in,out] X The address of the MPI to be converted.
104 * Must have twice as many limbs as the modulus
105 * (the modulus is 521 bits long). Upon return this
106 * holds the reduced value. The reduced value is
107 * in range `0 <= X < 2 * N` (where N is the modulus).
108 * and its the bitlength is one plus the bitlength
109 * of the modulus.
110 * \param[in] X_limbs The length of \p X in limbs.
111 *
112 * \return \c 0 on success.
113 * \return #MBEDTLS_ERR_ECP_BAD_INPUT_DATA if \p X_limbs does not have
114 * twice as many limbs as the modulus.
Gabor Mezeib1c62ca2023-02-06 16:02:05 +0100115 */
Gabor Mezei2cb630e2023-02-01 14:02:16 +0100116MBEDTLS_STATIC_TESTABLE
Gabor Mezei7e6fcc12023-02-15 17:51:59 +0100117int mbedtls_ecp_mod_p521_raw(mbedtls_mpi_uint *X, size_t X_limbs);
Gabor Mezei2cb630e2023-02-01 14:02:16 +0100118
119#endif /* MBEDTLS_ECP_DP_SECP521R1_ENABLED */
120
Minos Galanakisdd556922023-02-03 19:12:21 +0000121MBEDTLS_STATIC_TESTABLE
122int mbedtls_ecp_modulus_setup(mbedtls_mpi_mod_modulus *N,
123 const mbedtls_ecp_group_id id,
124 const mbedtls_ecp_curve_type ctype);
125
Gilles Peskine80ba8502021-04-03 20:36:37 +0200126#endif /* MBEDTLS_TEST_HOOKS && MBEDTLS_ECP_C */
127
128#endif /* MBEDTLS_ECP_INVASIVE_H */