Files
cos-cpp-sdk-v5/include/util/crc64.h
a158 3cf88acc07 BG
2026-04-05 20:22:11 +08:00

14 lines
347 B
C++

#pragma once
#include <stdint.h>
#include <cstddef>
namespace qcloud_cos {
class CRC64 {
public:
static uint64_t CalcCRC(uint64_t crc, void *buf, size_t len);
static uint64_t CombineCRC(uint64_t crc1, uint64_t crc2, uintmax_t len2);
static uint64_t CalcCRC(uint64_t crc, void *buf, size_t len, bool little);
};
} // namespace qcloud_cos