blob: acfd48e010128974bf3ea279e13070f2fe5882cd (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/*
* Produce a "generalized CRC" table. Assumes a platform with
* /dev/urandom -- otherwise reimplement get_random_byte().
*/
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
static uint8_t get_random_byte(void)
{
static int fd = -1;
uint8_t buf;
int rv;
if (fd < 0)
fd = open("/dev/urandom", O_RDONLY);
do {
errno = 0;
rv = read(fd, &buf, 1);
if (rv < 1 && errno != EAGAIN)
abort();
} while (rv < 1);
return buf;
}
static void random_permute(uint8_t *buf)
{
int i, j, k;
int m;
for (i = 0; i < 256; i++)
buf[i] = i;
m = 255;
for (i = 255; i > 0; i--) {
if (i <= (m >> 1))
m >>= 1;
do {
j = get_random_byte() & m;
} while (j > i);
k = buf[i];
buf[i] = buf[j];
buf[j] = k;
}
}
static void xcrc_table(uint64_t *buf)
{
uint8_t perm[256];
int i, j;
memset(buf, 0, 8*256); /* Make static checkers happy */
for (i = 0; i < 8; i++) {
random_permute(perm);
for (j = 0; j < 256; j++)
buf[j] = (buf[j] << 8) | perm[j];
}
}
int main(void)
{
int i;
uint64_t buf[256];
xcrc_table(buf);
for (i = 0; i < 256; i++) {
printf("%016"PRIx64"\n", buf[i]);
}
return 0;
}
|