2015-03-12 05:06:23 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// CRC64 ECMA
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef __CRC64_H
|
|
|
|
#define __CRC64_H
|
|
|
|
|
2019-08-08 22:57:33 +08:00
|
|
|
#include "common.h"
|
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
void crc64(const uint8_t *data, const size_t len, uint64_t *crc) ;
|
2015-03-12 05:06:23 +08:00
|
|
|
|
|
|
|
#endif
|