diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-12-03 16:42:49 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-12-10 07:15:42 +0100 |
commit | 44444ba759480237172d83f42374c5c29c76eda0 (patch) | |
tree | aefce76c13c39192d4922a88749755dbc2decc11 /src/test/fuzz/crypto_aes256cbc.cpp | |
parent | 751ffaabad82f7904fd1d9742a0b323a0ab7bfee (diff) |
fuzz: Link all targets once
Diffstat (limited to 'src/test/fuzz/crypto_aes256cbc.cpp')
-rw-r--r-- | src/test/fuzz/crypto_aes256cbc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/fuzz/crypto_aes256cbc.cpp b/src/test/fuzz/crypto_aes256cbc.cpp index 52983c7e79..6d4138e546 100644 --- a/src/test/fuzz/crypto_aes256cbc.cpp +++ b/src/test/fuzz/crypto_aes256cbc.cpp @@ -11,7 +11,7 @@ #include <cstdint> #include <vector> -void test_one_input(const std::vector<uint8_t>& buffer) +FUZZ_TARGET(crypto_aes256cbc) { FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()}; const std::vector<uint8_t> key = ConsumeFixedLengthByteVector(fuzzed_data_provider, AES256_KEYSIZE); |