2021-11-29 18:55:16 +00:00
|
|
|
#include "mbedtls/build_info.h"
|
2020-05-28 01:43:41 +00:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_HAVE_TIME)
|
2019-06-04 12:03:06 +00:00
|
|
|
#include "mbedtls/platform_time.h"
|
2020-05-28 01:43:41 +00:00
|
|
|
#endif
|
|
|
|
#include <stddef.h>
|
2019-06-04 12:14:33 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
typedef struct fuzzBufferOffset {
|
2019-06-04 12:14:33 +00:00
|
|
|
const uint8_t *Data;
|
|
|
|
size_t Size;
|
|
|
|
size_t Offset;
|
|
|
|
} fuzzBufferOffset_t;
|
2019-06-04 12:03:06 +00:00
|
|
|
|
2020-05-28 01:43:41 +00:00
|
|
|
#if defined(MBEDTLS_HAVE_TIME)
|
2023-01-11 13:50:10 +00:00
|
|
|
mbedtls_time_t dummy_constant_time(mbedtls_time_t *time);
|
2020-05-28 01:43:41 +00:00
|
|
|
#endif
|
2023-07-26 14:47:45 +00:00
|
|
|
void dummy_init(void);
|
2019-06-04 12:14:33 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
int dummy_send(void *ctx, const unsigned char *buf, size_t len);
|
|
|
|
int fuzz_recv(void *ctx, unsigned char *buf, size_t len);
|
|
|
|
int dummy_random(void *p_rng, unsigned char *output, size_t output_len);
|
|
|
|
int dummy_entropy(void *data, unsigned char *output, size_t len);
|
|
|
|
int fuzz_recv_timeout(void *ctx, unsigned char *buf, size_t len,
|
|
|
|
uint32_t timeout);
|
2024-06-01 19:08:45 +00:00
|
|
|
|
|
|
|
/* Implemented in the fuzz_*.c sources and required by onefile.c */
|
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
|