xrootd
Loading...
Searching...
No Matches
XrdOucCRC32C.hh
Go to the documentation of this file.
1#ifndef __XRDOUCCRC32C_HH__
2#define __XRDOUCCRC32C_HH__
3// crc32c.h -- header for crc32c.c
4// Copyright (C) 2015 Mark Adler
5// See crc32c.c for the license.
6
7#include <cstddef>
8#include <cstdint>
9
10// Return the CRC-32C of buf[0..len-1] given the starting CRC crc. This can be
11// used to calculate the CRC of a sequence of bytes a chunk at a time, using
12// the previously returned crc in the next call. The first call must be with
13// crc == 0. crc32c() uses the Intel crc32 hardware instruction if available.
14uint32_t crc32c(uint32_t crc, void const *buf, size_t len);
15
16// crc32c_sw() is the same, but does not use the hardware instruction, even if
17// available.
18uint32_t crc32c_sw(uint32_t crc, void const *buf, size_t len);
19#endif
uint32_t crc32c(uint32_t crc, void const *buf, size_t len)
uint32_t crc32c_sw(uint32_t crc, void const *buf, size_t len)