2016-03-24 16:38:11 +01:00
|
|
|
/**
|
|
|
|
* @file crc64.h
|
|
|
|
* @date March 24th 2016
|
|
|
|
* @brief Header file for CRC64 function.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2016-04-21 13:23:52 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Generates and returns a 64-bit Cyclic Redundancy Check from a
|
|
|
|
* character string s of length l.
|
|
|
|
*/
|
2016-03-25 16:11:52 +01:00
|
|
|
uint64_t crc64(const char* s, uint64_t l);
|