2021-09-27 11:28:54 +02:00
|
|
|
/**
|
|
|
|
* Constant-time 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.
|
|
|
|
*/
|
|
|
|
|
2021-10-19 11:27:17 +02:00
|
|
|
#ifndef MBEDTLS_CONSTANT_TIME_INTERNAL_H
|
|
|
|
#define MBEDTLS_CONSTANT_TIME_INTERNAL_H
|
|
|
|
|
2021-09-27 11:28:54 +02:00
|
|
|
#include "common.h"
|
|
|
|
|
2021-09-27 12:55:33 +02:00
|
|
|
#if defined(MBEDTLS_BIGNUM_C)
|
|
|
|
#include "mbedtls/bignum.h"
|
|
|
|
#endif
|
|
|
|
|
2021-09-27 14:28:31 +02:00
|
|
|
#if defined(MBEDTLS_SSL_TLS_C)
|
|
|
|
#include "ssl_misc.h"
|
|
|
|
#endif
|
|
|
|
|
2021-09-27 11:28:54 +02:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2021-09-27 11:40:03 +02:00
|
|
|
|
2021-08-11 16:40:35 +02:00
|
|
|
/** Turn a value into a mask:
|
|
|
|
* - if \p value == 0, return the all-bits 0 mask, aka 0
|
2021-10-18 16:28:27 +02:00
|
|
|
* - otherwise, return the all-bits 1 mask, aka (unsigned) -1
|
2021-08-11 16:40:35 +02:00
|
|
|
*
|
|
|
|
* This function can be used to write constant-time code by replacing branches
|
|
|
|
* with bit operations using masks.
|
|
|
|
*
|
|
|
|
* \param value The value to analyze.
|
|
|
|
*
|
|
|
|
* \return Zero if \p value is zero, otherwise all-bits-one.
|
|
|
|
*/
|
2021-10-20 11:59:27 +02:00
|
|
|
unsigned mbedtls_ct_uint_mask( unsigned value );
|
2021-09-27 11:49:42 +02:00
|
|
|
|
2021-10-20 11:17:43 +02:00
|
|
|
#if defined(MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC)
|
|
|
|
|
2021-08-11 16:40:35 +02:00
|
|
|
/** Turn a value into a mask:
|
|
|
|
* - if \p value == 0, return the all-bits 0 mask, aka 0
|
|
|
|
* - otherwise, return the all-bits 1 mask, aka (size_t) -1
|
|
|
|
*
|
|
|
|
* This function can be used to write constant-time code by replacing branches
|
|
|
|
* with bit operations using masks.
|
|
|
|
*
|
|
|
|
* \param value The value to analyze.
|
|
|
|
*
|
|
|
|
* \return Zero if \p value is zero, otherwise all-bits-one.
|
|
|
|
*/
|
2021-10-20 11:59:27 +02:00
|
|
|
size_t mbedtls_ct_size_mask( size_t value );
|
2021-09-27 11:53:54 +02:00
|
|
|
|
2021-10-20 11:17:43 +02:00
|
|
|
#endif /* MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC */
|
|
|
|
|
2021-08-11 15:07:02 +02:00
|
|
|
#if defined(MBEDTLS_BIGNUM_C)
|
|
|
|
|
2021-08-11 16:40:35 +02:00
|
|
|
/** Turn a value into a mask:
|
|
|
|
* - if \p value == 0, return the all-bits 0 mask, aka 0
|
2021-10-18 16:28:27 +02:00
|
|
|
* - otherwise, return the all-bits 1 mask, aka (mbedtls_mpi_uint) -1
|
2021-08-11 16:40:35 +02:00
|
|
|
*
|
|
|
|
* This function can be used to write constant-time code by replacing branches
|
|
|
|
* with bit operations using masks.
|
|
|
|
*
|
|
|
|
* \param value The value to analyze.
|
|
|
|
*
|
|
|
|
* \return Zero if \p value is zero, otherwise all-bits-one.
|
|
|
|
*/
|
2021-10-20 11:59:27 +02:00
|
|
|
mbedtls_mpi_uint mbedtls_ct_mpi_uint_mask( mbedtls_mpi_uint value );
|
2021-08-11 15:07:02 +02:00
|
|
|
|
|
|
|
#endif /* MBEDTLS_BIGNUM_C */
|
|
|
|
|
2021-10-18 17:05:06 +02:00
|
|
|
#if defined(MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC)
|
|
|
|
|
2021-08-11 16:40:35 +02:00
|
|
|
/** Constant-flow mask generation for "greater or equal" comparison:
|
|
|
|
* - if \p x >= \p y, return all-bits 1, that is (size_t) -1
|
|
|
|
* - otherwise, return all bits 0, that is 0
|
|
|
|
*
|
|
|
|
* This function can be used to write constant-time code by replacing branches
|
|
|
|
* with bit operations using masks.
|
|
|
|
*
|
|
|
|
* \param x The first value to analyze.
|
|
|
|
* \param y The second value to analyze.
|
|
|
|
*
|
|
|
|
* \return All-bits-one if \p x is greater or equal than \p y,
|
|
|
|
* otherwise zero.
|
|
|
|
*/
|
2021-10-20 11:59:27 +02:00
|
|
|
size_t mbedtls_ct_size_mask_ge( size_t x,
|
2021-09-27 16:29:52 +02:00
|
|
|
size_t y );
|
2021-09-27 12:15:19 +02:00
|
|
|
|
2021-10-18 17:05:06 +02:00
|
|
|
#endif /* MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC */
|
|
|
|
|
2021-08-11 16:40:35 +02:00
|
|
|
/** Constant-flow boolean "equal" comparison:
|
|
|
|
* return x == y
|
|
|
|
*
|
|
|
|
* This is equivalent to \p x == \p y, but is likely to be compiled
|
|
|
|
* to code using bitwise operation rather than a branch.
|
|
|
|
*
|
|
|
|
* \param x The first value to analyze.
|
|
|
|
* \param y The second value to analyze.
|
|
|
|
*
|
|
|
|
* \return 1 if \p x equals to \p y, otherwise 0.
|
|
|
|
*/
|
2021-10-20 11:59:27 +02:00
|
|
|
unsigned mbedtls_ct_size_bool_eq( size_t x,
|
2021-08-11 17:28:49 +02:00
|
|
|
size_t y );
|
2021-09-27 12:25:07 +02:00
|
|
|
|
2021-09-27 12:55:33 +02:00
|
|
|
#if defined(MBEDTLS_BIGNUM_C)
|
|
|
|
|
2021-08-11 16:40:35 +02:00
|
|
|
/** Decide if an integer is less than the other, without branches.
|
|
|
|
*
|
|
|
|
* This is equivalent to \p x < \p y, but is likely to be compiled
|
|
|
|
* to code using bitwise operation rather than a branch.
|
|
|
|
*
|
|
|
|
* \param x The first value to analyze.
|
|
|
|
* \param y The second value to analyze.
|
|
|
|
*
|
|
|
|
* \return 1 if \p x is less than \p y, otherwise 0.
|
|
|
|
*/
|
2021-10-20 11:59:27 +02:00
|
|
|
unsigned mbedtls_ct_mpi_uint_lt( const mbedtls_mpi_uint x,
|
2021-09-27 12:55:33 +02:00
|
|
|
const mbedtls_mpi_uint y );
|
|
|
|
|
2022-07-22 19:24:06 +02:00
|
|
|
/**
|
2022-08-11 18:42:59 +02:00
|
|
|
* \brief Check if one unsigned MPI is less than another in constant
|
|
|
|
* time.
|
2022-07-22 19:24:06 +02:00
|
|
|
*
|
2022-08-19 13:24:40 +02:00
|
|
|
* \param A The left-hand MPI. This must point to an array of limbs
|
|
|
|
* with the same allocated length as \p B.
|
|
|
|
* \param B The right-hand MPI. This must point to an array of limbs
|
|
|
|
* with the same allocated length as \p A.
|
2022-08-22 10:06:32 +02:00
|
|
|
* \param limbs The number of limbs in \p A and \p B.
|
2022-07-22 19:24:06 +02:00
|
|
|
*
|
|
|
|
* \return The result of the comparison:
|
2022-08-19 13:24:40 +02:00
|
|
|
* \c 1 if \p A is less than \p B.
|
|
|
|
* \c 0 if \p A is greater than or equal to \p B.
|
2022-07-22 19:24:06 +02:00
|
|
|
*/
|
2022-08-19 13:24:40 +02:00
|
|
|
unsigned mbedtls_mpi_core_lt_ct( const mbedtls_mpi_uint *A,
|
|
|
|
const mbedtls_mpi_uint *B,
|
|
|
|
size_t limbs);
|
2021-09-27 12:55:33 +02:00
|
|
|
#endif /* MBEDTLS_BIGNUM_C */
|
2021-09-27 12:59:30 +02:00
|
|
|
|
2021-08-11 16:40:35 +02:00
|
|
|
/** Choose between two integer values without branches.
|
|
|
|
*
|
|
|
|
* This is equivalent to `condition ? if1 : if0`, but is likely to be compiled
|
|
|
|
* to code using bitwise operation rather than a branch.
|
|
|
|
*
|
|
|
|
* \param condition Condition to test.
|
|
|
|
* \param if1 Value to use if \p condition is nonzero.
|
|
|
|
* \param if0 Value to use if \p condition is zero.
|
|
|
|
*
|
|
|
|
* \return \c if1 if \p condition is nonzero, otherwise \c if0.
|
|
|
|
*/
|
2021-10-20 11:59:27 +02:00
|
|
|
unsigned mbedtls_ct_uint_if( unsigned condition,
|
2021-09-27 16:29:52 +02:00
|
|
|
unsigned if1,
|
|
|
|
unsigned if0 );
|
2021-09-27 12:59:30 +02:00
|
|
|
|
2021-09-27 13:17:15 +02:00
|
|
|
#if defined(MBEDTLS_BIGNUM_C)
|
|
|
|
|
2021-08-11 16:40:35 +02:00
|
|
|
/** Conditionally assign a value without branches.
|
|
|
|
*
|
|
|
|
* This is equivalent to `if ( condition ) dest = src`, but is likely
|
|
|
|
* to be compiled to code using bitwise operation rather than a branch.
|
|
|
|
*
|
|
|
|
* \param n \p dest and \p src must be arrays of limbs of size n.
|
|
|
|
* \param dest The MPI to conditionally assign to. This must point
|
|
|
|
* to an initialized MPI.
|
|
|
|
* \param src The MPI to be assigned from. This must point to an
|
|
|
|
* initialized MPI.
|
|
|
|
* \param condition Condition to test, must be 0 or 1.
|
|
|
|
*/
|
2021-10-20 11:59:27 +02:00
|
|
|
void mbedtls_ct_mpi_uint_cond_assign( size_t n,
|
2021-09-27 13:17:15 +02:00
|
|
|
mbedtls_mpi_uint *dest,
|
|
|
|
const mbedtls_mpi_uint *src,
|
2021-08-10 20:36:09 +02:00
|
|
|
unsigned char condition );
|
2021-09-27 13:17:15 +02:00
|
|
|
|
|
|
|
#endif /* MBEDTLS_BIGNUM_C */
|
2021-09-27 13:31:06 +02:00
|
|
|
|
2021-11-15 16:18:54 +01:00
|
|
|
#if defined(MBEDTLS_BASE64_C)
|
|
|
|
|
2021-11-24 16:26:33 +01:00
|
|
|
/** Given a value in the range 0..63, return the corresponding Base64 digit.
|
|
|
|
*
|
|
|
|
* The implementation assumes that letters are consecutive (e.g. ASCII
|
|
|
|
* but not EBCDIC).
|
|
|
|
*
|
|
|
|
* \param value A value in the range 0..63.
|
|
|
|
*
|
|
|
|
* \return A base64 digit converted from \p value.
|
|
|
|
*/
|
2021-11-24 15:51:39 +01:00
|
|
|
unsigned char mbedtls_ct_base64_enc_char( unsigned char value );
|
2021-11-15 16:18:54 +01:00
|
|
|
|
2021-11-24 16:26:33 +01:00
|
|
|
/** Given a Base64 digit, return its value.
|
|
|
|
*
|
|
|
|
* If c is not a Base64 digit ('A'..'Z', 'a'..'z', '0'..'9', '+' or '/'),
|
|
|
|
* return -1.
|
|
|
|
*
|
|
|
|
* The implementation assumes that letters are consecutive (e.g. ASCII
|
|
|
|
* but not EBCDIC).
|
|
|
|
*
|
|
|
|
* \param c A base64 digit.
|
|
|
|
*
|
|
|
|
* \return The value of the base64 digit \p c.
|
|
|
|
*/
|
2021-11-15 16:22:37 +01:00
|
|
|
signed char mbedtls_ct_base64_dec_value( unsigned char c );
|
|
|
|
|
2021-11-15 16:18:54 +01:00
|
|
|
#endif /* MBEDTLS_BASE64_C */
|
|
|
|
|
2021-10-18 17:05:06 +02:00
|
|
|
#if defined(MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC)
|
2021-08-11 16:40:35 +02:00
|
|
|
|
|
|
|
/** Conditional memcpy without branches.
|
|
|
|
*
|
2021-11-03 16:13:32 +01:00
|
|
|
* This is equivalent to `if ( c1 == c2 ) memcpy(dest, src, len)`, but is likely
|
2021-08-11 16:40:35 +02:00
|
|
|
* to be compiled to code using bitwise operation rather than a branch.
|
|
|
|
*
|
|
|
|
* \param dest The pointer to conditionally copy to.
|
2021-10-18 16:28:27 +02:00
|
|
|
* \param src The pointer to copy from. Shouldn't overlap with \p dest.
|
2021-08-11 16:40:35 +02:00
|
|
|
* \param len The number of bytes to copy.
|
|
|
|
* \param c1 The first value to analyze in the condition.
|
|
|
|
* \param c2 The second value to analyze in the condition.
|
|
|
|
*/
|
2021-10-20 11:59:27 +02:00
|
|
|
void mbedtls_ct_memcpy_if_eq( unsigned char *dest,
|
2021-09-27 13:34:25 +02:00
|
|
|
const unsigned char *src,
|
|
|
|
size_t len,
|
|
|
|
size_t c1, size_t c2 );
|
2021-09-27 13:57:45 +02:00
|
|
|
|
|
|
|
/** Copy data from a secret position with constant flow.
|
|
|
|
*
|
|
|
|
* This function copies \p len bytes from \p src_base + \p offset_secret to \p
|
|
|
|
* dst, with a code flow and memory access pattern that does not depend on \p
|
|
|
|
* offset_secret, but only on \p offset_min, \p offset_max and \p len.
|
2021-10-18 16:28:27 +02:00
|
|
|
* Functionally equivalent to `memcpy(dst, src + offset_secret, len)`.
|
2021-09-27 13:57:45 +02:00
|
|
|
*
|
2022-05-09 19:15:54 +02:00
|
|
|
* \note This function reads from \p dest, but the value that
|
|
|
|
* is read does not influence the result and this
|
|
|
|
* function's behavior is well-defined regardless of the
|
|
|
|
* contents of the buffers. This may result in false
|
|
|
|
* positives from static or dynamic analyzers, especially
|
|
|
|
* if \p dest is not initialized.
|
|
|
|
*
|
2021-10-18 16:17:57 +02:00
|
|
|
* \param dest The destination buffer. This must point to a writable
|
2021-09-27 13:57:45 +02:00
|
|
|
* buffer of at least \p len bytes.
|
2021-10-18 16:17:57 +02:00
|
|
|
* \param src The base of the source buffer. This must point to a
|
2021-09-27 13:57:45 +02:00
|
|
|
* readable buffer of at least \p offset_max + \p len
|
2021-10-18 16:17:57 +02:00
|
|
|
* bytes. Shouldn't overlap with \p dest.
|
|
|
|
* \param offset The offset in the source buffer from which to copy.
|
2021-09-27 13:57:45 +02:00
|
|
|
* This must be no less than \p offset_min and no greater
|
|
|
|
* than \p offset_max.
|
2021-10-18 16:17:57 +02:00
|
|
|
* \param offset_min The minimal value of \p offset.
|
|
|
|
* \param offset_max The maximal value of \p offset.
|
2021-09-27 13:57:45 +02:00
|
|
|
* \param len The number of bytes to copy.
|
|
|
|
*/
|
2021-10-20 11:59:27 +02:00
|
|
|
void mbedtls_ct_memcpy_offset( unsigned char *dest,
|
2021-10-18 16:17:57 +02:00
|
|
|
const unsigned char *src,
|
|
|
|
size_t offset,
|
2021-09-27 16:29:52 +02:00
|
|
|
size_t offset_min,
|
|
|
|
size_t offset_max,
|
2021-09-27 13:57:45 +02:00
|
|
|
size_t len );
|
2021-09-27 14:28:31 +02:00
|
|
|
|
|
|
|
/** Compute the HMAC of variable-length data with constant flow.
|
|
|
|
*
|
|
|
|
* This function computes the HMAC of the concatenation of \p add_data and \p
|
|
|
|
* data, and does with a code flow and memory access pattern that does not
|
|
|
|
* depend on \p data_len_secret, but only on \p min_data_len and \p
|
|
|
|
* max_data_len. In particular, this function always reads exactly \p
|
|
|
|
* max_data_len bytes from \p data.
|
|
|
|
*
|
|
|
|
* \param ctx The HMAC context. It must have keys configured
|
|
|
|
* with mbedtls_md_hmac_starts() and use one of the
|
|
|
|
* following hashes: SHA-384, SHA-256, SHA-1 or MD-5.
|
|
|
|
* It is reset using mbedtls_md_hmac_reset() after
|
|
|
|
* the computation is complete to prepare for the
|
|
|
|
* next computation.
|
2021-10-18 16:28:27 +02:00
|
|
|
* \param add_data The first part of the message whose HMAC is being
|
|
|
|
* calculated. This must point to a readable buffer
|
|
|
|
* of \p add_data_len bytes.
|
2021-09-27 14:28:31 +02:00
|
|
|
* \param add_data_len The length of \p add_data in bytes.
|
2021-10-18 16:28:27 +02:00
|
|
|
* \param data The buffer containing the second part of the
|
|
|
|
* message. This must point to a readable buffer
|
|
|
|
* of \p max_data_len bytes.
|
2021-09-27 14:28:31 +02:00
|
|
|
* \param data_len_secret The length of the data to process in \p data.
|
|
|
|
* This must be no less than \p min_data_len and no
|
|
|
|
* greater than \p max_data_len.
|
2021-10-18 16:28:27 +02:00
|
|
|
* \param min_data_len The minimal length of the second part of the
|
2021-10-20 11:18:37 +02:00
|
|
|
* message, read from \p data.
|
2021-10-18 16:28:27 +02:00
|
|
|
* \param max_data_len The maximal length of the second part of the
|
2021-10-20 11:18:37 +02:00
|
|
|
* message, read from \p data.
|
2021-09-27 14:28:31 +02:00
|
|
|
* \param output The HMAC will be written here. This must point to
|
|
|
|
* a writable buffer of sufficient size to hold the
|
|
|
|
* HMAC value.
|
|
|
|
*
|
|
|
|
* \retval 0 on success.
|
2021-10-18 16:28:27 +02:00
|
|
|
* \retval #MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED
|
2021-09-27 14:28:31 +02:00
|
|
|
* The hardware accelerator failed.
|
|
|
|
*/
|
2022-02-25 15:09:36 +01:00
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
|
|
|
int mbedtls_ct_hmac( mbedtls_svc_key_id_t key,
|
|
|
|
psa_algorithm_t alg,
|
|
|
|
const unsigned char *add_data,
|
|
|
|
size_t add_data_len,
|
|
|
|
const unsigned char *data,
|
|
|
|
size_t data_len_secret,
|
|
|
|
size_t min_data_len,
|
|
|
|
size_t max_data_len,
|
|
|
|
unsigned char *output );
|
|
|
|
#else
|
2021-10-20 11:59:27 +02:00
|
|
|
int mbedtls_ct_hmac( mbedtls_md_context_t *ctx,
|
2021-09-27 16:29:52 +02:00
|
|
|
const unsigned char *add_data,
|
|
|
|
size_t add_data_len,
|
|
|
|
const unsigned char *data,
|
|
|
|
size_t data_len_secret,
|
|
|
|
size_t min_data_len,
|
|
|
|
size_t max_data_len,
|
|
|
|
unsigned char *output );
|
2022-02-25 15:09:36 +01:00
|
|
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
2021-09-27 14:28:31 +02:00
|
|
|
|
|
|
|
#endif /* MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC */
|
2021-09-27 16:11:12 +02:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_PKCS1_V15) && defined(MBEDTLS_RSA_C) && !defined(MBEDTLS_RSA_ALT)
|
|
|
|
|
2021-08-11 16:40:35 +02:00
|
|
|
/** This function performs the unpadding part of a PKCS#1 v1.5 decryption
|
2021-10-18 16:28:27 +02:00
|
|
|
* operation (EME-PKCS1-v1_5 decoding).
|
|
|
|
*
|
|
|
|
* \note The return value from this function is a sensitive value
|
|
|
|
* (this is unusual). #MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE shouldn't happen
|
|
|
|
* in a well-written application, but 0 vs #MBEDTLS_ERR_RSA_INVALID_PADDING
|
|
|
|
* is often a situation that an attacker can provoke and leaking which
|
|
|
|
* one is the result is precisely the information the attacker wants.
|
|
|
|
*
|
|
|
|
* \param input The input buffer which is the payload inside PKCS#1v1.5
|
|
|
|
* encryption padding, called the "encoded message EM"
|
|
|
|
* by the terminology.
|
|
|
|
* \param ilen The length of the payload in the \p input buffer.
|
|
|
|
* \param output The buffer for the payload, called "message M" by the
|
|
|
|
* PKCS#1 terminology. This must be a writable buffer of
|
|
|
|
* length \p output_max_len bytes.
|
2021-10-18 16:17:57 +02:00
|
|
|
* \param olen The address at which to store the length of
|
2021-10-18 16:28:27 +02:00
|
|
|
* the payload. This must not be \c NULL.
|
|
|
|
* \param output_max_len The length in bytes of the output buffer \p output.
|
|
|
|
*
|
|
|
|
* \return \c 0 on success.
|
|
|
|
* \return #MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE
|
|
|
|
* The output buffer is too small for the unpadded payload.
|
|
|
|
* \return #MBEDTLS_ERR_RSA_INVALID_PADDING
|
|
|
|
* The input doesn't contain properly formatted padding.
|
2021-08-11 16:40:35 +02:00
|
|
|
*/
|
2021-10-20 11:59:27 +02:00
|
|
|
int mbedtls_ct_rsaes_pkcs1_v15_unpadding( unsigned char *input,
|
2021-10-18 16:17:57 +02:00
|
|
|
size_t ilen,
|
2021-09-27 16:11:12 +02:00
|
|
|
unsigned char *output,
|
|
|
|
size_t output_max_len,
|
2021-10-18 16:17:57 +02:00
|
|
|
size_t *olen );
|
2021-09-27 16:11:12 +02:00
|
|
|
|
|
|
|
#endif /* MBEDTLS_PKCS1_V15 && MBEDTLS_RSA_C && ! MBEDTLS_RSA_ALT */
|
2021-10-19 11:27:17 +02:00
|
|
|
|
|
|
|
#endif /* MBEDTLS_CONSTANT_TIME_INTERNAL_H */
|