Branch data Line data Source code
1 : : // Copyright (c) 2020 The Bitcoin Core developers 2 : : // Distributed under the MIT software license, see the accompanying 3 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php. 4 : : 5 : : #include <crypto/common.h> 6 : : #include <test/fuzz/FuzzedDataProvider.h> 7 : : #include <test/fuzz/fuzz.h> 8 : : #include <test/fuzz/util.h> 9 : : 10 : : #include <array> 11 : : #include <cassert> 12 : : #include <cstdint> 13 : : #include <cstring> 14 : : #include <vector> 15 : : 16 [ - + ]: 351 : FUZZ_TARGET(crypto_common) 17 : : { 18 : 5 : FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()}; 19 : 5 : const uint16_t random_u16 = fuzzed_data_provider.ConsumeIntegral<uint16_t>(); 20 : 5 : const uint32_t random_u32 = fuzzed_data_provider.ConsumeIntegral<uint32_t>(); 21 : 5 : const uint64_t random_u64 = fuzzed_data_provider.ConsumeIntegral<uint64_t>(); 22 : 5 : const std::vector<uint8_t> random_bytes_2 = ConsumeFixedLengthByteVector(fuzzed_data_provider, 2); 23 : 5 : const std::vector<uint8_t> random_bytes_4 = ConsumeFixedLengthByteVector(fuzzed_data_provider, 4); 24 : 5 : const std::vector<uint8_t> random_bytes_8 = ConsumeFixedLengthByteVector(fuzzed_data_provider, 8); 25 [ + - ]: 173 : 26 : : std::array<uint8_t, 2> writele16_arr; 27 [ + - ]: 5 : WriteLE16(writele16_arr.data(), random_u16); 28 [ + - + - ]: 5 : assert(ReadLE16(writele16_arr.data()) == random_u16); 29 : : 30 : : std::array<uint8_t, 4> writele32_arr; 31 [ + - ]: 5 : WriteLE32(writele32_arr.data(), random_u32); 32 [ + - + - ]: 5 : assert(ReadLE32(writele32_arr.data()) == random_u32); 33 : : 34 : : std::array<uint8_t, 8> writele64_arr; 35 [ + - ]: 5 : WriteLE64(writele64_arr.data(), random_u64); 36 [ + - + - ]: 5 : assert(ReadLE64(writele64_arr.data()) == random_u64); 37 : : 38 : : std::array<uint8_t, 4> writebe32_arr; 39 [ + - ]: 5 : WriteBE32(writebe32_arr.data(), random_u32); 40 [ + - + - ]: 5 : assert(ReadBE32(writebe32_arr.data()) == random_u32); 41 : : 42 : : std::array<uint8_t, 8> writebe64_arr; 43 [ + - ]: 5 : WriteBE64(writebe64_arr.data(), random_u64); 44 [ + - + - ]: 5 : assert(ReadBE64(writebe64_arr.data()) == random_u64); 45 : : 46 [ + - ]: 5 : const uint16_t readle16_result = ReadLE16(random_bytes_2.data()); 47 : : std::array<uint8_t, 2> readle16_arr; 48 [ + - ]: 5 : WriteLE16(readle16_arr.data(), readle16_result); 49 [ + - ]: 5 : assert(std::memcmp(random_bytes_2.data(), readle16_arr.data(), 2) == 0); 50 : : 51 [ + - ]: 5 : const uint32_t readle32_result = ReadLE32(random_bytes_4.data()); 52 : : std::array<uint8_t, 4> readle32_arr; 53 [ + - ]: 5 : WriteLE32(readle32_arr.data(), readle32_result); 54 [ + - ]: 5 : assert(std::memcmp(random_bytes_4.data(), readle32_arr.data(), 4) == 0); 55 : : 56 [ + - ]: 5 : const uint64_t readle64_result = ReadLE64(random_bytes_8.data()); 57 : : std::array<uint8_t, 8> readle64_arr; 58 [ + - ]: 5 : WriteLE64(readle64_arr.data(), readle64_result); 59 [ + - ]: 5 : assert(std::memcmp(random_bytes_8.data(), readle64_arr.data(), 8) == 0); 60 : : 61 [ + - ]: 5 : const uint32_t readbe32_result = ReadBE32(random_bytes_4.data()); 62 : : std::array<uint8_t, 4> readbe32_arr; 63 [ + - ]: 5 : WriteBE32(readbe32_arr.data(), readbe32_result); 64 [ + - ]: 5 : assert(std::memcmp(random_bytes_4.data(), readbe32_arr.data(), 4) == 0); 65 : : 66 [ + - ]: 5 : const uint64_t readbe64_result = ReadBE64(random_bytes_8.data()); 67 : : std::array<uint8_t, 8> readbe64_arr; 68 [ + - ]: 5 : WriteBE64(readbe64_arr.data(), readbe64_result); 69 [ + - ]: 5 : assert(std::memcmp(random_bytes_8.data(), readbe64_arr.data(), 8) == 0); 70 : 5 : }