mirror of
https://github.com/intel/isa-l.git
synced 2024-12-12 09:23:50 +01:00
9689ba7e13
Change-Id: I859ed904effa0a8bd7462b77b13e359014912639 Signed-off-by: Roy Oursler <roy.j.oursler@intel.com>
13 lines
308 B
C
13 lines
308 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 isal_adler32(uint32_t init_crc, const unsigned char *buf, uint64_t len);
|
|
uint32_t isal_adler32_bam1(uint32_t init_crc, const unsigned char *buf, uint64_t len);
|
|
|
|
#endif
|