mirror of
https://github.com/intel/isa-l.git
synced 2024-12-13 09:52:56 +01:00
55fbfabfc6
Signed-off-by: Marcel Cornu <marcel.d.cornu@intel.com>
15 lines
312 B
C
15 lines
312 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
|