summaryrefslogtreecommitdiffstats
path: root/src/isa-l/igzip/igzip_checksums.h
blob: e09a1f161971dda9d5b1c438f342df146c292c41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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