blob: fd76ec5933d6a407da6da297855a937a43ff6f5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/********************************************************/
/* ntapi: Native API core library */
/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
#include <psxtypes/psxtypes.h>
#include <ntapi/nt_crc64.h>
static const uint64_t crc64_table[256] = NTAPI_CRC64_TABLE;
uint64_t __ntapi_tt_buffer_crc64(
uint64_t prev_hash,
const void * buffer,
size_t size)
{
const unsigned char * ch;
uint64_t crc64;
crc64 = prev_hash ^ 0xFFFFFFFFFFFFFFFF;
ch = buffer;
for (; size; size--,ch++)
crc64 = (crc64 >> 8) ^ crc64_table[(crc64 ^ *ch) & 0xFF];
return (crc64 ^ 0xFFFFFFFFFFFFFFFF);
}
uint64_t __cdecl __ntapi_tt_mbstr_crc64(const void * str)
{
const unsigned char * ch;
uint64_t crc64;
crc64 = 0 ^ 0xFFFFFFFFFFFFFFFF;
ch = str;
while (*ch) {
crc64 = (crc64 >> 8) ^ crc64_table[(crc64 ^ *ch) & 0xFF];
ch++;
}
return (crc64 ^ 0xFFFFFFFFFFFFFFFF);
}
const uint64_t * __cdecl __ntapi_tt_crc64_table(void)
{
return crc64_table;
}
|