quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

timing_alt.h (382B)


      1 /* timing_alt.h with dummy types for MBEDTLS_TIMING_ALT */
      2 /*
      3  *  Copyright The Mbed TLS Contributors
      4  *  SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
      5  */
      6 
      7 #ifndef TIMING_ALT_H
      8 #define TIMING_ALT_H
      9 
     10 struct mbedtls_timing_hr_time {
     11     int dummy;
     12 };
     13 
     14 typedef struct mbedtls_timing_delay_context {
     15     int dummy;
     16 } mbedtls_timing_delay_context;
     17 
     18 
     19 #endif /* timing_alt.h */