2022-07-18 23:09:45 +02:00
|
|
|
/**
|
2022-08-11 18:42:59 +02:00
|
|
|
* Core bignum functions
|
|
|
|
*
|
2022-08-22 10:06:32 +02:00
|
|
|
* This interface should only be used by the legacy bignum module (bignum.h)
|
2022-08-11 18:42:59 +02:00
|
|
|
* and the modular bignum modules (bignum_mod.c, bignum_mod_raw.c). All other
|
2022-08-22 10:06:32 +02:00
|
|
|
* modules should use the high-level modular bignum interface (bignum_mod.h)
|
2022-08-11 18:42:59 +02:00
|
|
|
* or the legacy bignum interface (bignum.h).
|
2022-07-18 23:09:45 +02:00
|
|
|
*
|
2022-09-27 13:19:13 +02:00
|
|
|
* This module is about processing non-negative integers with a fixed upper
|
2022-10-04 16:23:29 +02:00
|
|
|
* bound that's of the form 2^n-1 where n is a multiple of #biL.
|
|
|
|
* These can be thought of integers written in base 2^#biL with a fixed
|
|
|
|
* number of digits. Digits in this base are called *limbs*.
|
|
|
|
* Many operations treat these numbers as the principal representation of
|
|
|
|
* a number modulo 2^n or a smaller bound.
|
2022-09-27 13:19:13 +02:00
|
|
|
*
|
2022-09-27 13:19:50 +02:00
|
|
|
* The functions in this module obey the following conventions unless
|
|
|
|
* explicitly indicated otherwise:
|
|
|
|
*
|
|
|
|
* - **Overflow**: some functions indicate overflow from the range
|
2022-10-04 16:23:29 +02:00
|
|
|
* [0, 2^n-1] by returning carry parameters, while others operate
|
2022-09-27 13:19:50 +02:00
|
|
|
* modulo and so cannot overflow. This should be clear from the function
|
|
|
|
* documentation.
|
|
|
|
* - **Bignum parameters**: Bignums are passed as pointers to an array of
|
|
|
|
* limbs. A limb has the type #mbedtls_mpi_uint. Unless otherwise specified:
|
|
|
|
* - Bignum parameters called \p A, \p B, ... are inputs, and are
|
|
|
|
* not modified by the function.
|
|
|
|
* - For operations modulo some number, the modulus is called \p N
|
|
|
|
* and is input-only.
|
|
|
|
* - Bignum parameters called \p X, \p Y are outputs or input-output.
|
|
|
|
* The initial content of output-only parameters is ignored.
|
|
|
|
* - Some functions use different names that reflect traditional
|
|
|
|
* naming of operands of certain operations (e.g.
|
|
|
|
* divisor/dividend/quotient/remainder).
|
|
|
|
* - \p T is a temporary storage area. The initial content of such
|
|
|
|
* parameter is ignored and the final content is unspecified.
|
|
|
|
* - **Bignum sizes**: bignum sizes are always expressed in limbs.
|
|
|
|
* Most functions work on bignums of a given size and take a single
|
|
|
|
* \p limbs parameter that applies to all parameters that are limb arrays.
|
|
|
|
* All bignum sizes must be at least 1 and must be significantly less than
|
|
|
|
* #SIZE_MAX. The behavior if a size is 0 is undefined. The behavior if the
|
|
|
|
* total size of all parameters overflows #SIZE_MAX is undefined.
|
|
|
|
* - **Parameter ordering**: for bignum parameters, outputs come before inputs.
|
|
|
|
* Temporaries come last.
|
|
|
|
* - **Aliasing**: in general, output bignums may be aliased to one or more
|
|
|
|
* inputs. As an exception, parameters that are documented as a modulus value
|
2022-10-14 17:14:20 +02:00
|
|
|
* may not be aliased to an output. Outputs may not be aliased to one another.
|
|
|
|
* Temporaries may not be aliased to any other parameter.
|
2022-09-27 13:19:50 +02:00
|
|
|
* - **Overlap**: apart from aliasing of limb array pointers (where two
|
|
|
|
* arguments are equal pointers), overlap is not supported and may result
|
|
|
|
* in undefined behavior.
|
|
|
|
* - **Error handling**: This is a low-level module. Functions generally do not
|
|
|
|
* try to protect against invalid arguments such as nonsensical sizes or
|
|
|
|
* null pointers. Note that some functions that operate on bignums of
|
|
|
|
* different sizes have constraints about their size, and violating those
|
|
|
|
* constraints may lead to buffer overflows.
|
|
|
|
* - **Modular representatives**: functions that operate modulo \p N expect
|
|
|
|
* all modular inputs to be in the range [0, \p N - 1] and guarantee outputs
|
|
|
|
* in the range [0, \p N - 1]. If an input is out of range, outputs are
|
|
|
|
* fully unspecified, though bignum values out of range should not cause
|
|
|
|
* buffer overflows (beware that this is not extensively tested).
|
2022-09-27 13:12:30 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2022-07-18 23:09:45 +02:00
|
|
|
* Copyright The Mbed TLS Contributors
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MBEDTLS_BIGNUM_CORE_H
|
|
|
|
#define MBEDTLS_BIGNUM_CORE_H
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_BIGNUM_C)
|
|
|
|
#include "mbedtls/bignum.h"
|
|
|
|
#endif
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
#define ciL (sizeof(mbedtls_mpi_uint)) /** chars in limb */
|
|
|
|
#define biL (ciL << 3) /** bits in limb */
|
|
|
|
#define biH (ciL << 2) /** half limb size */
|
2022-08-31 18:16:50 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Convert between bits/chars and number of limbs
|
|
|
|
* Divide first in order to avoid potential overflows
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
#define BITS_TO_LIMBS(i) ((i) / biL + ((i) % biL != 0))
|
|
|
|
#define CHARS_TO_LIMBS(i) ((i) / ciL + ((i) % ciL != 0))
|
2022-08-31 18:16:50 +02:00
|
|
|
/* Get a specific byte, without range checks. */
|
2023-01-11 14:50:10 +01:00
|
|
|
#define GET_BYTE(X, i) \
|
|
|
|
(((X)[(i) / ciL] >> (((i) % ciL) * 8)) & 0xff)
|
2022-08-31 18:16:50 +02:00
|
|
|
|
2022-08-02 17:22:18 +02:00
|
|
|
/** Count leading zero bits in a given integer.
|
|
|
|
*
|
2022-08-19 13:24:40 +02:00
|
|
|
* \param a Integer to count leading zero bits.
|
2022-08-02 17:22:18 +02:00
|
|
|
*
|
2022-08-19 13:24:40 +02:00
|
|
|
* \return The number of leading zero bits in \p a.
|
2022-08-02 17:22:18 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
size_t mbedtls_mpi_core_clz(mbedtls_mpi_uint a);
|
2022-07-21 19:25:42 +02:00
|
|
|
|
2022-08-19 13:09:17 +02:00
|
|
|
/** Return the minimum number of bits required to represent the value held
|
2022-08-11 18:42:59 +02:00
|
|
|
* in the MPI.
|
|
|
|
*
|
2022-08-19 13:24:40 +02:00
|
|
|
* \note This function returns 0 if all the limbs of \p A are 0.
|
2022-08-02 17:22:18 +02:00
|
|
|
*
|
2022-08-19 13:24:40 +02:00
|
|
|
* \param[in] A The address of the MPI.
|
2022-08-22 11:01:27 +02:00
|
|
|
* \param A_limbs The number of limbs of \p A.
|
2022-08-02 17:22:18 +02:00
|
|
|
*
|
2022-08-19 13:24:40 +02:00
|
|
|
* \return The number of bits in \p A.
|
2022-08-02 17:22:18 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
size_t mbedtls_mpi_core_bitlen(const mbedtls_mpi_uint *A, size_t A_limbs);
|
2022-07-21 19:25:42 +02:00
|
|
|
|
2022-08-02 17:22:18 +02:00
|
|
|
/** Convert a big-endian byte array aligned to the size of mbedtls_mpi_uint
|
|
|
|
* into the storage form used by mbedtls_mpi.
|
|
|
|
*
|
2022-08-19 13:24:40 +02:00
|
|
|
* \param[in,out] A The address of the MPI.
|
2022-08-22 11:01:27 +02:00
|
|
|
* \param A_limbs The number of limbs of \p A.
|
2022-08-02 17:22:18 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_mpi_core_bigendian_to_host(mbedtls_mpi_uint *A,
|
|
|
|
size_t A_limbs);
|
2022-07-21 19:25:42 +02:00
|
|
|
|
2022-09-20 18:38:35 +02:00
|
|
|
/** \brief Compare a machine integer with an MPI.
|
|
|
|
*
|
|
|
|
* This function operates in constant time with respect
|
|
|
|
* to the values of \p min and \p A.
|
|
|
|
*
|
|
|
|
* \param min A machine integer.
|
|
|
|
* \param[in] A An MPI.
|
|
|
|
* \param A_limbs The number of limbs of \p A.
|
|
|
|
* This must be at least 1.
|
|
|
|
*
|
|
|
|
* \return 1 if \p min is less than or equal to \p A, otherwise 0.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
unsigned mbedtls_mpi_core_uint_le_mpi(mbedtls_mpi_uint min,
|
|
|
|
const mbedtls_mpi_uint *A,
|
|
|
|
size_t A_limbs);
|
2022-09-20 18:38:35 +02:00
|
|
|
|
2022-09-12 16:25:24 +02:00
|
|
|
/**
|
2022-10-14 16:29:42 +02:00
|
|
|
* \brief Perform a safe conditional copy of an MPI which doesn't reveal
|
|
|
|
* whether assignment was done or not.
|
2022-09-12 16:25:24 +02:00
|
|
|
*
|
2022-10-14 16:29:42 +02:00
|
|
|
* \param[out] X The address of the destination MPI.
|
|
|
|
* This must be initialized. Must have enough limbs to
|
|
|
|
* store the full value of \p A.
|
|
|
|
* \param[in] A The address of the source MPI. This must be initialized.
|
2022-09-27 12:13:51 +02:00
|
|
|
* \param limbs The number of limbs of \p A.
|
2022-09-12 16:25:24 +02:00
|
|
|
* \param assign The condition deciding whether to perform the
|
|
|
|
* assignment or not. Must be either 0 or 1:
|
2022-09-27 12:13:51 +02:00
|
|
|
* * \c 1: Perform the assignment `X = A`.
|
2022-09-12 16:25:24 +02:00
|
|
|
* * \c 0: Keep the original value of \p X.
|
|
|
|
*
|
|
|
|
* \note This function avoids leaking any information about whether
|
|
|
|
* the assignment was done or not.
|
|
|
|
*
|
|
|
|
* \warning If \p assign is neither 0 nor 1, the result of this function
|
|
|
|
* is indeterminate, and the resulting value in \p X might be
|
2022-10-14 16:29:42 +02:00
|
|
|
* neither its original value nor the value in \p A.
|
2022-09-12 16:25:24 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_mpi_core_cond_assign(mbedtls_mpi_uint *X,
|
|
|
|
const mbedtls_mpi_uint *A,
|
|
|
|
size_t limbs,
|
|
|
|
unsigned char assign);
|
2022-09-12 16:25:24 +02:00
|
|
|
|
|
|
|
/**
|
2022-10-14 16:29:42 +02:00
|
|
|
* \brief Perform a safe conditional swap of two MPIs which doesn't reveal
|
|
|
|
* whether the swap was done or not.
|
2022-09-12 16:25:24 +02:00
|
|
|
*
|
2022-09-30 14:03:04 +02:00
|
|
|
* \param[in,out] X The address of the first MPI.
|
2022-09-12 16:25:24 +02:00
|
|
|
* This must be initialized.
|
2022-09-30 14:03:04 +02:00
|
|
|
* \param[in,out] Y The address of the second MPI.
|
2022-09-12 16:25:24 +02:00
|
|
|
* This must be initialized.
|
2022-09-30 13:54:02 +02:00
|
|
|
* \param limbs The number of limbs of \p X and \p Y.
|
2022-09-12 16:25:24 +02:00
|
|
|
* \param swap The condition deciding whether to perform
|
|
|
|
* the swap or not. Must be either 0 or 1:
|
2022-09-30 13:54:02 +02:00
|
|
|
* * \c 1: Swap the values of \p X and \p Y.
|
|
|
|
* * \c 0: Keep the original values of \p X and \p Y.
|
2022-09-12 16:25:24 +02:00
|
|
|
*
|
|
|
|
* \note This function avoids leaking any information about whether
|
|
|
|
* the swap was done or not.
|
|
|
|
*
|
|
|
|
* \warning If \p swap is neither 0 nor 1, the result of this function
|
2022-09-30 13:54:02 +02:00
|
|
|
* is indeterminate, and both \p X and \p Y might end up with
|
2022-09-12 16:25:24 +02:00
|
|
|
* values different to either of the original ones.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_mpi_core_cond_swap(mbedtls_mpi_uint *X,
|
|
|
|
mbedtls_mpi_uint *Y,
|
|
|
|
size_t limbs,
|
|
|
|
unsigned char swap);
|
2022-09-12 16:25:24 +02:00
|
|
|
|
2022-08-22 10:06:32 +02:00
|
|
|
/** Import X from unsigned binary data, little-endian.
|
2022-08-02 17:22:18 +02:00
|
|
|
*
|
2022-08-11 18:42:59 +02:00
|
|
|
* The MPI needs to have enough limbs to store the full value (including any
|
|
|
|
* most significant zero bytes in the input).
|
2022-08-02 17:22:18 +02:00
|
|
|
*
|
2022-08-19 13:24:40 +02:00
|
|
|
* \param[out] X The address of the MPI.
|
|
|
|
* \param X_limbs The number of limbs of \p X.
|
|
|
|
* \param[in] input The input buffer to import from.
|
|
|
|
* \param input_length The length bytes of \p input.
|
2022-08-02 17:22:18 +02:00
|
|
|
*
|
|
|
|
* \return \c 0 if successful.
|
|
|
|
* \return #MBEDTLS_ERR_MPI_BUFFER_TOO_SMALL if \p X isn't
|
2022-08-19 13:24:40 +02:00
|
|
|
* large enough to hold the value in \p input.
|
2022-08-02 17:22:18 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_mpi_core_read_le(mbedtls_mpi_uint *X,
|
|
|
|
size_t X_limbs,
|
|
|
|
const unsigned char *input,
|
|
|
|
size_t input_length);
|
2022-07-18 23:09:45 +02:00
|
|
|
|
2022-08-22 10:06:32 +02:00
|
|
|
/** Import X from unsigned binary data, big-endian.
|
2022-08-02 17:22:18 +02:00
|
|
|
*
|
2022-08-11 18:42:59 +02:00
|
|
|
* The MPI needs to have enough limbs to store the full value (including any
|
|
|
|
* most significant zero bytes in the input).
|
2022-08-02 17:22:18 +02:00
|
|
|
*
|
2022-08-19 13:24:40 +02:00
|
|
|
* \param[out] X The address of the MPI.
|
2023-02-01 09:43:54 +01:00
|
|
|
* May only be #NULL if \p X_limbs is 0 and \p input_length
|
2022-08-19 13:24:40 +02:00
|
|
|
* is 0.
|
|
|
|
* \param X_limbs The number of limbs of \p X.
|
|
|
|
* \param[in] input The input buffer to import from.
|
|
|
|
* May only be #NULL if \p input_length is 0.
|
|
|
|
* \param input_length The length in bytes of \p input.
|
2022-08-02 17:22:18 +02:00
|
|
|
*
|
|
|
|
* \return \c 0 if successful.
|
|
|
|
* \return #MBEDTLS_ERR_MPI_BUFFER_TOO_SMALL if \p X isn't
|
2022-08-19 13:24:40 +02:00
|
|
|
* large enough to hold the value in \p input.
|
2022-08-02 17:22:18 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_mpi_core_read_be(mbedtls_mpi_uint *X,
|
|
|
|
size_t X_limbs,
|
|
|
|
const unsigned char *input,
|
|
|
|
size_t input_length);
|
2022-07-18 23:09:45 +02:00
|
|
|
|
2022-08-22 10:06:32 +02:00
|
|
|
/** Export A into unsigned binary data, little-endian.
|
2022-08-11 18:42:59 +02:00
|
|
|
*
|
2022-08-19 13:24:40 +02:00
|
|
|
* \note If \p output is shorter than \p A the export is still successful if the
|
|
|
|
* value held in \p A fits in the buffer (that is, if enough of the most
|
|
|
|
* significant bytes of \p A are 0).
|
2022-08-02 17:22:18 +02:00
|
|
|
*
|
2022-08-19 13:24:40 +02:00
|
|
|
* \param[in] A The address of the MPI.
|
|
|
|
* \param A_limbs The number of limbs of \p A.
|
|
|
|
* \param[out] output The output buffer to export to.
|
|
|
|
* \param output_length The length in bytes of \p output.
|
2022-08-02 17:22:18 +02:00
|
|
|
*
|
|
|
|
* \return \c 0 if successful.
|
2022-08-19 13:24:40 +02:00
|
|
|
* \return #MBEDTLS_ERR_MPI_BUFFER_TOO_SMALL if \p output isn't
|
|
|
|
* large enough to hold the value of \p A.
|
2022-08-02 17:22:18 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_mpi_core_write_le(const mbedtls_mpi_uint *A,
|
|
|
|
size_t A_limbs,
|
|
|
|
unsigned char *output,
|
|
|
|
size_t output_length);
|
2022-07-18 23:09:45 +02:00
|
|
|
|
2022-08-22 10:06:32 +02:00
|
|
|
/** Export A into unsigned binary data, big-endian.
|
2022-08-11 18:42:59 +02:00
|
|
|
*
|
2022-08-19 13:24:40 +02:00
|
|
|
* \note If \p output is shorter than \p A the export is still successful if the
|
|
|
|
* value held in \p A fits in the buffer (that is, if enough of the most
|
|
|
|
* significant bytes of \p A are 0).
|
2022-08-02 17:22:18 +02:00
|
|
|
*
|
2022-08-19 13:24:40 +02:00
|
|
|
* \param[in] A The address of the MPI.
|
|
|
|
* \param A_limbs The number of limbs of \p A.
|
|
|
|
* \param[out] output The output buffer to export to.
|
|
|
|
* \param output_length The length in bytes of \p output.
|
2022-08-02 17:22:18 +02:00
|
|
|
*
|
|
|
|
* \return \c 0 if successful.
|
2022-08-19 13:24:40 +02:00
|
|
|
* \return #MBEDTLS_ERR_MPI_BUFFER_TOO_SMALL if \p output isn't
|
|
|
|
* large enough to hold the value of \p A.
|
2022-08-02 17:22:18 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_mpi_core_write_be(const mbedtls_mpi_uint *A,
|
|
|
|
size_t A_limbs,
|
|
|
|
unsigned char *output,
|
|
|
|
size_t output_length);
|
2022-07-18 23:09:45 +02:00
|
|
|
|
2022-10-21 18:36:08 +02:00
|
|
|
/** \brief Shift an MPI right in place by a number of bits.
|
2022-09-21 15:36:16 +02:00
|
|
|
*
|
|
|
|
* Shifting by more bits than there are bit positions
|
|
|
|
* in \p X is valid and results in setting \p X to 0.
|
|
|
|
*
|
|
|
|
* This function's execution time depends on the value
|
|
|
|
* of \p count (and of course \p limbs).
|
|
|
|
*
|
|
|
|
* \param[in,out] X The number to shift.
|
|
|
|
* \param limbs The number of limbs of \p X. This must be at least 1.
|
|
|
|
* \param count The number of bits to shift by.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_mpi_core_shift_r(mbedtls_mpi_uint *X, size_t limbs,
|
|
|
|
size_t count);
|
2022-09-21 15:36:16 +02:00
|
|
|
|
2022-08-24 13:54:36 +02:00
|
|
|
/**
|
2022-08-24 15:05:26 +02:00
|
|
|
* \brief Add two fixed-size large unsigned integers, returning the carry.
|
|
|
|
*
|
|
|
|
* Calculates `A + B` where `A` and `B` have the same size.
|
2022-08-24 13:54:36 +02:00
|
|
|
*
|
2022-10-25 13:46:03 +02:00
|
|
|
* This function operates modulo `2^(biL*limbs)` and returns the carry
|
2022-08-24 13:54:36 +02:00
|
|
|
* (1 if there was a wraparound, and 0 otherwise).
|
|
|
|
*
|
2022-08-24 15:05:26 +02:00
|
|
|
* \p X may be aliased to \p A or \p B.
|
2022-08-24 13:54:36 +02:00
|
|
|
*
|
2022-08-24 15:05:26 +02:00
|
|
|
* \param[out] X The result of the addition.
|
|
|
|
* \param[in] A Little-endian presentation of the left operand.
|
|
|
|
* \param[in] B Little-endian presentation of the right operand.
|
|
|
|
* \param limbs Number of limbs of \p X, \p A and \p B.
|
2022-08-24 13:54:36 +02:00
|
|
|
*
|
2022-08-24 15:05:26 +02:00
|
|
|
* \return 1 if `A + B >= 2^(biL*limbs)`, 0 otherwise.
|
2022-08-24 13:54:36 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_mpi_uint mbedtls_mpi_core_add(mbedtls_mpi_uint *X,
|
|
|
|
const mbedtls_mpi_uint *A,
|
|
|
|
const mbedtls_mpi_uint *B,
|
|
|
|
size_t limbs);
|
2022-08-24 13:54:36 +02:00
|
|
|
|
2022-08-23 17:15:19 +02:00
|
|
|
/**
|
2022-09-15 16:46:10 +02:00
|
|
|
* \brief Conditional addition of two fixed-size large unsigned integers,
|
2022-08-30 12:57:22 +02:00
|
|
|
* returning the carry.
|
2022-08-17 07:17:00 +02:00
|
|
|
*
|
2022-08-30 12:57:22 +02:00
|
|
|
* Functionally equivalent to
|
2022-08-17 07:17:00 +02:00
|
|
|
*
|
2022-08-30 12:57:22 +02:00
|
|
|
* ```
|
|
|
|
* if( cond )
|
2022-09-15 16:55:07 +02:00
|
|
|
* X += A;
|
2022-08-30 12:57:22 +02:00
|
|
|
* return carry;
|
|
|
|
* ```
|
2022-08-24 12:51:58 +02:00
|
|
|
*
|
2022-09-20 14:51:50 +02:00
|
|
|
* This function operates modulo `2^(biL*limbs)`.
|
|
|
|
*
|
2022-09-15 16:55:07 +02:00
|
|
|
* \param[in,out] X The pointer to the (little-endian) array
|
2022-08-24 12:51:58 +02:00
|
|
|
* representing the bignum to accumulate onto.
|
2022-09-15 16:55:07 +02:00
|
|
|
* \param[in] A The pointer to the (little-endian) array
|
2022-08-30 12:57:22 +02:00
|
|
|
* representing the bignum to conditionally add
|
2022-09-15 16:55:07 +02:00
|
|
|
* to \p X. This may be aliased to \p X but may not
|
2022-08-31 12:35:00 +02:00
|
|
|
* overlap otherwise.
|
2022-09-15 16:55:07 +02:00
|
|
|
* \param limbs Number of limbs of \p X and \p A.
|
2022-08-30 12:57:22 +02:00
|
|
|
* \param cond Condition bit dictating whether addition should
|
|
|
|
* happen or not. This must be \c 0 or \c 1.
|
2022-08-24 12:51:58 +02:00
|
|
|
*
|
2022-08-30 12:57:22 +02:00
|
|
|
* \warning If \p cond is neither 0 nor 1, the result of this function
|
2022-09-15 16:55:07 +02:00
|
|
|
* is unspecified, and the resulting value in \p X might be
|
|
|
|
* neither its original value nor \p X + \p A.
|
2022-08-30 12:57:22 +02:00
|
|
|
*
|
2022-09-15 16:55:07 +02:00
|
|
|
* \return 1 if `X + cond * A >= 2^(biL*limbs)`, 0 otherwise.
|
2022-08-23 13:09:35 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_mpi_uint mbedtls_mpi_core_add_if(mbedtls_mpi_uint *X,
|
|
|
|
const mbedtls_mpi_uint *A,
|
|
|
|
size_t limbs,
|
|
|
|
unsigned cond);
|
2022-08-23 13:09:35 +02:00
|
|
|
|
|
|
|
/**
|
2022-09-15 16:46:10 +02:00
|
|
|
* \brief Subtract two fixed-size large unsigned integers, returning the borrow.
|
2022-08-23 13:09:35 +02:00
|
|
|
*
|
2022-08-30 15:31:49 +02:00
|
|
|
* Calculate `A - B` where \p A and \p B have the same size.
|
2022-08-31 18:09:29 +02:00
|
|
|
* This function operates modulo `2^(biL*limbs)` and returns the carry
|
2022-08-24 12:51:58 +02:00
|
|
|
* (1 if there was a wraparound, i.e. if `A < B`, and 0 otherwise).
|
2022-08-23 13:09:35 +02:00
|
|
|
*
|
2022-08-30 15:31:49 +02:00
|
|
|
* \p X may be aliased to \p A or \p B, or even both, but may not overlap
|
|
|
|
* either otherwise.
|
2022-08-23 13:09:35 +02:00
|
|
|
*
|
2022-08-24 12:51:58 +02:00
|
|
|
* \param[out] X The result of the subtraction.
|
|
|
|
* \param[in] A Little-endian presentation of left operand.
|
|
|
|
* \param[in] B Little-endian presentation of right operand.
|
|
|
|
* \param limbs Number of limbs of \p X, \p A and \p B.
|
2022-08-23 13:09:35 +02:00
|
|
|
*
|
2022-08-24 12:51:58 +02:00
|
|
|
* \return 1 if `A < B`.
|
|
|
|
* 0 if `A >= B`.
|
2022-08-23 13:09:35 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_mpi_uint mbedtls_mpi_core_sub(mbedtls_mpi_uint *X,
|
|
|
|
const mbedtls_mpi_uint *A,
|
|
|
|
const mbedtls_mpi_uint *B,
|
|
|
|
size_t limbs);
|
2022-08-23 13:09:35 +02:00
|
|
|
|
|
|
|
/**
|
2022-09-15 16:55:07 +02:00
|
|
|
* \brief Perform a fixed-size multiply accumulate operation: X += b * A
|
2022-08-23 13:09:35 +02:00
|
|
|
*
|
2022-09-20 14:33:40 +02:00
|
|
|
* \p X may be aliased to \p A (when \p X_limbs == \p A_limbs), but may not
|
|
|
|
* otherwise overlap.
|
|
|
|
*
|
2022-09-20 14:51:50 +02:00
|
|
|
* This function operates modulo `2^(biL*X_limbs)`.
|
|
|
|
*
|
2022-09-15 16:55:07 +02:00
|
|
|
* \param[in,out] X The pointer to the (little-endian) array
|
2022-08-24 12:51:58 +02:00
|
|
|
* representing the bignum to accumulate onto.
|
2022-09-15 16:55:07 +02:00
|
|
|
* \param X_limbs The number of limbs of \p X. This must be
|
|
|
|
* at least \p A_limbs.
|
|
|
|
* \param[in] A The pointer to the (little-endian) array
|
2022-08-30 12:57:22 +02:00
|
|
|
* representing the bignum to multiply with.
|
2022-09-15 16:55:07 +02:00
|
|
|
* This may be aliased to \p X but may not overlap
|
2022-08-31 12:35:00 +02:00
|
|
|
* otherwise.
|
2022-09-15 16:55:07 +02:00
|
|
|
* \param A_limbs The number of limbs of \p A.
|
|
|
|
* \param b X scalar to multiply with.
|
2022-08-23 13:09:35 +02:00
|
|
|
*
|
2022-08-30 12:57:22 +02:00
|
|
|
* \return The carry at the end of the operation.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_mpi_uint mbedtls_mpi_core_mla(mbedtls_mpi_uint *X, size_t X_limbs,
|
|
|
|
const mbedtls_mpi_uint *A, size_t A_limbs,
|
|
|
|
mbedtls_mpi_uint b);
|
2022-08-30 12:57:22 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Calculate initialisation value for fast Montgomery modular
|
|
|
|
* multiplication
|
2022-08-24 12:51:58 +02:00
|
|
|
*
|
2022-08-30 12:57:22 +02:00
|
|
|
* \param[in] N Little-endian presentation of the modulus. This must have
|
|
|
|
* at least one limb.
|
|
|
|
*
|
|
|
|
* \return The initialisation value for fast Montgomery modular multiplication
|
2022-08-23 13:09:35 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_mpi_uint mbedtls_mpi_core_montmul_init(const mbedtls_mpi_uint *N);
|
2022-08-30 12:57:22 +02:00
|
|
|
|
|
|
|
/**
|
2022-09-29 15:40:21 +02:00
|
|
|
* \brief Montgomery multiplication: X = A * B * R^-1 mod N (HAC 14.36)
|
|
|
|
*
|
|
|
|
* \p A and \p B must be in canonical form. That is, < \p N.
|
2022-08-30 12:57:22 +02:00
|
|
|
*
|
2022-09-20 14:17:51 +02:00
|
|
|
* \p X may be aliased to \p A or \p N, or even \p B (if \p AN_limbs ==
|
|
|
|
* \p B_limbs) but may not overlap any parameters otherwise.
|
|
|
|
*
|
2022-09-29 15:40:21 +02:00
|
|
|
* \p A and \p B may alias each other, if \p AN_limbs == \p B_limbs. They may
|
|
|
|
* not alias \p N (since they must be in canonical form, they cannot == \p N).
|
2022-09-20 14:17:51 +02:00
|
|
|
*
|
2022-08-30 12:57:22 +02:00
|
|
|
* \param[out] X The destination MPI, as a little-endian array of
|
|
|
|
* length \p AN_limbs.
|
|
|
|
* On successful completion, X contains the result of
|
2022-08-31 18:09:29 +02:00
|
|
|
* the multiplication `A * B * R^-1` mod N where
|
|
|
|
* `R = 2^(biL*AN_limbs)`.
|
2022-08-30 12:57:22 +02:00
|
|
|
* \param[in] A Little-endian presentation of first operand.
|
2022-08-30 15:31:49 +02:00
|
|
|
* Must have the same number of limbs as \p N.
|
2022-08-30 12:57:22 +02:00
|
|
|
* \param[in] B Little-endian presentation of second operand.
|
|
|
|
* \param[in] B_limbs The number of limbs in \p B.
|
2022-08-30 15:31:49 +02:00
|
|
|
* Must be <= \p AN_limbs.
|
2022-08-30 12:57:22 +02:00
|
|
|
* \param[in] N Little-endian presentation of the modulus.
|
2022-08-30 15:31:49 +02:00
|
|
|
* This must be odd, and have exactly the same number
|
|
|
|
* of limbs as \p A.
|
2022-09-29 18:20:18 +02:00
|
|
|
* It may alias \p X, but must not alias or otherwise
|
|
|
|
* overlap any of the other parameters.
|
2022-08-30 15:31:49 +02:00
|
|
|
* \param[in] AN_limbs The number of limbs in \p X, \p A and \p N.
|
2022-08-31 18:09:29 +02:00
|
|
|
* \param mm The Montgomery constant for \p N: -N^-1 mod 2^biL.
|
2022-09-15 16:05:59 +02:00
|
|
|
* This can be calculated by `mbedtls_mpi_core_montmul_init()`.
|
2022-08-30 12:57:22 +02:00
|
|
|
* \param[in,out] T Temporary storage of size at least 2*AN_limbs+1 limbs.
|
|
|
|
* Its initial content is unused and
|
|
|
|
* its final content is indeterminate.
|
2022-09-29 15:40:21 +02:00
|
|
|
* It must not alias or otherwise overlap any of the
|
|
|
|
* other parameters.
|
2022-08-30 12:57:22 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_mpi_core_montmul(mbedtls_mpi_uint *X,
|
|
|
|
const mbedtls_mpi_uint *A,
|
|
|
|
const mbedtls_mpi_uint *B, size_t B_limbs,
|
|
|
|
const mbedtls_mpi_uint *N, size_t AN_limbs,
|
|
|
|
mbedtls_mpi_uint mm, mbedtls_mpi_uint *T);
|
2022-08-23 13:09:35 +02:00
|
|
|
|
2022-08-11 18:29:32 +02:00
|
|
|
/**
|
2022-10-20 10:51:53 +02:00
|
|
|
* \brief Calculate the square of the Montgomery constant. (Needed
|
|
|
|
* for conversion and operations in Montgomery form.)
|
2022-08-11 18:29:32 +02:00
|
|
|
*
|
|
|
|
* \param[out] X A pointer to the result of the calculation of
|
2022-10-20 10:51:53 +02:00
|
|
|
* the square of the Montgomery constant:
|
|
|
|
* 2^{2*n*biL} mod N.
|
2022-08-11 18:29:32 +02:00
|
|
|
* \param[in] N Little-endian presentation of the modulus, which must be odd.
|
|
|
|
*
|
|
|
|
* \return 0 if successful.
|
|
|
|
* \return #MBEDTLS_ERR_MPI_ALLOC_FAILED if there is not enough space
|
|
|
|
* to store the value of Montgomery constant squared.
|
|
|
|
* \return #MBEDTLS_ERR_MPI_DIVISION_BY_ZERO if \p N modulus is zero.
|
|
|
|
* \return #MBEDTLS_ERR_MPI_NEGATIVE_VALUE if \p N modulus is negative.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_mpi_core_get_mont_r2_unsafe(mbedtls_mpi *X,
|
|
|
|
const mbedtls_mpi *N);
|
2022-08-11 18:29:32 +02:00
|
|
|
|
2022-10-28 19:13:43 +02:00
|
|
|
#if defined(MBEDTLS_TEST_HOOKS)
|
2022-10-26 16:14:33 +02:00
|
|
|
/**
|
2022-10-31 16:32:28 +01:00
|
|
|
* Copy an MPI from a table without leaking the index.
|
2022-10-26 16:14:33 +02:00
|
|
|
*
|
|
|
|
* \param dest The destination buffer. This must point to a writable
|
|
|
|
* buffer of at least \p limbs limbs.
|
|
|
|
* \param table The address of the table. This must point to a readable
|
2022-10-31 16:32:28 +01:00
|
|
|
* array of \p count elements of \p limbs limbs each.
|
|
|
|
* \param limbs The number of limbs in each table entry.
|
|
|
|
* \param count The number of entries in \p table.
|
|
|
|
* \param index The (secret) table index to look up. This must be in the
|
|
|
|
* range `0 .. count-1`.
|
2022-10-26 16:14:33 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_mpi_core_ct_uint_table_lookup(mbedtls_mpi_uint *dest,
|
|
|
|
const mbedtls_mpi_uint *table,
|
|
|
|
size_t limbs,
|
|
|
|
size_t count,
|
|
|
|
size_t index);
|
2022-10-28 19:13:43 +02:00
|
|
|
#endif /* MBEDTLS_TEST_HOOKS */
|
2022-10-26 16:14:33 +02:00
|
|
|
|
2022-10-18 18:14:33 +02:00
|
|
|
/**
|
|
|
|
* \brief Fill an integer with a number of random bytes.
|
|
|
|
*
|
|
|
|
* \param X The destination MPI.
|
|
|
|
* \param X_limbs The number of limbs of \p X.
|
|
|
|
* \param bytes The number of random bytes to generate.
|
|
|
|
* \param f_rng The RNG function to use. This must not be \c NULL.
|
|
|
|
* \param p_rng The RNG parameter to be passed to \p f_rng. This may be
|
|
|
|
* \c NULL if \p f_rng doesn't need a context argument.
|
|
|
|
*
|
|
|
|
* \return \c 0 if successful.
|
|
|
|
* \return #MBEDTLS_ERR_MPI_BAD_INPUT_DATA if \p X does not have
|
|
|
|
* enough room for \p bytes bytes.
|
|
|
|
* \return A negative error code on RNG failure.
|
|
|
|
*
|
|
|
|
* \note The bytes obtained from the RNG are interpreted
|
|
|
|
* as a big-endian representation of an MPI; this can
|
|
|
|
* be relevant in applications like deterministic ECDSA.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_mpi_core_fill_random(mbedtls_mpi_uint *X, size_t X_limbs,
|
|
|
|
size_t bytes,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng);
|
2022-10-18 18:14:33 +02:00
|
|
|
|
2022-10-18 18:15:01 +02:00
|
|
|
/** Generate a random number uniformly in a range.
|
|
|
|
*
|
|
|
|
* This function generates a random number between \p min inclusive and
|
|
|
|
* \p N exclusive.
|
|
|
|
*
|
|
|
|
* The procedure complies with RFC 6979 §3.3 (deterministic ECDSA)
|
|
|
|
* when the RNG is a suitably parametrized instance of HMAC_DRBG
|
|
|
|
* and \p min is \c 1.
|
|
|
|
*
|
|
|
|
* \note There are `N - min` possible outputs. The lower bound
|
|
|
|
* \p min can be reached, but the upper bound \p N cannot.
|
|
|
|
*
|
|
|
|
* \param X The destination MPI, with \p limbs limbs.
|
|
|
|
* It must not be aliased with \p N or otherwise overlap it.
|
|
|
|
* \param min The minimum value to return.
|
|
|
|
* \param N The upper bound of the range, exclusive, with \p limbs limbs.
|
|
|
|
* In other words, this is one plus the maximum value to return.
|
|
|
|
* \p N must be strictly larger than \p min.
|
|
|
|
* \param limbs The number of limbs of \p N and \p X.
|
|
|
|
* This must not be 0.
|
|
|
|
* \param f_rng The RNG function to use. This must not be \c NULL.
|
|
|
|
* \param p_rng The RNG parameter to be passed to \p f_rng.
|
|
|
|
*
|
|
|
|
* \return \c 0 if successful.
|
|
|
|
* \return #MBEDTLS_ERR_MPI_NOT_ACCEPTABLE if the implementation was
|
|
|
|
* unable to find a suitable value within a limited number
|
|
|
|
* of attempts. This has a negligible probability if \p N
|
|
|
|
* is significantly larger than \p min, which is the case
|
|
|
|
* for all usual cryptographic applications.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_mpi_core_random(mbedtls_mpi_uint *X,
|
|
|
|
mbedtls_mpi_uint min,
|
|
|
|
const mbedtls_mpi_uint *N,
|
|
|
|
size_t limbs,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng);
|
2022-10-18 18:15:01 +02:00
|
|
|
|
2022-11-02 15:35:17 +01:00
|
|
|
/* BEGIN MERGE SLOT 1 */
|
|
|
|
|
2022-09-30 15:13:14 +02:00
|
|
|
/**
|
2022-12-06 15:37:18 +01:00
|
|
|
* \brief Returns the number of limbs of working memory required for
|
|
|
|
* a call to `mbedtls_mpi_core_exp_mod()`.
|
2022-09-30 15:13:14 +02:00
|
|
|
*
|
2022-12-12 18:06:27 +01:00
|
|
|
* \note This will always be at least
|
|
|
|
* `mbedtls_mpi_core_montmul_working_limbs(AN_limbs)`,
|
|
|
|
* i.e. sufficient for a call to `mbedtls_mpi_core_montmul()`.
|
|
|
|
*
|
2022-12-06 15:37:18 +01:00
|
|
|
* \param AN_limbs The number of limbs in the input `A` and the modulus `N`
|
|
|
|
* (they must be the same size) that will be given to
|
|
|
|
* `mbedtls_mpi_core_exp_mod()`.
|
|
|
|
* \param E_limbs The number of limbs in the exponent `E` that will be given
|
|
|
|
* to `mbedtls_mpi_core_exp_mod()`.
|
|
|
|
*
|
|
|
|
* \return The number of limbs of working memory required by
|
|
|
|
* `mbedtls_mpi_core_exp_mod()`.
|
2022-09-30 15:13:14 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
size_t mbedtls_mpi_core_exp_mod_working_limbs(size_t AN_limbs, size_t E_limbs);
|
2022-12-06 15:37:18 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Perform a modular exponentiation with secret exponent:
|
|
|
|
* X = A^E mod N, where \p A is already in Montgomery form.
|
|
|
|
*
|
2022-12-07 14:29:07 +01:00
|
|
|
* \p X may be aliased to \p A, but not to \p RR or \p E, even if \p E_limbs ==
|
|
|
|
* \p AN_limbs.
|
|
|
|
*
|
2022-12-06 15:37:18 +01:00
|
|
|
* \param[out] X The destination MPI, as a little endian array of length
|
|
|
|
* \p AN_limbs.
|
|
|
|
* \param[in] A The base MPI, as a little endian array of length \p AN_limbs.
|
|
|
|
* Must be in Montgomery form.
|
|
|
|
* \param[in] N The modulus, as a little endian array of length \p AN_limbs.
|
|
|
|
* \param AN_limbs The number of limbs in \p X, \p A, \p N, \p RR.
|
|
|
|
* \param[in] E The exponent, as a little endian array of length \p E_limbs.
|
|
|
|
* \param E_limbs The number of limbs in \p E.
|
|
|
|
* \param[in] RR The precomputed residue of 2^{2*biL} modulo N, as a little
|
|
|
|
* endian array of length \p AN_limbs.
|
|
|
|
* \param[in,out] T Temporary storage of at least the number of limbs returned
|
|
|
|
* by `mbedtls_mpi_core_exp_mod_working_limbs()`.
|
|
|
|
* Its initial content is unused and its final content is
|
|
|
|
* indeterminate.
|
|
|
|
* It must not alias or otherwise overlap any of the other
|
|
|
|
* parameters.
|
|
|
|
* It is up to the caller to zeroize \p T when it is no
|
|
|
|
* longer needed, and before freeing it if it was dynamically
|
|
|
|
* allocated.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_mpi_core_exp_mod(mbedtls_mpi_uint *X,
|
|
|
|
const mbedtls_mpi_uint *A,
|
|
|
|
const mbedtls_mpi_uint *N, size_t AN_limbs,
|
|
|
|
const mbedtls_mpi_uint *E, size_t E_limbs,
|
|
|
|
const mbedtls_mpi_uint *RR,
|
|
|
|
mbedtls_mpi_uint *T);
|
2022-09-30 15:13:14 +02:00
|
|
|
|
2022-11-02 15:35:17 +01:00
|
|
|
/* END MERGE SLOT 1 */
|
|
|
|
|
|
|
|
/* BEGIN MERGE SLOT 2 */
|
|
|
|
|
|
|
|
/* END MERGE SLOT 2 */
|
|
|
|
|
|
|
|
/* BEGIN MERGE SLOT 3 */
|
|
|
|
|
2022-08-25 09:25:19 +02:00
|
|
|
/**
|
|
|
|
* \brief Subtract unsigned integer from known-size large unsigned integers.
|
|
|
|
* Return the borrow.
|
|
|
|
*
|
2022-08-25 09:39:07 +02:00
|
|
|
* \param[out] X The result of the subtraction.
|
|
|
|
* \param[in] A The left operand.
|
|
|
|
* \param b The unsigned scalar to subtract.
|
|
|
|
* \param limbs Number of limbs of \p X and \p A.
|
2022-08-25 09:25:19 +02:00
|
|
|
*
|
2022-08-25 09:39:07 +02:00
|
|
|
* \return 1 if `A < b`.
|
|
|
|
* 0 if `A >= b`.
|
2022-08-25 09:25:19 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_mpi_uint mbedtls_mpi_core_sub_int(mbedtls_mpi_uint *X,
|
|
|
|
const mbedtls_mpi_uint *A,
|
|
|
|
mbedtls_mpi_uint b,
|
|
|
|
size_t limbs);
|
2022-08-25 09:25:19 +02:00
|
|
|
|
2022-12-12 17:54:57 +01:00
|
|
|
/**
|
|
|
|
* \brief Determine if a given MPI has the value \c 0 in constant time with
|
|
|
|
* respect to the value (but not with respect to the number of limbs).
|
|
|
|
*
|
|
|
|
* \param[in] A The MPI to test.
|
|
|
|
* \param limbs Number of limbs in \p A.
|
|
|
|
*
|
|
|
|
* \return 0 if `A == 0`
|
|
|
|
* non-0 (may be any value) if `A != 0`.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_mpi_uint mbedtls_mpi_core_check_zero_ct(const mbedtls_mpi_uint *A,
|
|
|
|
size_t limbs);
|
2022-12-12 17:54:57 +01:00
|
|
|
|
2022-12-12 18:06:27 +01:00
|
|
|
/**
|
|
|
|
* \brief Returns the number of limbs of working memory required for
|
|
|
|
* a call to `mbedtls_mpi_core_montmul()`.
|
|
|
|
*
|
|
|
|
* \param AN_limbs The number of limbs in the input `A` and the modulus `N`
|
|
|
|
* (they must be the same size) that will be given to
|
|
|
|
* `mbedtls_mpi_core_montmul()` or one of the other functions
|
|
|
|
* that specifies this as the amount of working memory needed.
|
|
|
|
*
|
|
|
|
* \return The number of limbs of working memory required by
|
|
|
|
* `mbedtls_mpi_core_montmul()` (or other similar function).
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
static inline size_t mbedtls_mpi_core_montmul_working_limbs(size_t AN_limbs)
|
2022-12-12 18:06:27 +01:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
return 2 * AN_limbs + 1;
|
2022-12-12 18:06:27 +01:00
|
|
|
}
|
|
|
|
|
2022-12-13 11:45:19 +01:00
|
|
|
/** Convert an MPI into Montgomery form.
|
|
|
|
*
|
|
|
|
* \p X may be aliased to \p A, but may not otherwise overlap it.
|
|
|
|
*
|
2023-03-07 12:39:52 +01:00
|
|
|
* \p X may not alias \p N (it is in canonical form, so must be strictly less
|
2022-12-13 11:45:19 +01:00
|
|
|
* than \p N). Nor may it alias or overlap \p rr (this is unlikely to be
|
|
|
|
* required in practice.)
|
|
|
|
*
|
|
|
|
* This function is a thin wrapper around `mbedtls_mpi_core_montmul()` that is
|
|
|
|
* an alternative to calling `mbedtls_mpi_mod_raw_to_mont_rep()` when we
|
|
|
|
* don't want to allocate memory.
|
|
|
|
*
|
|
|
|
* \param[out] X The result of the conversion.
|
|
|
|
* Must have the same number of limbs as \p A.
|
|
|
|
* \param[in] A The MPI to convert into Montgomery form.
|
|
|
|
* Must have the same number of limbs as the modulus.
|
|
|
|
* \param[in] N The address of the modulus, which gives the size of
|
2022-12-16 17:10:36 +01:00
|
|
|
* the base `R` = 2^(biL*N->limbs).
|
2022-12-13 11:45:19 +01:00
|
|
|
* \param[in] AN_limbs The number of limbs in \p X, \p A, \p N and \p rr.
|
|
|
|
* \param mm The Montgomery constant for \p N: -N^-1 mod 2^biL.
|
2022-12-14 14:11:46 +01:00
|
|
|
* This can be determined by calling
|
2022-12-13 11:45:19 +01:00
|
|
|
* `mbedtls_mpi_core_montmul_init()`.
|
|
|
|
* \param[in] rr The residue for `2^{2*n*biL} mod N`.
|
|
|
|
* \param[in,out] T Temporary storage of size at least
|
|
|
|
* `mbedtls_mpi_core_montmul_working_limbs(AN_limbs)`
|
|
|
|
* limbs.
|
|
|
|
* Its initial content is unused and
|
|
|
|
* its final content is indeterminate.
|
|
|
|
* It must not alias or otherwise overlap any of the
|
|
|
|
* other parameters.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_mpi_core_to_mont_rep(mbedtls_mpi_uint *X,
|
|
|
|
const mbedtls_mpi_uint *A,
|
|
|
|
const mbedtls_mpi_uint *N,
|
|
|
|
size_t AN_limbs,
|
|
|
|
mbedtls_mpi_uint mm,
|
|
|
|
const mbedtls_mpi_uint *rr,
|
|
|
|
mbedtls_mpi_uint *T);
|
2022-12-13 11:45:19 +01:00
|
|
|
|
|
|
|
/** Convert an MPI from Montgomery form.
|
|
|
|
*
|
|
|
|
* \p X may be aliased to \p A, but may not otherwise overlap it.
|
|
|
|
*
|
2023-03-07 12:39:52 +01:00
|
|
|
* \p X may not alias \p N (it is in canonical form, so must be strictly less
|
2022-12-13 11:45:19 +01:00
|
|
|
* than \p N).
|
|
|
|
*
|
|
|
|
* This function is a thin wrapper around `mbedtls_mpi_core_montmul()` that is
|
|
|
|
* an alternative to calling `mbedtls_mpi_mod_raw_from_mont_rep()` when we
|
|
|
|
* don't want to allocate memory.
|
|
|
|
*
|
|
|
|
* \param[out] X The result of the conversion.
|
|
|
|
* Must have the same number of limbs as \p A.
|
|
|
|
* \param[in] A The MPI to convert from Montgomery form.
|
|
|
|
* Must have the same number of limbs as the modulus.
|
|
|
|
* \param[in] N The address of the modulus, which gives the size of
|
2022-12-16 17:10:36 +01:00
|
|
|
* the base `R` = 2^(biL*N->limbs).
|
2022-12-13 11:45:19 +01:00
|
|
|
* \param[in] AN_limbs The number of limbs in \p X, \p A and \p N.
|
|
|
|
* \param mm The Montgomery constant for \p N: -N^-1 mod 2^biL.
|
2022-12-14 14:11:46 +01:00
|
|
|
* This can be determined by calling
|
2022-12-13 11:45:19 +01:00
|
|
|
* `mbedtls_mpi_core_montmul_init()`.
|
|
|
|
* \param[in,out] T Temporary storage of size at least
|
|
|
|
* `mbedtls_mpi_core_montmul_working_limbs(AN_limbs)`
|
|
|
|
* limbs.
|
|
|
|
* Its initial content is unused and
|
|
|
|
* its final content is indeterminate.
|
|
|
|
* It must not alias or otherwise overlap any of the
|
|
|
|
* other parameters.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_mpi_core_from_mont_rep(mbedtls_mpi_uint *X,
|
|
|
|
const mbedtls_mpi_uint *A,
|
|
|
|
const mbedtls_mpi_uint *N,
|
|
|
|
size_t AN_limbs,
|
|
|
|
mbedtls_mpi_uint mm,
|
|
|
|
mbedtls_mpi_uint *T);
|
2022-12-13 11:45:19 +01:00
|
|
|
|
2022-11-02 15:35:17 +01:00
|
|
|
/* END MERGE SLOT 3 */
|
|
|
|
|
|
|
|
/* BEGIN MERGE SLOT 4 */
|
|
|
|
|
|
|
|
/* END MERGE SLOT 4 */
|
|
|
|
|
|
|
|
/* BEGIN MERGE SLOT 5 */
|
|
|
|
|
|
|
|
/* END MERGE SLOT 5 */
|
|
|
|
|
|
|
|
/* BEGIN MERGE SLOT 6 */
|
|
|
|
|
|
|
|
/* END MERGE SLOT 6 */
|
|
|
|
|
|
|
|
/* BEGIN MERGE SLOT 7 */
|
|
|
|
|
|
|
|
/* END MERGE SLOT 7 */
|
|
|
|
|
|
|
|
/* BEGIN MERGE SLOT 8 */
|
|
|
|
|
|
|
|
/* END MERGE SLOT 8 */
|
|
|
|
|
|
|
|
/* BEGIN MERGE SLOT 9 */
|
|
|
|
|
|
|
|
/* END MERGE SLOT 9 */
|
|
|
|
|
|
|
|
/* BEGIN MERGE SLOT 10 */
|
|
|
|
|
|
|
|
/* END MERGE SLOT 10 */
|
|
|
|
|
2022-07-18 23:09:45 +02:00
|
|
|
#endif /* MBEDTLS_BIGNUM_CORE_H */
|