mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-05-03 00:30:17 +02:00
Add some name changes in to allow merge
Signed-off-by: Ben Taylor <ben.taylor@linaro.org>
This commit is contained in:
28
programs/fuzz/common.h
Normal file
28
programs/fuzz/common.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#include "mbedtls/build_info.h"
|
||||
|
||||
#if defined(MBEDTLS_HAVE_TIME)
|
||||
#include "mbedtls/platform_time.h"
|
||||
#endif
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
typedef struct fuzzBufferOffset {
|
||||
const uint8_t *Data;
|
||||
size_t Size;
|
||||
size_t Offset;
|
||||
} fuzzBufferOffset_t;
|
||||
|
||||
#if defined(MBEDTLS_HAVE_TIME)
|
||||
mbedtls_time_t dummy_constant_time(mbedtls_time_t *time);
|
||||
#endif
|
||||
void dummy_init(void);
|
||||
|
||||
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);
|
||||
|
||||
/* Implemented in the fuzz_*.c sources and required by onefile.c */
|
||||
int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
|
||||
Reference in New Issue
Block a user