bitcoin_hashes/
siphash24.rs

1// SPDX-License-Identifier: CC0-1.0
2
3//! SipHash 2-4 implementation.
4//!
5
6use core::ops::Index;
7use core::slice::SliceIndex;
8use core::{cmp, mem, ptr, str};
9
10use crate::{FromSliceError, Hash as _, HashEngine as _};
11
12crate::internal_macros::hash_type! {
13    64,
14    false,
15    "Output of the SipHash24 hash function.",
16    "crate::util::json_hex_string::len_8"
17}
18
19#[cfg(not(hashes_fuzz))]
20fn from_engine(e: HashEngine) -> Hash { Hash::from_u64(Hash::from_engine_to_u64(e)) }
21
22#[cfg(hashes_fuzz)]
23fn from_engine(e: HashEngine) -> Hash {
24    let state = e.midstate();
25    Hash::from_u64(state.v0 ^ state.v1 ^ state.v2 ^ state.v3)
26}
27
28macro_rules! compress {
29    ($state:expr) => {{
30        compress!($state.v0, $state.v1, $state.v2, $state.v3)
31    }};
32    ($v0:expr, $v1:expr, $v2:expr, $v3:expr) => {{
33        $v0 = $v0.wrapping_add($v1);
34        $v1 = $v1.rotate_left(13);
35        $v1 ^= $v0;
36        $v0 = $v0.rotate_left(32);
37        $v2 = $v2.wrapping_add($v3);
38        $v3 = $v3.rotate_left(16);
39        $v3 ^= $v2;
40        $v0 = $v0.wrapping_add($v3);
41        $v3 = $v3.rotate_left(21);
42        $v3 ^= $v0;
43        $v2 = $v2.wrapping_add($v1);
44        $v1 = $v1.rotate_left(17);
45        $v1 ^= $v2;
46        $v2 = $v2.rotate_left(32);
47    }};
48}
49
50/// Load an integer of the desired type from a byte stream, in LE order. Uses
51/// `copy_nonoverlapping` to let the compiler generate the most efficient way
52/// to load it from a possibly unaligned address.
53///
54/// Unsafe because: unchecked indexing at `i..i+size_of(int_ty)`.
55macro_rules! load_int_le {
56    ($buf:expr, $i:expr, $int_ty:ident) => {{
57        debug_assert!($i + mem::size_of::<$int_ty>() <= $buf.len());
58        let mut data = 0 as $int_ty;
59        ptr::copy_nonoverlapping(
60            $buf.get_unchecked($i),
61            &mut data as *mut _ as *mut u8,
62            mem::size_of::<$int_ty>(),
63        );
64        data.to_le()
65    }};
66}
67
68/// Internal state of the [`HashEngine`].
69#[derive(Debug, Clone)]
70pub struct State {
71    // v0, v2 and v1, v3 show up in pairs in the algorithm,
72    // and simd implementations of SipHash will use vectors
73    // of v02 and v13. By placing them in this order in the struct,
74    // the compiler can pick up on just a few simd optimizations by itself.
75    v0: u64,
76    v2: u64,
77    v1: u64,
78    v3: u64,
79}
80
81/// Engine to compute the SipHash24 hash function.
82#[derive(Debug, Clone)]
83pub struct HashEngine {
84    k0: u64,
85    k1: u64,
86    length: usize, // how many bytes we've processed
87    state: State,  // hash State
88    tail: u64,     // unprocessed bytes le
89    ntail: usize,  // how many bytes in tail are valid
90}
91
92impl HashEngine {
93    /// Creates a new SipHash24 engine with keys.
94    pub fn with_keys(k0: u64, k1: u64) -> HashEngine {
95        HashEngine {
96            k0,
97            k1,
98            length: 0,
99            state: State {
100                v0: k0 ^ 0x736f6d6570736575,
101                v1: k1 ^ 0x646f72616e646f6d,
102                v2: k0 ^ 0x6c7967656e657261,
103                v3: k1 ^ 0x7465646279746573,
104            },
105            tail: 0,
106            ntail: 0,
107        }
108    }
109
110    /// Creates a new SipHash24 engine.
111    pub fn new() -> HashEngine { HashEngine::with_keys(0, 0) }
112
113    /// Retrieves the keys of this engine.
114    pub fn keys(&self) -> (u64, u64) { (self.k0, self.k1) }
115
116    #[inline]
117    fn c_rounds(state: &mut State) {
118        compress!(state);
119        compress!(state);
120    }
121
122    #[inline]
123    fn d_rounds(state: &mut State) {
124        compress!(state);
125        compress!(state);
126        compress!(state);
127        compress!(state);
128    }
129}
130
131impl Default for HashEngine {
132    fn default() -> Self { HashEngine::new() }
133}
134
135impl crate::HashEngine for HashEngine {
136    type MidState = State;
137
138    fn midstate(&self) -> State { self.state.clone() }
139
140    const BLOCK_SIZE: usize = 8;
141
142    #[inline]
143    fn input(&mut self, msg: &[u8]) {
144        let length = msg.len();
145        self.length += length;
146
147        let mut needed = 0;
148
149        if self.ntail != 0 {
150            needed = 8 - self.ntail;
151            self.tail |= unsafe { u8to64_le(msg, 0, cmp::min(length, needed)) } << (8 * self.ntail);
152            if length < needed {
153                self.ntail += length;
154                return;
155            } else {
156                self.state.v3 ^= self.tail;
157                HashEngine::c_rounds(&mut self.state);
158                self.state.v0 ^= self.tail;
159                self.ntail = 0;
160            }
161        }
162
163        // Buffered tail is now flushed, process new input.
164        let len = length - needed;
165        let left = len & 0x7;
166
167        let mut i = needed;
168        while i < len - left {
169            let mi = unsafe { load_int_le!(msg, i, u64) };
170
171            self.state.v3 ^= mi;
172            HashEngine::c_rounds(&mut self.state);
173            self.state.v0 ^= mi;
174
175            i += 8;
176        }
177
178        self.tail = unsafe { u8to64_le(msg, i, left) };
179        self.ntail = left;
180    }
181
182    fn n_bytes_hashed(&self) -> usize { self.length }
183}
184
185impl Hash {
186    /// Hashes the given data with an engine with the provided keys.
187    pub fn hash_with_keys(k0: u64, k1: u64, data: &[u8]) -> Hash {
188        let mut engine = HashEngine::with_keys(k0, k1);
189        engine.input(data);
190        Hash::from_engine(engine)
191    }
192
193    /// Hashes the given data directly to u64 with an engine with the provided keys.
194    pub fn hash_to_u64_with_keys(k0: u64, k1: u64, data: &[u8]) -> u64 {
195        let mut engine = HashEngine::with_keys(k0, k1);
196        engine.input(data);
197        Hash::from_engine_to_u64(engine)
198    }
199
200    /// Produces a hash as `u64` from the current state of a given engine.
201    #[inline]
202    pub fn from_engine_to_u64(e: HashEngine) -> u64 {
203        let mut state = e.state;
204
205        let b: u64 = ((e.length as u64 & 0xff) << 56) | e.tail;
206
207        state.v3 ^= b;
208        HashEngine::c_rounds(&mut state);
209        state.v0 ^= b;
210
211        state.v2 ^= 0xff;
212        HashEngine::d_rounds(&mut state);
213
214        state.v0 ^ state.v1 ^ state.v2 ^ state.v3
215    }
216
217    /// Returns the (little endian) 64-bit integer representation of the hash value.
218    pub fn as_u64(&self) -> u64 { u64::from_le_bytes(self.0) }
219
220    /// Creates a hash from its (little endian) 64-bit integer representation.
221    pub fn from_u64(hash: u64) -> Hash { Hash(hash.to_le_bytes()) }
222}
223
224/// Load an u64 using up to 7 bytes of a byte slice.
225///
226/// Unsafe because: unchecked indexing at `start..start+len`.
227#[inline]
228unsafe fn u8to64_le(buf: &[u8], start: usize, len: usize) -> u64 {
229    debug_assert!(len < 8);
230    let mut i = 0; // current byte index (from LSB) in the output u64
231    let mut out = 0;
232    if i + 3 < len {
233        out = u64::from(load_int_le!(buf, start + i, u32));
234        i += 4;
235    }
236    if i + 1 < len {
237        out |= u64::from(load_int_le!(buf, start + i, u16)) << (i * 8);
238        i += 2
239    }
240    if i < len {
241        out |= u64::from(*buf.get_unchecked(start + i)) << (i * 8);
242        i += 1;
243    }
244    debug_assert_eq!(i, len);
245    out
246}
247
248#[cfg(test)]
249mod tests {
250    use super::*;
251
252    #[test]
253    fn test_siphash_2_4() {
254        #[rustfmt::skip]
255        let vecs: [[u8; 8]; 64] = [
256            [0x31, 0x0e, 0x0e, 0xdd, 0x47, 0xdb, 0x6f, 0x72],
257            [0xfd, 0x67, 0xdc, 0x93, 0xc5, 0x39, 0xf8, 0x74],
258            [0x5a, 0x4f, 0xa9, 0xd9, 0x09, 0x80, 0x6c, 0x0d],
259            [0x2d, 0x7e, 0xfb, 0xd7, 0x96, 0x66, 0x67, 0x85],
260            [0xb7, 0x87, 0x71, 0x27, 0xe0, 0x94, 0x27, 0xcf],
261            [0x8d, 0xa6, 0x99, 0xcd, 0x64, 0x55, 0x76, 0x18],
262            [0xce, 0xe3, 0xfe, 0x58, 0x6e, 0x46, 0xc9, 0xcb],
263            [0x37, 0xd1, 0x01, 0x8b, 0xf5, 0x00, 0x02, 0xab],
264            [0x62, 0x24, 0x93, 0x9a, 0x79, 0xf5, 0xf5, 0x93],
265            [0xb0, 0xe4, 0xa9, 0x0b, 0xdf, 0x82, 0x00, 0x9e],
266            [0xf3, 0xb9, 0xdd, 0x94, 0xc5, 0xbb, 0x5d, 0x7a],
267            [0xa7, 0xad, 0x6b, 0x22, 0x46, 0x2f, 0xb3, 0xf4],
268            [0xfb, 0xe5, 0x0e, 0x86, 0xbc, 0x8f, 0x1e, 0x75],
269            [0x90, 0x3d, 0x84, 0xc0, 0x27, 0x56, 0xea, 0x14],
270            [0xee, 0xf2, 0x7a, 0x8e, 0x90, 0xca, 0x23, 0xf7],
271            [0xe5, 0x45, 0xbe, 0x49, 0x61, 0xca, 0x29, 0xa1],
272            [0xdb, 0x9b, 0xc2, 0x57, 0x7f, 0xcc, 0x2a, 0x3f],
273            [0x94, 0x47, 0xbe, 0x2c, 0xf5, 0xe9, 0x9a, 0x69],
274            [0x9c, 0xd3, 0x8d, 0x96, 0xf0, 0xb3, 0xc1, 0x4b],
275            [0xbd, 0x61, 0x79, 0xa7, 0x1d, 0xc9, 0x6d, 0xbb],
276            [0x98, 0xee, 0xa2, 0x1a, 0xf2, 0x5c, 0xd6, 0xbe],
277            [0xc7, 0x67, 0x3b, 0x2e, 0xb0, 0xcb, 0xf2, 0xd0],
278            [0x88, 0x3e, 0xa3, 0xe3, 0x95, 0x67, 0x53, 0x93],
279            [0xc8, 0xce, 0x5c, 0xcd, 0x8c, 0x03, 0x0c, 0xa8],
280            [0x94, 0xaf, 0x49, 0xf6, 0xc6, 0x50, 0xad, 0xb8],
281            [0xea, 0xb8, 0x85, 0x8a, 0xde, 0x92, 0xe1, 0xbc],
282            [0xf3, 0x15, 0xbb, 0x5b, 0xb8, 0x35, 0xd8, 0x17],
283            [0xad, 0xcf, 0x6b, 0x07, 0x63, 0x61, 0x2e, 0x2f],
284            [0xa5, 0xc9, 0x1d, 0xa7, 0xac, 0xaa, 0x4d, 0xde],
285            [0x71, 0x65, 0x95, 0x87, 0x66, 0x50, 0xa2, 0xa6],
286            [0x28, 0xef, 0x49, 0x5c, 0x53, 0xa3, 0x87, 0xad],
287            [0x42, 0xc3, 0x41, 0xd8, 0xfa, 0x92, 0xd8, 0x32],
288            [0xce, 0x7c, 0xf2, 0x72, 0x2f, 0x51, 0x27, 0x71],
289            [0xe3, 0x78, 0x59, 0xf9, 0x46, 0x23, 0xf3, 0xa7],
290            [0x38, 0x12, 0x05, 0xbb, 0x1a, 0xb0, 0xe0, 0x12],
291            [0xae, 0x97, 0xa1, 0x0f, 0xd4, 0x34, 0xe0, 0x15],
292            [0xb4, 0xa3, 0x15, 0x08, 0xbe, 0xff, 0x4d, 0x31],
293            [0x81, 0x39, 0x62, 0x29, 0xf0, 0x90, 0x79, 0x02],
294            [0x4d, 0x0c, 0xf4, 0x9e, 0xe5, 0xd4, 0xdc, 0xca],
295            [0x5c, 0x73, 0x33, 0x6a, 0x76, 0xd8, 0xbf, 0x9a],
296            [0xd0, 0xa7, 0x04, 0x53, 0x6b, 0xa9, 0x3e, 0x0e],
297            [0x92, 0x59, 0x58, 0xfc, 0xd6, 0x42, 0x0c, 0xad],
298            [0xa9, 0x15, 0xc2, 0x9b, 0xc8, 0x06, 0x73, 0x18],
299            [0x95, 0x2b, 0x79, 0xf3, 0xbc, 0x0a, 0xa6, 0xd4],
300            [0xf2, 0x1d, 0xf2, 0xe4, 0x1d, 0x45, 0x35, 0xf9],
301            [0x87, 0x57, 0x75, 0x19, 0x04, 0x8f, 0x53, 0xa9],
302            [0x10, 0xa5, 0x6c, 0xf5, 0xdf, 0xcd, 0x9a, 0xdb],
303            [0xeb, 0x75, 0x09, 0x5c, 0xcd, 0x98, 0x6c, 0xd0],
304            [0x51, 0xa9, 0xcb, 0x9e, 0xcb, 0xa3, 0x12, 0xe6],
305            [0x96, 0xaf, 0xad, 0xfc, 0x2c, 0xe6, 0x66, 0xc7],
306            [0x72, 0xfe, 0x52, 0x97, 0x5a, 0x43, 0x64, 0xee],
307            [0x5a, 0x16, 0x45, 0xb2, 0x76, 0xd5, 0x92, 0xa1],
308            [0xb2, 0x74, 0xcb, 0x8e, 0xbf, 0x87, 0x87, 0x0a],
309            [0x6f, 0x9b, 0xb4, 0x20, 0x3d, 0xe7, 0xb3, 0x81],
310            [0xea, 0xec, 0xb2, 0xa3, 0x0b, 0x22, 0xa8, 0x7f],
311            [0x99, 0x24, 0xa4, 0x3c, 0xc1, 0x31, 0x57, 0x24],
312            [0xbd, 0x83, 0x8d, 0x3a, 0xaf, 0xbf, 0x8d, 0xb7],
313            [0x0b, 0x1a, 0x2a, 0x32, 0x65, 0xd5, 0x1a, 0xea],
314            [0x13, 0x50, 0x79, 0xa3, 0x23, 0x1c, 0xe6, 0x60],
315            [0x93, 0x2b, 0x28, 0x46, 0xe4, 0xd7, 0x06, 0x66],
316            [0xe1, 0x91, 0x5f, 0x5c, 0xb1, 0xec, 0xa4, 0x6c],
317            [0xf3, 0x25, 0x96, 0x5c, 0xa1, 0x6d, 0x62, 0x9f],
318            [0x57, 0x5f, 0xf2, 0x8e, 0x60, 0x38, 0x1b, 0xe5],
319            [0x72, 0x45, 0x06, 0xeb, 0x4c, 0x32, 0x8a, 0x95],
320        ];
321
322        let k0 = 0x_07_06_05_04_03_02_01_00;
323        let k1 = 0x_0f_0e_0d_0c_0b_0a_09_08;
324        let mut vin = [0u8; 64];
325        let mut state_inc = HashEngine::with_keys(k0, k1);
326
327        for i in 0..64 {
328            vin[i] = i as u8;
329            let vec = Hash::from_slice(&vecs[i][..]).unwrap();
330            let out = Hash::hash_with_keys(k0, k1, &vin[0..i]);
331            assert_eq!(vec, out, "vec #{}", i);
332
333            let inc = Hash::from_engine(state_inc.clone());
334            assert_eq!(vec, inc, "vec #{}", i);
335            state_inc.input(&[i as u8]);
336        }
337    }
338}
339
340#[cfg(bench)]
341mod benches {
342    use test::Bencher;
343
344    use crate::{siphash24, Hash, HashEngine};
345
346    #[bench]
347    pub fn siphash24_1ki(bh: &mut Bencher) {
348        let mut engine = siphash24::Hash::engine();
349        let bytes = [1u8; 1024];
350        bh.iter(|| {
351            engine.input(&bytes);
352        });
353        bh.bytes = bytes.len() as u64;
354    }
355
356    #[bench]
357    pub fn siphash24_64ki(bh: &mut Bencher) {
358        let mut engine = siphash24::Hash::engine();
359        let bytes = [1u8; 65536];
360        bh.iter(|| {
361            engine.input(&bytes);
362        });
363        bh.bytes = bytes.len() as u64;
364    }
365
366    #[bench]
367    pub fn siphash24_1ki_hash(bh: &mut Bencher) {
368        let k0 = 0x_07_06_05_04_03_02_01_00;
369        let k1 = 0x_0f_0e_0d_0c_0b_0a_09_08;
370        let bytes = [1u8; 1024];
371        bh.iter(|| {
372            let _ = siphash24::Hash::hash_with_keys(k0, k1, &bytes);
373        });
374        bh.bytes = bytes.len() as u64;
375    }
376
377    #[bench]
378    pub fn siphash24_1ki_hash_u64(bh: &mut Bencher) {
379        let k0 = 0x_07_06_05_04_03_02_01_00;
380        let k1 = 0x_0f_0e_0d_0c_0b_0a_09_08;
381        let bytes = [1u8; 1024];
382        bh.iter(|| {
383            let _ = siphash24::Hash::hash_to_u64_with_keys(k0, k1, &bytes);
384        });
385        bh.bytes = bytes.len() as u64;
386    }
387}