18 #ifndef _DECAF_UTIL_ZIP_ADLER32_H_
19 #define _DECAF_UTIL_ZIP_ADLER32_H_
48 virtual long long getValue()
const;
61 virtual void update(
const std::vector<unsigned char>& buffer);
75 virtual void update(
const std::vector<unsigned char>& buffer,
int offset,
int length);
92 virtual void update(
const unsigned char* buffer,
int size,
int offset,
int length);
100 virtual void update(
int byte);
An interface used to represent Checksum values in the Zip package.
Definition: Checksum.h:37
#define DECAF_API
Definition: Config.h:29
Clas that can be used to compute an Adler-32 Checksum for a data stream.
Definition: Adler32.h:34