2 * Copyright 2015 Facebook, Inc.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 #ifndef FOLLY_CHECKSUM_H_
18 #define FOLLY_CHECKSUM_H_
30 * Compute the CRC-32C checksum of a buffer, using a hardware-accelerated
31 * implementation if available or a portable software implementation as
34 * @note CRC-32C is different from CRC-32; CRC-32C starts with a different
35 * polynomial and thus yields different results for the same input
36 * than a traditional CRC-32.
38 uint32_t crc32c(const uint8_t* data, size_t nbytes,
39 uint32_t startingChecksum = ~0U);
43 #endif /* FOLLY_CHECKSUM_H_ */