#pragma once class CRC64 { public: CRC64(); public: static UINT64 GetCrc64(const char* pSrc, DWORD size); private: static unsigned long long CRCTable[256]; };