2021-05-24 22:51:48 +02:00
|
|
|
/* timing_alt.h with dummy types for MBEDTLS_TIMING_ALT */
|
|
|
|
/*
|
|
|
|
* Copyright The Mbed TLS Contributors
|
2023-11-02 20:47:20 +01:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2021-05-24 22:51:48 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TIMING_ALT_H
|
|
|
|
#define TIMING_ALT_H
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
struct mbedtls_timing_hr_time {
|
2021-05-24 22:51:48 +02:00
|
|
|
int dummy;
|
|
|
|
};
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
typedef struct mbedtls_timing_delay_context {
|
2021-05-24 22:51:48 +02:00
|
|
|
int dummy;
|
|
|
|
} mbedtls_timing_delay_context;
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* timing_alt.h */
|