parent
0c7e854ffd
commit
93d144f093
|
@ -15,6 +15,7 @@
|
||||||
#include "check.h"
|
#include "check.h"
|
||||||
#include "crc_common.h"
|
#include "crc_common.h"
|
||||||
|
|
||||||
|
|
||||||
#ifdef CRC_GENERIC
|
#ifdef CRC_GENERIC
|
||||||
|
|
||||||
///////////////////
|
///////////////////
|
||||||
|
@ -80,6 +81,7 @@ crc32_generic(const uint8_t *buf, size_t size, uint32_t crc)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#if defined(CRC_GENERIC) && defined(CRC_CLMUL)
|
#if defined(CRC_GENERIC) && defined(CRC_CLMUL)
|
||||||
|
|
||||||
//////////////////////////
|
//////////////////////////
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
#include "check.h"
|
#include "check.h"
|
||||||
#include "crc_common.h"
|
#include "crc_common.h"
|
||||||
|
|
||||||
|
|
||||||
#ifdef CRC_GENERIC
|
#ifdef CRC_GENERIC
|
||||||
|
|
||||||
/////////////////////////////////
|
/////////////////////////////////
|
||||||
|
@ -75,7 +76,9 @@ crc64_generic(const uint8_t *buf, size_t size, uint64_t crc)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#if defined(CRC_GENERIC) && defined(CRC_CLMUL)
|
#if defined(CRC_GENERIC) && defined(CRC_CLMUL)
|
||||||
|
|
||||||
//////////////////////////
|
//////////////////////////
|
||||||
// Function dispatching //
|
// Function dispatching //
|
||||||
//////////////////////////
|
//////////////////////////
|
||||||
|
|
|
@ -22,7 +22,6 @@
|
||||||
// Lasse Collin
|
// Lasse Collin
|
||||||
// Jia Tan
|
// Jia Tan
|
||||||
//
|
//
|
||||||
//
|
|
||||||
// This file has been put into the public domain.
|
// This file has been put into the public domain.
|
||||||
// You can do whatever you want with this file.
|
// You can do whatever you want with this file.
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue