Revision 56ec038f27fe0627617507f43355d634a8a53738 authored by Kyle Machulis on 17 February 2016, 01:31:12 UTC, committed by Kyle Machulis on 17 February 2016, 01:31:12 UTC
--HG--
extra : source : 458e59c0a6d9ff05d779798979c57cf061a36461
extra : intermediate-source : f726135384f76182766cd431b62ddd98f274db56
1 parent a4407e6
Raw File
crc32c.h
#ifndef crc32c_h
#define crc32c_h

#include <stdint.h>
#include <stddef.h>

#ifdef __cplusplus
extern "C" {
#endif

// Compute a CRC32c as defined in RFC3720.  This is a different polynomial than
// what is used in the crc for zlib, etc.  Typical usage to calculate a new CRC:
//
//    ComputeCrc32c(~0, buffer, bufferLength);
//
uint32_t
ComputeCrc32c(uint32_t aCrc, const void *aBuf, size_t aSize);

#ifdef __cplusplus
} // extern "C"
#endif

#endif // crc32c_h
back to top