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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
mod pclmulqdq;
mod table;
type UpdateFn = fn(u64, &[u8]) -> u64;
#[derive(Clone)]
pub struct Digest {
computer: UpdateFn,
state: u64,
}
impl Digest {
pub fn new() -> Self {
Self {
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
computer: pclmulqdq::get_update(),
#[cfg(not(any(target_arch = "x86", target_arch = "x86_64")))]
computer: table::update,
state: !0,
}
}
pub fn new_table() -> Self {
Self {
computer: table::update,
state: !0,
}
}
pub fn write(&mut self, bytes: &[u8]) {
self.state = (self.computer)(self.state, bytes);
}
pub fn sum64(&self) -> u64 {
!self.state
}
}
impl Default for Digest {
fn default() -> Self {
Self::new()
}
}
#[cfg(test)]
mod tests {
use super::Digest;
use crc::crc64::checksum_ecma;
use proptest::collection::size_range;
use proptest::prelude::*;
#[test]
fn test_standard_vectors() {
static CASES: &[(&[u8], u64)] = &[
(b"", 0),
(b"@", 0x7b1b_8ab9_8fa4_b8f8),
(b"1\x97", 0xfeb8_f7a1_ae3b_9bd4),
(b"M\"\xdf", 0xc016_0ce8_dd46_74d3),
(b"l\xcd\x13\xd7", 0x5c60_a6af_8299_6ea8),
(&[0; 32], 0xc95a_f861_7cd5_330c),
(&[255; 32], 0xe95d_ce9e_faa0_9acf),
(b"\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F", 0x7fe5_71a5_8708_4d10),
(&[0; 1024], 0xc378_6397_2069_270c),
];
for (input, result) in CASES {
let mut hasher = Digest::new();
hasher.write(input);
assert_eq!(hasher.sum64(), *result, "test case {:x?}", input);
}
}
fn any_buffer() -> <Box<[u8]> as Arbitrary>::Strategy {
any_with::<Box<[u8]>>(size_range(..65536).lift())
}
prop_compose! {
fn bytes_and_split_index()
(bytes in any_buffer())
(index in 0..=bytes.len(), bytes in Just(bytes)) -> (Box<[u8]>, usize)
{
(bytes, index)
}
}
proptest! {
#[test]
fn equivalent_to_crc(bytes in any_buffer()) {
let mut hasher = Digest::new();
hasher.write(&bytes);
prop_assert_eq!(hasher.sum64(), checksum_ecma(&bytes));
}
#[test]
fn concatenation((bytes, split_index) in bytes_and_split_index()) {
let mut hasher_1 = Digest::new();
hasher_1.write(&bytes);
let mut hasher_2 = Digest::new();
let (left, right) = bytes.split_at(split_index);
hasher_2.write(left);
hasher_2.write(right);
prop_assert_eq!(hasher_1.sum64(), hasher_2.sum64());
}
#[test]
fn state_cloning(left in any_buffer(), right in any_buffer()) {
let mut hasher_1 = Digest::new();
hasher_1.write(&left);
let mut hasher_2 = hasher_1.clone();
hasher_1.write(&right);
hasher_2.write(&right);
prop_assert_eq!(hasher_1.sum64(), hasher_2.sum64());
}
}
}