CRC.h 165 B

12345678910111213
  1. #pragma once
  2. class CRC64
  3. {
  4. public:
  5. CRC64();
  6. public:
  7. static UINT64 GetCrc64(const char* pSrc, DWORD size);
  8. private:
  9. static unsigned long long CRCTable[256];
  10. };