2 * Compute the Adler32 checksum (RFC 1950)
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <gerald@wireshark.org>
7 * Copyright 1998 Gerald Combs
9 * SPDX-License-Identifier: GPL-2.0-or-later
15 #include <wireshark.h>
21 WS_DLL_PUBLIC
uint32_t update_adler32(uint32_t adler
, const uint8_t *buf
, size_t len
);
22 WS_DLL_PUBLIC
uint32_t adler32_bytes(const uint8_t *buf
, size_t len
);
23 WS_DLL_PUBLIC
uint32_t adler32_str(const char *buf
);
29 #endif /* ADLER32_H */