]> git.ipfire.org Git - thirdparty/openssl.git/blame - fuzz/fuzzer.h
Fix alignment errors in hashtable fuzzer
[thirdparty/openssl.git] / fuzz / fuzzer.h
CommitLineData
c38bb727 1/*
8020d79b 2 * Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.
c38bb727 3 *
0642931f 4 * Licensed under the Apache License 2.0 (the "License");
c38bb727
BL
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 * https://www.openssl.org/source/license.html
8 * or in the file LICENSE in the source distribution.
9 */
10
7bc5ce4a
RL
11#include <stddef.h> /* for size_t */
12#include <openssl/e_os2.h> /* for uint8_t */
8aa82b33 13
f59d0131 14int FuzzerTestOneInput(const uint8_t *buf, size_t len);
90d28f05 15int FuzzerInitialize(int *argc, char ***argv);
ad4da7fb 16void FuzzerCleanup(void);
de2ea978 17
9f08a1c6 18void FuzzerSetRand(void);
de2ea978 19void FuzzerClearRand(void);