aboutsummaryrefslogtreecommitdiff
path: root/fuzz
diff options
context:
space:
mode:
authorVladimir Gavrilov <105977161+0xA50C1A1@users.noreply.github.com>2024-08-25 12:54:17 +0300
committerGitHub <noreply@github.com>2024-08-25 11:54:17 +0200
commitaec2e2fbb83d25382efe0ee65b0d9164c71b2ed7 (patch)
tree72579ded4ade7705894f75799f6a2c3090bb3730 /fuzz
parent763a9c647467bca5d43ccc555121bee5353ba2d4 (diff)
Endian-independent implementation of IEEE 802.3 CRC32 (#2529)
Diffstat (limited to 'fuzz')
-rw-r--r--fuzz/fuzz_alg_crc32_md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/fuzz_alg_crc32_md5.c b/fuzz/fuzz_alg_crc32_md5.c
index 15c817989..304d42dc2 100644
--- a/fuzz/fuzz_alg_crc32_md5.c
+++ b/fuzz/fuzz_alg_crc32_md5.c
@@ -15,7 +15,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
ndpi_crc16_ccit_false(data, size);
ndpi_crc16_xmodem(data, size);
ndpi_crc16_x25(data, size);
- ndpi_crc32(data, size);
+ ndpi_crc32(data, size, 0);
ndpi_md5(data, size, hash);