mirror of
https://github.com/intel/isa-l.git
synced 2025-01-19 04:26:08 +01:00
4259169107
Change-Id: I3d3cca425a494ac629cea230de74e3d32fcaea79 Signed-off-by: Roy Oursler <roy.j.oursler@intel.com>
13 lines
301 B
C
13 lines
301 B
C
#ifndef IGZIP_CHECKSUMS_H
|
|
#define IGZIP_CHECKSUMS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#define MAX_ADLER_BUF (1 << 28)
|
|
#define ADLER_MOD 65521
|
|
|
|
uint32_t crc32_gzip(uint32_t init_crc, const unsigned char *buf, uint64_t len);
|
|
uint32_t isal_adler32(uint32_t init_crc, const unsigned char *buf, uint64_t len);
|
|
|
|
#endif
|