Update SSLContext to use folly::Random and discrete_distribution
[folly.git] / folly / Checksum.h
1 /*
2  * Copyright 2015 Facebook, Inc.
3  *
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
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17 #ifndef FOLLY_CHECKSUM_H_
18 #define FOLLY_CHECKSUM_H_
19
20 #include <stdint.h>
21 #include <cstddef>
22
23 /*
24  * Checksum functions
25  */
26
27 namespace folly {
28
29 /**
30  * Compute the CRC-32C checksum of a buffer, using a hardware-accelerated
31  * implementation if available or a portable software implementation as
32  * a default.
33  *
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.
37  */
38 uint32_t crc32c(const uint8_t* data, size_t nbytes,
39     uint32_t startingChecksum = ~0U);
40
41 } // folly
42
43 #endif /* FOLLY_CHECKSUM_H_ */