2022-07-18 23:02:33 +02:00
|
|
|
/**
|
2022-08-19 13:09:17 +02:00
|
|
|
* Modular bignum functions
|
2022-07-18 23:02:33 +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)
|
|
|
|
|
2022-07-18 23:09:45 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "mbedtls/platform_util.h"
|
2022-07-18 23:02:33 +02:00
|
|
|
#include "mbedtls/error.h"
|
|
|
|
#include "mbedtls/bignum.h"
|
|
|
|
|
2022-07-19 14:42:07 +02:00
|
|
|
#include "mbedtls/platform.h"
|
|
|
|
|
2022-08-09 14:44:53 +02:00
|
|
|
#include "bignum_core.h"
|
|
|
|
#include "bignum_mod.h"
|
|
|
|
#include "bignum_mod_raw.h"
|
|
|
|
#include "constant_time_internal.h"
|
|
|
|
|
2022-07-18 23:02:33 +02:00
|
|
|
int mbedtls_mpi_mod_residue_setup( mbedtls_mpi_mod_residue *r,
|
2022-08-19 11:58:34 +02:00
|
|
|
const mbedtls_mpi_mod_modulus *m,
|
2022-07-25 12:31:02 +02:00
|
|
|
mbedtls_mpi_uint *p,
|
2022-08-19 13:24:40 +02:00
|
|
|
size_t p_limbs )
|
2022-07-18 23:02:33 +02:00
|
|
|
{
|
2022-08-19 13:24:40 +02:00
|
|
|
if( p_limbs < m->limbs || !mbedtls_mpi_core_lt_ct( m->p, p, p_limbs ) )
|
2022-07-18 23:02:33 +02:00
|
|
|
return( MBEDTLS_ERR_MPI_BAD_INPUT_DATA );
|
|
|
|
|
2022-08-12 18:09:12 +02:00
|
|
|
r->limbs = m->limbs;
|
2022-07-25 12:31:02 +02:00
|
|
|
r->p = p;
|
2022-07-18 23:02:33 +02:00
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2022-08-02 17:22:18 +02:00
|
|
|
void mbedtls_mpi_mod_residue_release( mbedtls_mpi_mod_residue *r )
|
|
|
|
{
|
|
|
|
if ( r == NULL )
|
|
|
|
return;
|
|
|
|
|
2022-08-12 18:09:12 +02:00
|
|
|
r->limbs = 0;
|
2022-08-02 17:22:18 +02:00
|
|
|
r->p = NULL;
|
|
|
|
}
|
|
|
|
|
2022-07-18 23:02:33 +02:00
|
|
|
void mbedtls_mpi_mod_modulus_init( mbedtls_mpi_mod_modulus *m )
|
|
|
|
{
|
|
|
|
if ( m == NULL )
|
|
|
|
return;
|
|
|
|
|
2022-07-19 14:14:36 +02:00
|
|
|
m->p = NULL;
|
2022-08-12 18:09:12 +02:00
|
|
|
m->limbs = 0;
|
|
|
|
m->bits = 0;
|
2022-07-19 14:14:36 +02:00
|
|
|
m->ext_rep = MBEDTLS_MPI_MOD_EXT_REP_INVALID;
|
|
|
|
m->int_rep = MBEDTLS_MPI_MOD_REP_INVALID;
|
2022-07-18 23:02:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void mbedtls_mpi_mod_modulus_free( mbedtls_mpi_mod_modulus *m )
|
|
|
|
{
|
|
|
|
if ( m == NULL )
|
|
|
|
return;
|
|
|
|
|
2022-07-19 14:42:07 +02:00
|
|
|
switch( m->int_rep )
|
|
|
|
{
|
|
|
|
case MBEDTLS_MPI_MOD_REP_MONTGOMERY:
|
2022-08-11 15:58:29 +02:00
|
|
|
mbedtls_free( m->rep.mont );
|
|
|
|
break;
|
2022-07-19 14:42:07 +02:00
|
|
|
case MBEDTLS_MPI_MOD_REP_OPT_RED:
|
2022-08-11 15:58:29 +02:00
|
|
|
mbedtls_free( m->rep.ored );
|
|
|
|
break;
|
|
|
|
case MBEDTLS_MPI_MOD_REP_INVALID:
|
2022-07-19 14:42:07 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2022-07-18 23:02:33 +02:00
|
|
|
m->p = NULL;
|
2022-08-12 18:09:12 +02:00
|
|
|
m->limbs = 0;
|
|
|
|
m->bits = 0;
|
2022-07-19 14:14:36 +02:00
|
|
|
m->ext_rep = MBEDTLS_MPI_MOD_EXT_REP_INVALID;
|
|
|
|
m->int_rep = MBEDTLS_MPI_MOD_REP_INVALID;
|
2022-07-18 23:02:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int mbedtls_mpi_mod_modulus_setup( mbedtls_mpi_mod_modulus *m,
|
2022-08-15 12:50:22 +02:00
|
|
|
const mbedtls_mpi_uint *p,
|
2022-08-19 13:24:40 +02:00
|
|
|
size_t p_limbs,
|
2022-08-11 15:58:29 +02:00
|
|
|
mbedtls_mpi_mod_ext_rep ext_rep,
|
|
|
|
mbedtls_mpi_mod_rep_selector int_rep )
|
2022-07-18 23:02:33 +02:00
|
|
|
{
|
2022-07-19 14:42:07 +02:00
|
|
|
int ret = 0;
|
|
|
|
|
2022-08-02 11:50:44 +02:00
|
|
|
m->p = p;
|
2022-08-19 13:24:40 +02:00
|
|
|
m->limbs = p_limbs;
|
|
|
|
m->bits = mbedtls_mpi_core_bitlen( p, p_limbs );
|
2022-07-18 23:02:33 +02:00
|
|
|
|
2022-07-19 14:42:07 +02:00
|
|
|
switch( ext_rep )
|
|
|
|
{
|
|
|
|
case MBEDTLS_MPI_MOD_EXT_REP_LE:
|
|
|
|
case MBEDTLS_MPI_MOD_EXT_REP_BE:
|
2022-08-11 15:58:29 +02:00
|
|
|
m->ext_rep = ext_rep;
|
|
|
|
break;
|
2022-07-19 14:42:07 +02:00
|
|
|
default:
|
|
|
|
ret = MBEDTLS_ERR_MPI_BAD_INPUT_DATA;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch( int_rep )
|
|
|
|
{
|
|
|
|
case MBEDTLS_MPI_MOD_REP_MONTGOMERY:
|
|
|
|
m->int_rep = int_rep;
|
2022-08-11 15:58:29 +02:00
|
|
|
m->rep.mont = NULL;
|
|
|
|
break;
|
2022-07-19 14:42:07 +02:00
|
|
|
case MBEDTLS_MPI_MOD_REP_OPT_RED:
|
|
|
|
m->int_rep = int_rep;
|
2022-08-11 15:58:29 +02:00
|
|
|
m->rep.ored = NULL;
|
|
|
|
break;
|
2022-07-19 14:42:07 +02:00
|
|
|
default:
|
|
|
|
ret = MBEDTLS_ERR_MPI_BAD_INPUT_DATA;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
|
|
|
|
if( ret != 0 )
|
|
|
|
{
|
|
|
|
mbedtls_mpi_mod_modulus_free( m );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( ret );
|
2022-07-18 23:02:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* MBEDTLS_BIGNUM_C */
|