945b23c46f
We used to include platform.h only when MBEDTLS_PLATFORM_C was enabled, and to define ad hoc replacements for mbedtls_xxx functions on a case-by-case basis when MBEDTLS_PLATFORM_C was disabled. The only reason for this complication was to allow building individual source modules without copying platform.h. This is not something we support or recommend anymore, so get rid of the complication: include platform.h unconditionally. There should be no change in behavior since just including the header should not change the behavior of a program. This commit replaces most occurrences of conditional inclusion of platform.h, using the following code: ``` perl -i -0777 -pe 's!#if.*\n#include "mbedtls/platform.h"\n(#else.*\n(#define (mbedtls|MBEDTLS)_.*\n|#include <(stdarg|stddef|stdio|stdlib|string|time)\.h>\n)*)?#endif.*!#include "mbedtls/platform.h"!mg' $(git grep -l '#include "mbedtls/platform.h"') ``` Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
89 lines
2.6 KiB
C
89 lines
2.6 KiB
C
/*
|
|
* Low-level modular bignum functions
|
|
*
|
|
* 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"
|
|
|
|
int mbedtls_mpi_mod_raw_read( mbedtls_mpi_uint *X,
|
|
const mbedtls_mpi_mod_modulus *m,
|
|
const unsigned char *input,
|
|
size_t input_length )
|
|
{
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
|
|
|
switch( m->ext_rep )
|
|
{
|
|
case MBEDTLS_MPI_MOD_EXT_REP_LE:
|
|
ret = mbedtls_mpi_core_read_le( X, m->limbs,
|
|
input, input_length );
|
|
break;
|
|
case MBEDTLS_MPI_MOD_EXT_REP_BE:
|
|
ret = mbedtls_mpi_core_read_be( X, m->limbs,
|
|
input, input_length );
|
|
break;
|
|
default:
|
|
return( MBEDTLS_ERR_MPI_BAD_INPUT_DATA );
|
|
}
|
|
|
|
if( ret != 0 )
|
|
goto cleanup;
|
|
|
|
if( !mbedtls_mpi_core_lt_ct( X, m->p, m->limbs ) )
|
|
{
|
|
ret = MBEDTLS_ERR_MPI_BAD_INPUT_DATA;
|
|
goto cleanup;
|
|
}
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
|
}
|
|
|
|
int mbedtls_mpi_mod_raw_write( const mbedtls_mpi_uint *A,
|
|
const mbedtls_mpi_mod_modulus *m,
|
|
unsigned char *output,
|
|
size_t output_length )
|
|
{
|
|
switch( m->ext_rep )
|
|
{
|
|
case MBEDTLS_MPI_MOD_EXT_REP_LE:
|
|
return( mbedtls_mpi_core_write_le( A, m->limbs,
|
|
output, output_length ) );
|
|
case MBEDTLS_MPI_MOD_EXT_REP_BE:
|
|
return( mbedtls_mpi_core_write_be( A, m->limbs,
|
|
output, output_length ) );
|
|
default:
|
|
return( MBEDTLS_ERR_MPI_BAD_INPUT_DATA );
|
|
}
|
|
}
|
|
|
|
#endif /* MBEDTLS_BIGNUM_C */
|