2022-08-09 14:34:54 +02:00
|
|
|
/*
|
2022-08-19 13:09:17 +02:00
|
|
|
* Low-level modular bignum functions
|
2022-08-09 14:34:54 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_BIGNUM_C)
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "mbedtls/error.h"
|
|
|
|
#include "mbedtls/platform_util.h"
|
|
|
|
|
|
|
|
#include "mbedtls/platform.h"
|
|
|
|
|
|
|
|
#include "bignum_core.h"
|
|
|
|
#include "bignum_mod_raw.h"
|
|
|
|
#include "bignum_mod.h"
|
|
|
|
#include "constant_time_internal.h"
|
|
|
|
|
2022-09-15 20:01:31 +02:00
|
|
|
void mbedtls_mpi_mod_raw_cond_assign( mbedtls_mpi_uint *X,
|
2022-09-27 12:13:51 +02:00
|
|
|
const mbedtls_mpi_uint *A,
|
2022-09-30 13:54:02 +02:00
|
|
|
const mbedtls_mpi_mod_modulus *N,
|
2022-09-15 20:01:31 +02:00
|
|
|
unsigned char assign )
|
2022-09-12 16:35:58 +02:00
|
|
|
{
|
2022-09-30 13:54:02 +02:00
|
|
|
mbedtls_mpi_core_cond_assign( X, A, N->limbs, assign );
|
2022-09-12 16:35:58 +02:00
|
|
|
}
|
|
|
|
|
2022-09-30 13:54:02 +02:00
|
|
|
void mbedtls_mpi_mod_raw_cond_swap( mbedtls_mpi_uint *X,
|
|
|
|
mbedtls_mpi_uint *Y,
|
|
|
|
const mbedtls_mpi_mod_modulus *N,
|
2022-09-15 20:01:31 +02:00
|
|
|
unsigned char swap )
|
2022-09-12 16:35:58 +02:00
|
|
|
{
|
2022-09-30 13:54:02 +02:00
|
|
|
mbedtls_mpi_core_cond_swap( X, Y, N->limbs, swap );
|
2022-09-12 16:35:58 +02:00
|
|
|
}
|
|
|
|
|
2022-08-09 14:34:54 +02:00
|
|
|
int mbedtls_mpi_mod_raw_read( mbedtls_mpi_uint *X,
|
2022-08-19 11:58:34 +02:00
|
|
|
const mbedtls_mpi_mod_modulus *m,
|
2022-08-19 13:24:40 +02:00
|
|
|
const unsigned char *input,
|
2022-11-24 18:42:02 +01:00
|
|
|
size_t input_length,
|
|
|
|
mbedtls_mpi_mod_ext_rep ext_rep )
|
2022-08-09 14:34:54 +02:00
|
|
|
{
|
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
|
|
|
|
2022-11-24 18:42:02 +01:00
|
|
|
switch( ext_rep )
|
2022-08-11 15:58:29 +02:00
|
|
|
{
|
|
|
|
case MBEDTLS_MPI_MOD_EXT_REP_LE:
|
2022-08-19 13:24:40 +02:00
|
|
|
ret = mbedtls_mpi_core_read_le( X, m->limbs,
|
2022-08-22 10:06:32 +02:00
|
|
|
input, input_length );
|
2022-08-11 15:58:29 +02:00
|
|
|
break;
|
|
|
|
case MBEDTLS_MPI_MOD_EXT_REP_BE:
|
2022-08-19 13:24:40 +02:00
|
|
|
ret = mbedtls_mpi_core_read_be( X, m->limbs,
|
2022-08-22 10:06:32 +02:00
|
|
|
input, input_length );
|
2022-08-11 15:58:29 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return( MBEDTLS_ERR_MPI_BAD_INPUT_DATA );
|
|
|
|
}
|
2022-08-09 14:34:54 +02:00
|
|
|
|
|
|
|
if( ret != 0 )
|
|
|
|
goto cleanup;
|
|
|
|
|
2022-08-12 18:09:12 +02:00
|
|
|
if( !mbedtls_mpi_core_lt_ct( X, m->p, m->limbs ) )
|
2022-08-09 14:34:54 +02:00
|
|
|
{
|
|
|
|
ret = MBEDTLS_ERR_MPI_BAD_INPUT_DATA;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2022-08-19 13:24:40 +02:00
|
|
|
int mbedtls_mpi_mod_raw_write( const mbedtls_mpi_uint *A,
|
2022-08-19 11:58:34 +02:00
|
|
|
const mbedtls_mpi_mod_modulus *m,
|
2022-08-19 13:24:40 +02:00
|
|
|
unsigned char *output,
|
2022-11-24 18:42:02 +01:00
|
|
|
size_t output_length,
|
|
|
|
mbedtls_mpi_mod_ext_rep ext_rep )
|
2022-08-09 14:34:54 +02:00
|
|
|
{
|
2022-11-24 18:42:02 +01:00
|
|
|
switch( ext_rep )
|
2022-08-11 15:58:29 +02:00
|
|
|
{
|
|
|
|
case MBEDTLS_MPI_MOD_EXT_REP_LE:
|
2022-08-19 13:24:40 +02:00
|
|
|
return( mbedtls_mpi_core_write_le( A, m->limbs,
|
|
|
|
output, output_length ) );
|
2022-08-11 15:58:29 +02:00
|
|
|
case MBEDTLS_MPI_MOD_EXT_REP_BE:
|
2022-08-19 13:24:40 +02:00
|
|
|
return( mbedtls_mpi_core_write_be( A, m->limbs,
|
|
|
|
output, output_length ) );
|
2022-08-11 15:58:29 +02:00
|
|
|
default:
|
|
|
|
return( MBEDTLS_ERR_MPI_BAD_INPUT_DATA );
|
|
|
|
}
|
2022-08-09 14:34:54 +02:00
|
|
|
}
|
|
|
|
|
2022-11-02 15:35:17 +01:00
|
|
|
/* BEGIN MERGE SLOT 1 */
|
|
|
|
|
|
|
|
/* END MERGE SLOT 1 */
|
|
|
|
|
|
|
|
/* BEGIN MERGE SLOT 2 */
|
|
|
|
|
2022-11-09 14:07:43 +01:00
|
|
|
void mbedtls_mpi_mod_raw_sub( mbedtls_mpi_uint *X,
|
|
|
|
const mbedtls_mpi_uint *A,
|
|
|
|
const mbedtls_mpi_uint *B,
|
|
|
|
const mbedtls_mpi_mod_modulus *N )
|
|
|
|
{
|
|
|
|
mbedtls_mpi_uint c = mbedtls_mpi_core_sub( X, A, B, N->limbs );
|
|
|
|
|
2022-11-16 11:31:00 +01:00
|
|
|
(void) mbedtls_mpi_core_add_if( X, N->p, N->limbs, (unsigned) c );
|
2022-11-09 14:07:43 +01:00
|
|
|
}
|
|
|
|
|
2022-11-02 15:35:17 +01:00
|
|
|
/* END MERGE SLOT 2 */
|
|
|
|
|
|
|
|
/* BEGIN MERGE SLOT 3 */
|
|
|
|
|
|
|
|
/* END MERGE SLOT 3 */
|
|
|
|
|
|
|
|
/* BEGIN MERGE SLOT 4 */
|
|
|
|
|
|
|
|
/* END MERGE SLOT 4 */
|
|
|
|
|
|
|
|
/* BEGIN MERGE SLOT 5 */
|
2022-11-01 14:27:29 +01:00
|
|
|
void mbedtls_mpi_mod_raw_add( mbedtls_mpi_uint *X,
|
2022-11-08 16:53:47 +01:00
|
|
|
const mbedtls_mpi_uint *A,
|
|
|
|
const mbedtls_mpi_uint *B,
|
2022-11-01 14:36:51 +01:00
|
|
|
const mbedtls_mpi_mod_modulus *N )
|
2022-11-01 14:14:28 +01:00
|
|
|
{
|
2022-11-08 16:53:47 +01:00
|
|
|
mbedtls_mpi_uint carry, borrow;
|
2022-11-01 14:36:51 +01:00
|
|
|
carry = mbedtls_mpi_core_add( X, A, B, N->limbs );
|
|
|
|
borrow = mbedtls_mpi_core_sub( X, X, N->p, N->limbs );
|
2022-11-17 12:19:58 +01:00
|
|
|
(void) mbedtls_mpi_core_add_if( X, N->p, N->limbs, (unsigned) ( carry ^ borrow ) );
|
2022-11-01 14:14:28 +01:00
|
|
|
}
|
2022-11-02 15:35:17 +01:00
|
|
|
/* END MERGE SLOT 5 */
|
|
|
|
|
|
|
|
/* BEGIN MERGE SLOT 6 */
|
|
|
|
|
|
|
|
/* END MERGE SLOT 6 */
|
|
|
|
|
|
|
|
/* BEGIN MERGE SLOT 7 */
|
2022-11-01 17:19:07 +01:00
|
|
|
int mbedtls_mpi_mod_raw_to_mont_rep( mbedtls_mpi_uint *X,
|
|
|
|
const mbedtls_mpi_mod_modulus *m )
|
2022-08-09 15:45:53 +02:00
|
|
|
{
|
2022-11-01 17:19:07 +01:00
|
|
|
mbedtls_mpi_uint *T;
|
|
|
|
const size_t t_limbs = m->limbs * 2 + 1;
|
|
|
|
|
|
|
|
if( ( T = (mbedtls_mpi_uint *) mbedtls_calloc( t_limbs, ciL ) ) == NULL )
|
|
|
|
return( MBEDTLS_ERR_MPI_ALLOC_FAILED );
|
|
|
|
|
|
|
|
mbedtls_mpi_core_montmul( X, X, m->rep.mont.rr, m->limbs, m->p, m->limbs,
|
|
|
|
m->rep.mont.mm, T );
|
|
|
|
|
|
|
|
mbedtls_platform_zeroize( T, t_limbs * ciL );
|
|
|
|
mbedtls_free( T );
|
2022-08-09 15:45:53 +02:00
|
|
|
return( 0 );
|
|
|
|
}
|
2022-11-02 15:35:17 +01:00
|
|
|
|
2022-11-01 17:19:07 +01:00
|
|
|
int mbedtls_mpi_mod_raw_from_mont_rep( mbedtls_mpi_uint *X,
|
|
|
|
const mbedtls_mpi_mod_modulus *m )
|
2022-08-09 15:45:53 +02:00
|
|
|
{
|
2022-11-01 17:19:07 +01:00
|
|
|
const mbedtls_mpi_uint one = 1;
|
|
|
|
const size_t t_limbs = m->limbs * 2 + 1;
|
|
|
|
mbedtls_mpi_uint *T;
|
|
|
|
|
|
|
|
if( ( T = (mbedtls_mpi_uint *) mbedtls_calloc( t_limbs, ciL ) ) == NULL )
|
|
|
|
return( MBEDTLS_ERR_MPI_ALLOC_FAILED );
|
|
|
|
|
|
|
|
mbedtls_mpi_core_montmul( X, X, &one, 1, m->p, m->limbs,
|
|
|
|
m->rep.mont.mm, T );
|
|
|
|
|
|
|
|
mbedtls_platform_zeroize( T, t_limbs * ciL );
|
|
|
|
mbedtls_free( T );
|
2022-08-09 15:45:53 +02:00
|
|
|
return( 0 );
|
|
|
|
}
|
2022-11-02 15:35:17 +01:00
|
|
|
/* 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-08-09 14:34:54 +02:00
|
|
|
#endif /* MBEDTLS_BIGNUM_C */
|