rscrypto 0.1.1

Pure Rust cryptography, hardware-accelerated: BLAKE3, SHA-2/3, AES-GCM, ChaCha20-Poly1305, Ed25519, X25519, HMAC, HKDF, Argon2, CRC. no_std, WASM, ten CPU architectures.
Documentation
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
//! rapidhash V3 (**NOT CRYPTO**).
//!
//! Portable scalar implementation.
//!
//! Two variants are provided:
//!
//! - **`RapidHash64` / `RapidHash128`** — the standard V3 algorithm with avalanche finisher (extra
//!   `rapid_mix`). C++-compatible output. Use when you need stable, cross-language hash values.
//!
//! - **`RapidHashFast64` / `RapidHashFast128`** — V3 core with avalanche disabled. Saves one
//!   128-bit multiply at finalization. Use when you only need a fast in-process hash (e.g. hash
//!   maps) and don't need C++ compatibility.

#![allow(clippy::indexing_slicing)] // Tight block parsing

use crate::traits::FastHash;

#[doc(hidden)]
pub(crate) mod dispatch;
#[cfg(all(feature = "rapidhash", any(test, feature = "diag")))]
#[doc(hidden)]
pub(crate) mod dispatch_tables;
#[cfg(all(feature = "rapidhash", any(test, feature = "diag")))]
pub(crate) mod kernels;

/// Standard V3 rapidhash (64-bit) with avalanche finisher.
#[derive(Clone, Debug, Default)]
pub struct RapidHash64;

/// Standard V3 rapidhash (128-bit) with avalanche finisher.
#[derive(Clone, Debug, Default)]
pub struct RapidHash128;

/// Fast V3 rapidhash (64-bit) — avalanche disabled for maximum throughput.
#[derive(Clone, Debug, Default)]
pub struct RapidHashFast64;

/// Fast V3 rapidhash (128-bit) — avalanche disabled for maximum throughput.
#[derive(Clone, Debug, Default)]
pub struct RapidHashFast128;

// rapidhash v3 default secrets (C++ compatible).
const DEFAULT_SECRETS: [u64; 7] = [
  0x2d35_8dcc_aa6c_78a5,
  0x8bb8_4b93_962e_acc9,
  0x4b33_a62e_d433_d4a3,
  0x4d5a_2da5_1de1_aa47,
  0xa076_1d64_78bd_642f,
  0xe703_7ed1_a0b4_28db,
  0x90ed_1765_281c_388c,
];

#[cfg(any(target_arch = "s390x", target_arch = "powerpc64"))]
struct PrecomputedSecrets {
  seed: u64,
  secrets: [u64; 7],
}

// Default paths use referenced precomputed state to match upstream's
// `RapidSecrets` code shape on targets where materializing many 64-bit
// constants is costly.
#[cfg(any(target_arch = "s390x", target_arch = "powerpc64"))]
static V3_DEFAULT_SECRETS: PrecomputedSecrets = PrecomputedSecrets {
  seed: PRECOMPUTED_SEED_0,
  secrets: DEFAULT_SECRETS,
};

#[cfg(any(target_arch = "s390x", target_arch = "powerpc64"))]
static V3_DEFAULT_HI_SECRETS: PrecomputedSecrets = PrecomputedSecrets {
  seed: PRECOMPUTED_SEED_HI,
  secrets: DEFAULT_SECRETS,
};

#[cfg(any(target_arch = "s390x", target_arch = "powerpc64"))]
static FAST_DEFAULT_SECRETS: [u64; 7] = DEFAULT_SECRETS;

#[inline(always)]
fn default_fast_secret<const IDX: usize>() -> u64 {
  debug_assert!(IDX < DEFAULT_SECRETS.len());

  #[cfg(any(target_arch = "s390x", target_arch = "powerpc64"))]
  {
    FAST_DEFAULT_SECRETS[IDX]
  }

  #[cfg(not(any(target_arch = "s390x", target_arch = "powerpc64")))]
  {
    DEFAULT_SECRETS[IDX]
  }
}

#[inline(always)]
#[cfg(any(target_arch = "s390x", target_arch = "powerpc64"))]
fn v3_secret<const IDX: usize>(secrets: &[u64; 7]) -> u64 {
  debug_assert!(IDX < DEFAULT_SECRETS.len());
  secrets[IDX]
}

#[inline(always)]
fn read_u32_le(input: &[u8], offset: usize) -> u32 {
  debug_assert!(offset + 4 <= input.len());
  // SAFETY: caller ensures `offset + 4 <= input.len()`, and `read_unaligned` supports unaligned
  // loads.
  let v = unsafe { core::ptr::read_unaligned(input.as_ptr().add(offset) as *const u32) };
  u32::from_le(v)
}

#[inline(always)]
fn read_u64_le(input: &[u8], offset: usize) -> u64 {
  debug_assert!(offset + 8 <= input.len());
  // SAFETY: caller ensures `offset + 8 <= input.len()`, and `read_unaligned` supports unaligned
  // loads.
  let v = unsafe { core::ptr::read_unaligned(input.as_ptr().add(offset) as *const u64) };
  u64::from_le(v)
}

/// Native-endian u32 read. Used by the Fast variant only — the Fast variant is
/// for in-process hashing and does not need cross-platform byte-order consistency.
/// Skipping the byte-swap eliminates LRVG overhead on big-endian platforms (s390x,
/// POWER), matching the competitor's `read_u32_np`.
#[inline(always)]
fn read_u32_np(input: &[u8], offset: usize) -> u32 {
  debug_assert!(offset + 4 <= input.len());
  // SAFETY: caller ensures `offset + 4 <= input.len()`, and `read_unaligned` supports unaligned
  // loads.
  unsafe { core::ptr::read_unaligned(input.as_ptr().add(offset) as *const u32) }
}

/// Native-endian u64 read. Used by the Fast variant only — see `read_u32_np`.
#[inline(always)]
fn read_u64_np(input: &[u8], offset: usize) -> u64 {
  debug_assert!(offset + 8 <= input.len());
  // SAFETY: caller ensures `offset + 8 <= input.len()`, and `read_unaligned` supports unaligned
  // loads.
  unsafe { core::ptr::read_unaligned(input.as_ptr().add(offset) as *const u64) }
}

#[inline(always)]
const fn rapid_mum(a: u64, b: u64) -> (u64, u64) {
  let r = (a as u128).wrapping_mul(b as u128);
  (r as u64, (r >> 64) as u64)
}

#[inline(always)]
const fn rapid_mix(a: u64, b: u64) -> u64 {
  let r = (a as u128).wrapping_mul(b as u128);
  (r as u64) ^ ((r >> 64) as u64)
}

/// Hint that `cond` is likely true. Uses `#[cold]` to nudge branch layout.
#[inline(always)]
fn likely(cond: bool) -> bool {
  if !cond {
    cold_path();
  }
  cond
}

/// Hint that `cond` is likely false.
#[inline(always)]
fn unlikely(cond: bool) -> bool {
  if cond {
    cold_path();
  }
  cond
}

#[cold]
#[inline(always)]
fn cold_path() {}

#[inline(always)]
const fn rapidhash_seed_cpp(seed: u64) -> u64 {
  seed ^ rapid_mix(seed ^ DEFAULT_SECRETS[2], DEFAULT_SECRETS[1])
}

const V3_HI_SEED: u64 = 0x9E37_79B9_7F4A_7C15;

/// Precomputed seed for the default case (seed = 0). Eliminates one 128-bit
/// multiply per call when using `FastHash::hash()` (the common path).
const PRECOMPUTED_SEED_0: u64 = rapidhash_seed_cpp(0);
const PRECOMPUTED_SEED_HI: u64 = rapidhash_seed_cpp(V3_HI_SEED);

#[inline(always)]
const fn rapidhash_fast_default_empty(seed: u64) -> u64 {
  rapid_mix(DEFAULT_SECRETS[0], seed)
}

const FAST_EMPTY_HASH_SEED_0: u64 = rapidhash_fast_default_empty(PRECOMPUTED_SEED_0);
const FAST_EMPTY_HASH_SEED_HI: u64 = rapidhash_fast_default_empty(PRECOMPUTED_SEED_HI);

#[inline(always)]
#[cfg(any(target_arch = "s390x", target_arch = "powerpc64"))]
fn rapidhash_finish(a: u64, b: u64, remainder: u64, secrets: &[u64; 7]) -> u64 {
  rapid_mix(a ^ 0xaaaa_aaaa_aaaa_aaaa, b ^ v3_secret::<1>(secrets) ^ remainder)
}

#[inline(always)]
#[cfg(not(any(target_arch = "s390x", target_arch = "powerpc64")))]
fn rapidhash_finish_default(a: u64, b: u64, remainder: u64) -> u64 {
  rapid_mix(a ^ 0xaaaa_aaaa_aaaa_aaaa, b ^ DEFAULT_SECRETS[1] ^ remainder)
}

#[inline(always)]
fn rapidhash_v3_with_seed(data: &[u8], seed: u64) -> u64 {
  rapidhash_core_default::<true>(data, rapidhash_seed_cpp(seed))
}

#[inline(always)]
fn rapidhash_fast_with_seed(data: &[u8], seed: u64) -> u64 {
  rapidhash_fast_core(data, rapidhash_seed_cpp(seed))
}

#[inline(always)]
fn rapidhash_fast_128_with_seed(data: &[u8], seed: u64) -> u128 {
  let seed_lo = rapidhash_seed_cpp(seed);
  let seed_hi = rapidhash_seed_cpp(seed ^ V3_HI_SEED);
  rapidhash_fast_128_core(data, seed_lo, seed_hi)
}

#[inline(always)]
#[cfg(any(target_arch = "s390x", target_arch = "powerpc64"))]
fn rapidhash_core<const AVALANCHE: bool>(data: &[u8], mut seed: u64, secrets: &[u64; 7]) -> u64 {
  let mut a = 0u64;
  let mut b = 0u64;

  if likely(data.len() <= 16) {
    // Small path: 0-16 bytes. Fully inline for minimum overhead.
    if data.len() >= 4 {
      seed ^= data.len() as u64;
      if data.len() >= 8 {
        a = read_u64_le(data, 0);
        b = read_u64_le(data, data.len() - 8);
      } else {
        a = read_u32_le(data, 0) as u64;
        b = read_u32_le(data, data.len() - 4) as u64;
      }
    } else if !data.is_empty() {
      a = ((data[0] as u64) << 45) | (data[data.len() - 1] as u64);
      b = data[data.len() >> 1] as u64;
    }
  } else {
    // Medium/large path: >16 bytes. Keep the 7-stream bulk loop out of the
    // 17-112B path so fixed medium inputs don't pay large-handler setup.
    // SAFETY: we just verified data.len() > 16.
    unsafe {
      if data.len() <= 112 {
        return rapidhash_core_medium::<AVALANCHE>(data, seed, secrets);
      }
      return rapidhash_core_large::<AVALANCHE>(data, seed, secrets);
    }
  }

  let remainder = data.len() as u64;
  a ^= v3_secret::<1>(secrets);
  b ^= seed;
  (a, b) = rapid_mum(a, b);
  rapidhash_final::<AVALANCHE>(a, b, remainder, secrets)
}

#[inline(always)]
fn rapidhash_core_default<const AVALANCHE: bool>(data: &[u8], seed: u64) -> u64 {
  #[cfg(any(target_arch = "s390x", target_arch = "powerpc64"))]
  {
    rapidhash_core::<AVALANCHE>(data, seed, &V3_DEFAULT_SECRETS.secrets)
  }

  #[cfg(not(any(target_arch = "s390x", target_arch = "powerpc64")))]
  {
    let mut seed = seed;
    let mut a = 0u64;
    let mut b = 0u64;

    if likely(data.len() <= 16) {
      if data.len() >= 4 {
        seed ^= data.len() as u64;
        if data.len() >= 8 {
          a = read_u64_le(data, 0);
          b = read_u64_le(data, data.len() - 8);
        } else {
          a = read_u32_le(data, 0) as u64;
          b = read_u32_le(data, data.len() - 4) as u64;
        }
      } else if !data.is_empty() {
        a = ((data[0] as u64) << 45) | (data[data.len() - 1] as u64);
        b = data[data.len() >> 1] as u64;
      }

      let remainder = data.len() as u64;
      a ^= DEFAULT_SECRETS[1];
      b ^= seed;
      (a, b) = rapid_mum(a, b);
      return rapidhash_final_default::<AVALANCHE>(a, b, remainder);
    }

    // SAFETY: data.len() > 16 verified above.
    unsafe {
      if data.len() <= 112 {
        return rapidhash_core_medium_default::<AVALANCHE>(data, seed);
      }
      rapidhash_core_large_default::<AVALANCHE>(data, seed)
    }
  }
}

#[inline(always)]
#[cfg(any(target_arch = "s390x", target_arch = "powerpc64"))]
fn rapidhash_final<const AVALANCHE: bool>(a: u64, b: u64, remainder: u64, secrets: &[u64; 7]) -> u64 {
  if AVALANCHE {
    rapidhash_finish(a, b, remainder, secrets)
  } else {
    a ^ b
  }
}

#[inline(always)]
#[cfg(not(any(target_arch = "s390x", target_arch = "powerpc64")))]
fn rapidhash_final_default<const AVALANCHE: bool>(a: u64, b: u64, remainder: u64) -> u64 {
  if AVALANCHE {
    rapidhash_finish_default(a, b, remainder)
  } else {
    a ^ b
  }
}

/// Handles inputs 17-112 bytes. This keeps fixed-size medium inputs out of the
/// 7-stream large handler without changing V3 output.
///
/// # Safety
///
/// Caller must guarantee `16 < data.len() <= 112`.
#[inline(always)]
#[cfg(not(any(target_arch = "s390x", target_arch = "powerpc64")))]
unsafe fn rapidhash_core_medium_default<const AVALANCHE: bool>(data: &[u8], mut seed: u64) -> u64 {
  // SAFETY: caller guarantees 16 < data.len() <= 112. This eliminates redundant
  // bounds checks in the tail-read section below.
  unsafe {
    core::hint::assert_unchecked(data.len() > 16);
    core::hint::assert_unchecked(data.len() <= 112);
  }

  let mut a = 0u64;
  let mut b = 0u64;

  seed = rapid_mix(read_u64_le(data, 0) ^ DEFAULT_SECRETS[2], read_u64_le(data, 8) ^ seed);
  if data.len() > 32 {
    seed = rapid_mix(read_u64_le(data, 16) ^ DEFAULT_SECRETS[2], read_u64_le(data, 24) ^ seed);
    if data.len() > 48 {
      seed = rapid_mix(read_u64_le(data, 32) ^ DEFAULT_SECRETS[1], read_u64_le(data, 40) ^ seed);
      if data.len() > 64 {
        seed = rapid_mix(read_u64_le(data, 48) ^ DEFAULT_SECRETS[1], read_u64_le(data, 56) ^ seed);
        if data.len() > 80 {
          seed = rapid_mix(read_u64_le(data, 64) ^ DEFAULT_SECRETS[2], read_u64_le(data, 72) ^ seed);
          if data.len() > 96 {
            seed = rapid_mix(read_u64_le(data, 80) ^ DEFAULT_SECRETS[1], read_u64_le(data, 88) ^ seed);
          }
        }
      }
    }
  }

  let remainder = data.len() as u64;
  a ^= read_u64_le(data, data.len() - 16) ^ remainder;
  b ^= read_u64_le(data, data.len() - 8);

  a ^= DEFAULT_SECRETS[1];
  b ^= seed;

  (a, b) = rapid_mum(a, b);
  rapidhash_final_default::<AVALANCHE>(a, b, remainder)
}

/// Handles inputs >16 bytes. Kept as a separate function so the small-path
/// entry point stays lean for inlining. LLVM decides whether to inline this.
///
/// # Safety
///
/// Caller must guarantee `data.len() > 16`.
#[inline]
#[cfg(not(any(target_arch = "s390x", target_arch = "powerpc64")))]
unsafe fn rapidhash_core_large_default<const AVALANCHE: bool>(data: &[u8], mut seed: u64) -> u64 {
  // SAFETY: caller guarantees data.len() > 16. This eliminates redundant
  // bounds checks in the tail-read section below.
  unsafe { core::hint::assert_unchecked(data.len() > 16) };

  let mut a = 0u64;
  let mut b = 0u64;
  let mut slice = data;

  if unlikely(slice.len() > 112) {
    let mut see1 = seed;
    let mut see2 = seed;
    let mut see3 = seed;
    let mut see4 = seed;
    let mut see5 = seed;
    let mut see6 = seed;

    while slice.len() > 224 {
      seed = rapid_mix(read_u64_le(slice, 0) ^ DEFAULT_SECRETS[0], read_u64_le(slice, 8) ^ seed);
      see1 = rapid_mix(
        read_u64_le(slice, 16) ^ DEFAULT_SECRETS[1],
        read_u64_le(slice, 24) ^ see1,
      );
      see2 = rapid_mix(
        read_u64_le(slice, 32) ^ DEFAULT_SECRETS[2],
        read_u64_le(slice, 40) ^ see2,
      );
      see3 = rapid_mix(
        read_u64_le(slice, 48) ^ DEFAULT_SECRETS[3],
        read_u64_le(slice, 56) ^ see3,
      );
      see4 = rapid_mix(
        read_u64_le(slice, 64) ^ DEFAULT_SECRETS[4],
        read_u64_le(slice, 72) ^ see4,
      );
      see5 = rapid_mix(
        read_u64_le(slice, 80) ^ DEFAULT_SECRETS[5],
        read_u64_le(slice, 88) ^ see5,
      );
      see6 = rapid_mix(
        read_u64_le(slice, 96) ^ DEFAULT_SECRETS[6],
        read_u64_le(slice, 104) ^ see6,
      );

      seed = rapid_mix(
        read_u64_le(slice, 112) ^ DEFAULT_SECRETS[0],
        read_u64_le(slice, 120) ^ seed,
      );
      see1 = rapid_mix(
        read_u64_le(slice, 128) ^ DEFAULT_SECRETS[1],
        read_u64_le(slice, 136) ^ see1,
      );
      see2 = rapid_mix(
        read_u64_le(slice, 144) ^ DEFAULT_SECRETS[2],
        read_u64_le(slice, 152) ^ see2,
      );
      see3 = rapid_mix(
        read_u64_le(slice, 160) ^ DEFAULT_SECRETS[3],
        read_u64_le(slice, 168) ^ see3,
      );
      see4 = rapid_mix(
        read_u64_le(slice, 176) ^ DEFAULT_SECRETS[4],
        read_u64_le(slice, 184) ^ see4,
      );
      see5 = rapid_mix(
        read_u64_le(slice, 192) ^ DEFAULT_SECRETS[5],
        read_u64_le(slice, 200) ^ see5,
      );
      see6 = rapid_mix(
        read_u64_le(slice, 208) ^ DEFAULT_SECRETS[6],
        read_u64_le(slice, 216) ^ see6,
      );

      let (_, rest) = slice.split_at(224);
      slice = rest;
    }

    if slice.len() > 112 {
      seed = rapid_mix(read_u64_le(slice, 0) ^ DEFAULT_SECRETS[0], read_u64_le(slice, 8) ^ seed);
      see1 = rapid_mix(
        read_u64_le(slice, 16) ^ DEFAULT_SECRETS[1],
        read_u64_le(slice, 24) ^ see1,
      );
      see2 = rapid_mix(
        read_u64_le(slice, 32) ^ DEFAULT_SECRETS[2],
        read_u64_le(slice, 40) ^ see2,
      );
      see3 = rapid_mix(
        read_u64_le(slice, 48) ^ DEFAULT_SECRETS[3],
        read_u64_le(slice, 56) ^ see3,
      );
      see4 = rapid_mix(
        read_u64_le(slice, 64) ^ DEFAULT_SECRETS[4],
        read_u64_le(slice, 72) ^ see4,
      );
      see5 = rapid_mix(
        read_u64_le(slice, 80) ^ DEFAULT_SECRETS[5],
        read_u64_le(slice, 88) ^ see5,
      );
      see6 = rapid_mix(
        read_u64_le(slice, 96) ^ DEFAULT_SECRETS[6],
        read_u64_le(slice, 104) ^ see6,
      );
      let (_, rest) = slice.split_at(112);
      slice = rest;
    }

    seed ^= see1;
    see2 ^= see3;
    see4 ^= see5;
    seed ^= see6;
    see2 ^= see4;
    seed ^= see2;
  }

  if slice.len() > 16 {
    seed = rapid_mix(read_u64_le(slice, 0) ^ DEFAULT_SECRETS[2], read_u64_le(slice, 8) ^ seed);
    if slice.len() > 32 {
      seed = rapid_mix(
        read_u64_le(slice, 16) ^ DEFAULT_SECRETS[2],
        read_u64_le(slice, 24) ^ seed,
      );
      if slice.len() > 48 {
        seed = rapid_mix(
          read_u64_le(slice, 32) ^ DEFAULT_SECRETS[1],
          read_u64_le(slice, 40) ^ seed,
        );
        if slice.len() > 64 {
          seed = rapid_mix(
            read_u64_le(slice, 48) ^ DEFAULT_SECRETS[1],
            read_u64_le(slice, 56) ^ seed,
          );
          if slice.len() > 80 {
            seed = rapid_mix(
              read_u64_le(slice, 64) ^ DEFAULT_SECRETS[2],
              read_u64_le(slice, 72) ^ seed,
            );
            if slice.len() > 96 {
              seed = rapid_mix(
                read_u64_le(slice, 80) ^ DEFAULT_SECRETS[1],
                read_u64_le(slice, 88) ^ seed,
              );
            }
          }
        }
      }
    }
  }

  let remainder = slice.len() as u64;
  a ^= read_u64_le(data, data.len() - 16) ^ remainder;
  b ^= read_u64_le(data, data.len() - 8);

  a ^= DEFAULT_SECRETS[1];
  b ^= seed;

  (a, b) = rapid_mum(a, b);
  rapidhash_final_default::<AVALANCHE>(a, b, remainder)
}
/// Handles inputs 17-112 bytes. This keeps fixed-size medium inputs out of the
/// 7-stream large handler without changing V3 output.
///
/// # Safety
///
/// Caller must guarantee `16 < data.len() <= 112`.
#[inline(always)]
#[cfg(any(target_arch = "s390x", target_arch = "powerpc64"))]
unsafe fn rapidhash_core_medium<const AVALANCHE: bool>(data: &[u8], mut seed: u64, secrets: &[u64; 7]) -> u64 {
  // SAFETY: caller guarantees 16 < data.len() <= 112. This eliminates redundant
  // bounds checks in the tail-read section below.
  unsafe {
    core::hint::assert_unchecked(data.len() > 16);
    core::hint::assert_unchecked(data.len() <= 112);
  }

  let mut a = 0u64;
  let mut b = 0u64;

  seed = rapid_mix(
    read_u64_le(data, 0) ^ v3_secret::<2>(secrets),
    read_u64_le(data, 8) ^ seed,
  );
  if data.len() > 32 {
    seed = rapid_mix(
      read_u64_le(data, 16) ^ v3_secret::<2>(secrets),
      read_u64_le(data, 24) ^ seed,
    );
    if data.len() > 48 {
      seed = rapid_mix(
        read_u64_le(data, 32) ^ v3_secret::<1>(secrets),
        read_u64_le(data, 40) ^ seed,
      );
      if data.len() > 64 {
        seed = rapid_mix(
          read_u64_le(data, 48) ^ v3_secret::<1>(secrets),
          read_u64_le(data, 56) ^ seed,
        );
        if data.len() > 80 {
          seed = rapid_mix(
            read_u64_le(data, 64) ^ v3_secret::<2>(secrets),
            read_u64_le(data, 72) ^ seed,
          );
          if data.len() > 96 {
            seed = rapid_mix(
              read_u64_le(data, 80) ^ v3_secret::<1>(secrets),
              read_u64_le(data, 88) ^ seed,
            );
          }
        }
      }
    }
  }

  let remainder = data.len() as u64;
  a ^= read_u64_le(data, data.len() - 16) ^ remainder;
  b ^= read_u64_le(data, data.len() - 8);

  a ^= v3_secret::<1>(secrets);
  b ^= seed;

  (a, b) = rapid_mum(a, b);
  rapidhash_final::<AVALANCHE>(a, b, remainder, secrets)
}

/// Handles inputs >16 bytes. Kept as a separate function so the small-path
/// entry point stays lean for inlining. LLVM decides whether to inline this.
///
/// # Safety
///
/// Caller must guarantee `data.len() > 16`.
#[inline]
#[cfg(any(target_arch = "s390x", target_arch = "powerpc64"))]
unsafe fn rapidhash_core_large<const AVALANCHE: bool>(data: &[u8], mut seed: u64, secrets: &[u64; 7]) -> u64 {
  // SAFETY: caller guarantees data.len() > 16. This eliminates redundant
  // bounds checks in the tail-read section below.
  unsafe { core::hint::assert_unchecked(data.len() > 16) };

  let mut a = 0u64;
  let mut b = 0u64;
  let mut slice = data;

  if unlikely(slice.len() > 112) {
    let mut see1 = seed;
    let mut see2 = seed;
    let mut see3 = seed;
    let mut see4 = seed;
    let mut see5 = seed;
    let mut see6 = seed;

    while slice.len() > 224 {
      seed = rapid_mix(
        read_u64_le(slice, 0) ^ v3_secret::<0>(secrets),
        read_u64_le(slice, 8) ^ seed,
      );
      see1 = rapid_mix(
        read_u64_le(slice, 16) ^ v3_secret::<1>(secrets),
        read_u64_le(slice, 24) ^ see1,
      );
      see2 = rapid_mix(
        read_u64_le(slice, 32) ^ v3_secret::<2>(secrets),
        read_u64_le(slice, 40) ^ see2,
      );
      see3 = rapid_mix(
        read_u64_le(slice, 48) ^ v3_secret::<3>(secrets),
        read_u64_le(slice, 56) ^ see3,
      );
      see4 = rapid_mix(
        read_u64_le(slice, 64) ^ v3_secret::<4>(secrets),
        read_u64_le(slice, 72) ^ see4,
      );
      see5 = rapid_mix(
        read_u64_le(slice, 80) ^ v3_secret::<5>(secrets),
        read_u64_le(slice, 88) ^ see5,
      );
      see6 = rapid_mix(
        read_u64_le(slice, 96) ^ v3_secret::<6>(secrets),
        read_u64_le(slice, 104) ^ see6,
      );

      seed = rapid_mix(
        read_u64_le(slice, 112) ^ v3_secret::<0>(secrets),
        read_u64_le(slice, 120) ^ seed,
      );
      see1 = rapid_mix(
        read_u64_le(slice, 128) ^ v3_secret::<1>(secrets),
        read_u64_le(slice, 136) ^ see1,
      );
      see2 = rapid_mix(
        read_u64_le(slice, 144) ^ v3_secret::<2>(secrets),
        read_u64_le(slice, 152) ^ see2,
      );
      see3 = rapid_mix(
        read_u64_le(slice, 160) ^ v3_secret::<3>(secrets),
        read_u64_le(slice, 168) ^ see3,
      );
      see4 = rapid_mix(
        read_u64_le(slice, 176) ^ v3_secret::<4>(secrets),
        read_u64_le(slice, 184) ^ see4,
      );
      see5 = rapid_mix(
        read_u64_le(slice, 192) ^ v3_secret::<5>(secrets),
        read_u64_le(slice, 200) ^ see5,
      );
      see6 = rapid_mix(
        read_u64_le(slice, 208) ^ v3_secret::<6>(secrets),
        read_u64_le(slice, 216) ^ see6,
      );

      let (_, rest) = slice.split_at(224);
      slice = rest;
    }

    if slice.len() > 112 {
      seed = rapid_mix(
        read_u64_le(slice, 0) ^ v3_secret::<0>(secrets),
        read_u64_le(slice, 8) ^ seed,
      );
      see1 = rapid_mix(
        read_u64_le(slice, 16) ^ v3_secret::<1>(secrets),
        read_u64_le(slice, 24) ^ see1,
      );
      see2 = rapid_mix(
        read_u64_le(slice, 32) ^ v3_secret::<2>(secrets),
        read_u64_le(slice, 40) ^ see2,
      );
      see3 = rapid_mix(
        read_u64_le(slice, 48) ^ v3_secret::<3>(secrets),
        read_u64_le(slice, 56) ^ see3,
      );
      see4 = rapid_mix(
        read_u64_le(slice, 64) ^ v3_secret::<4>(secrets),
        read_u64_le(slice, 72) ^ see4,
      );
      see5 = rapid_mix(
        read_u64_le(slice, 80) ^ v3_secret::<5>(secrets),
        read_u64_le(slice, 88) ^ see5,
      );
      see6 = rapid_mix(
        read_u64_le(slice, 96) ^ v3_secret::<6>(secrets),
        read_u64_le(slice, 104) ^ see6,
      );
      let (_, rest) = slice.split_at(112);
      slice = rest;
    }

    seed ^= see1;
    see2 ^= see3;
    see4 ^= see5;
    seed ^= see6;
    see2 ^= see4;
    seed ^= see2;
  }

  if slice.len() > 16 {
    seed = rapid_mix(
      read_u64_le(slice, 0) ^ v3_secret::<2>(secrets),
      read_u64_le(slice, 8) ^ seed,
    );
    if slice.len() > 32 {
      seed = rapid_mix(
        read_u64_le(slice, 16) ^ v3_secret::<2>(secrets),
        read_u64_le(slice, 24) ^ seed,
      );
      if slice.len() > 48 {
        seed = rapid_mix(
          read_u64_le(slice, 32) ^ v3_secret::<1>(secrets),
          read_u64_le(slice, 40) ^ seed,
        );
        if slice.len() > 64 {
          seed = rapid_mix(
            read_u64_le(slice, 48) ^ v3_secret::<1>(secrets),
            read_u64_le(slice, 56) ^ seed,
          );
          if slice.len() > 80 {
            seed = rapid_mix(
              read_u64_le(slice, 64) ^ v3_secret::<2>(secrets),
              read_u64_le(slice, 72) ^ seed,
            );
            if slice.len() > 96 {
              seed = rapid_mix(
                read_u64_le(slice, 80) ^ v3_secret::<1>(secrets),
                read_u64_le(slice, 88) ^ seed,
              );
            }
          }
        }
      }
    }
  }

  let remainder = slice.len() as u64;
  a ^= read_u64_le(data, data.len() - 16) ^ remainder;
  b ^= read_u64_le(data, data.len() - 8);

  a ^= v3_secret::<1>(secrets);
  b ^= seed;

  (a, b) = rapid_mum(a, b);
  rapidhash_final::<AVALANCHE>(a, b, remainder, secrets)
}

// ---------------------------------------------------------------------------
// Inner-algorithm core for RapidHashFast64 / RapidHashFast128
// ---------------------------------------------------------------------------
//
// Distinct from V3: size-tuned dispatch (3-stream mid-range, 7-stream large),
// cold-path separation for codegen quality, and inner-module finalization.
// Output is NOT V3-compatible — use RapidHash64/128 for cross-language hashes.

/// Inputs above this use the 7-stream large kernel. Below it, the 3-stream
/// mid-range loop has lower register pressure and avoids stack spills.
const FAST_COLD_CUTOFF: usize = 400;

#[inline(always)]
fn rapidhash_fast_finish(a: u64, b: u64, seed: u64) -> u64 {
  rapid_mix(a ^ default_fast_secret::<0>(), b ^ seed)
}

#[inline(always)]
fn rapidhash_fast_small_parts(data: &[u8], mut seed: u64) -> (u64, u64, u64) {
  let mut a = 0u64;
  let mut b = 0u64;

  if data.len() == 1 {
    let byte = data[0] as u64;
    return ((byte << 45) | byte, byte, seed.wrapping_add(1));
  }

  if likely(data.len() >= 8) {
    a = read_u64_np(data, 0);
    b = read_u64_np(data, data.len() - 8);
  } else if likely(data.len() >= 4) {
    a = read_u32_np(data, 0) as u64;
    b = read_u32_np(data, data.len() - 4) as u64;
  } else if !data.is_empty() {
    a = ((data[0] as u64) << 45) | data[data.len() - 1] as u64;
    b = data[data.len() >> 1] as u64;
  }

  seed = seed.wrapping_add(data.len() as u64);
  (a, b, seed)
}

/// Inner-algorithm entry point for the Fast variants.
///
/// 0–16B path is always inlined. Larger inputs dispatch to `#[cold]` paths
/// that are never inlined, keeping this entry point lean for the common case.
///
/// Uses native-endian reads (`read_u64_np` / `read_u32_np`) — the Fast
/// variant is for in-process hashing only and does not need cross-platform
/// byte-order consistency. This eliminates byte-swap overhead on big-endian
/// platforms (s390x, POWER).
#[inline(always)]
fn rapidhash_fast_core(data: &[u8], mut seed: u64) -> u64 {
  if likely(data.len() <= 16) {
    let mut a = 0u64;
    let mut b = 0u64;

    if data.len() == 1 {
      let byte = data[0] as u64;
      return rapidhash_fast_finish((byte << 45) | byte, byte, seed.wrapping_add(1));
    }

    if likely(data.len() >= 8) {
      a = read_u64_np(data, 0);
      b = read_u64_np(data, data.len() - 8);
    } else if likely(data.len() >= 4) {
      a = read_u32_np(data, 0) as u64;
      b = read_u32_np(data, data.len() - 4) as u64;
    } else if !data.is_empty() {
      a = ((data[0] as u64) << 45) | data[data.len() - 1] as u64;
      b = data[data.len() >> 1] as u64;
    }

    seed = seed.wrapping_add(data.len() as u64);
    rapidhash_fast_finish(a, b, seed)
  } else {
    // SAFETY: data.len() > 16 verified above.
    unsafe { rapidhash_fast_core_medium(data, seed) }
  }
}

#[inline(always)]
fn rapidhash_fast_default_core(data: &[u8], seed: u64) -> u64 {
  if likely(data.len() <= 16) {
    let (a, b, seed) = rapidhash_fast_small_parts(data, seed);
    rapidhash_fast_finish(a, b, seed)
  } else if data.len() <= 96 {
    // SAFETY: data.len() > 16 and <= 96 verified above.
    unsafe { rapidhash_fast_core_inline_mid(data, seed) }
  } else {
    rapidhash_fast_core(data, seed)
  }
}

#[inline(always)]
fn rapidhash_fast_128_core(data: &[u8], seed_lo: u64, seed_hi: u64) -> u128 {
  if likely(data.len() > 16) {
    let lo = rapidhash_fast_default_core(data, seed_lo) as u128;
    let hi = rapidhash_fast_default_core(data, seed_hi) as u128;
    lo | (hi << 64)
  } else {
    let (a, b, seed_lo) = rapidhash_fast_small_parts(data, seed_lo);
    let seed_hi = seed_hi.wrapping_add(data.len() as u64);
    let lo = rapidhash_fast_finish(a, b, seed_lo) as u128;
    let hi = rapidhash_fast_finish(a, b, seed_hi) as u128;
    lo | (hi << 64)
  }
}

#[inline(always)]
unsafe fn rapidhash_fast_core_inline_mid(data: &[u8], mut seed: u64) -> u64 {
  // SAFETY: caller guarantees 16 < data.len() <= 96.
  unsafe {
    core::hint::assert_unchecked(data.len() > 16);
    core::hint::assert_unchecked(data.len() <= 96);
  }

  if data.len() <= 48 {
    // SAFETY: data.len() > 16 guaranteed by caller.
    return unsafe { rapidhash_fast_tail(seed, data, data) };
  }

  let mut slice = data;
  let mut see1 = seed;
  let mut see2 = seed;

  while slice.len() >= 48 {
    seed = rapid_mix(
      read_u64_np(slice, 0) ^ default_fast_secret::<0>(),
      read_u64_np(slice, 8) ^ seed,
    );
    see1 = rapid_mix(
      read_u64_np(slice, 16) ^ default_fast_secret::<1>(),
      read_u64_np(slice, 24) ^ see1,
    );
    see2 = rapid_mix(
      read_u64_np(slice, 32) ^ default_fast_secret::<2>(),
      read_u64_np(slice, 40) ^ see2,
    );
    let (_, rest) = slice.split_at(48);
    slice = rest;
  }

  seed ^= see1 ^ see2;

  // SAFETY: data.len() > 16 guaranteed by caller.
  unsafe { rapidhash_fast_tail(seed, slice, data) }
}

/// Final ≤48B tail processing shared by medium and large paths.
///
/// Reads up to two 16B pairs from `slice` (the unprocessed remainder), then
/// reads the final 16B from `data` (the original input) for overlap handling.
///
/// # Safety
///
/// Caller must guarantee `data.len() > 16`.
#[inline(always)]
unsafe fn rapidhash_fast_tail(mut seed: u64, slice: &[u8], data: &[u8]) -> u64 {
  // SAFETY: caller guarantees data.len() > 16.
  unsafe { core::hint::assert_unchecked(data.len() > 16) };

  if likely(slice.len() > 16) {
    seed = rapid_mix(
      read_u64_np(slice, 0) ^ default_fast_secret::<0>(),
      read_u64_np(slice, 8) ^ seed,
    );
    if likely(slice.len() > 32) {
      seed = rapid_mix(
        read_u64_np(slice, 16) ^ default_fast_secret::<0>(),
        read_u64_np(slice, 24) ^ seed,
      );
    }
  }

  let a = read_u64_np(data, data.len() - 16);
  let b = read_u64_np(data, data.len() - 8);
  seed = seed.wrapping_add(data.len() as u64);
  rapidhash_fast_finish(a, b, seed)
}

/// Cold medium path: 17B–~400B. 3-stream accumulation for 49B+.
///
/// `#[cold] #[inline(never)]` keeps the small-path entry point lean for
/// inlining. The 17–48B range short-circuits to the tail handler to avoid
/// 3-stream register setup/stack spill on all platforms.
///
/// # Safety
///
/// Caller must guarantee `data.len() > 16`.
#[cold]
#[inline(never)]
unsafe fn rapidhash_fast_core_medium(data: &[u8], mut seed: u64) -> u64 {
  // SAFETY: caller guarantees data.len() > 16.
  unsafe { core::hint::assert_unchecked(data.len() > 16) };

  let mut slice = data;

  // Short-circuit 17–48B to the tail handler. This avoids the 3-stream
  // register setup that causes stack spills.
  if data.len() <= 48 {
    // SAFETY: data.len() > 16 guaranteed by caller.
    return unsafe { rapidhash_fast_tail(seed, data, data) };
  }

  if unlikely(data.len() > FAST_COLD_CUTOFF) {
    // SAFETY: data.len() > FAST_COLD_CUTOFF > 16.
    return unsafe { rapidhash_fast_core_large(data, seed) };
  }

  // 3-stream mid-range: 49–400B. Three independent accumulators allow
  // out-of-order execution to overlap the multiply latency.
  let mut see1 = seed;
  let mut see2 = seed;

  while slice.len() >= 48 {
    seed = rapid_mix(
      read_u64_np(slice, 0) ^ default_fast_secret::<0>(),
      read_u64_np(slice, 8) ^ seed,
    );
    see1 = rapid_mix(
      read_u64_np(slice, 16) ^ default_fast_secret::<1>(),
      read_u64_np(slice, 24) ^ see1,
    );
    see2 = rapid_mix(
      read_u64_np(slice, 32) ^ default_fast_secret::<2>(),
      read_u64_np(slice, 40) ^ see2,
    );
    let (_, rest) = slice.split_at(48);
    slice = rest;
  }

  seed ^= see1 ^ see2;

  // SAFETY: data.len() > 16 guaranteed by caller.
  unsafe { rapidhash_fast_tail(seed, slice, data) }
}

/// Cold large path: >400B. 7-stream bulk with 3-stream residual.
///
/// # Safety
///
/// Caller must guarantee `data.len() > FAST_COLD_CUTOFF`.
#[cold]
#[inline(never)]
unsafe fn rapidhash_fast_core_large(data: &[u8], mut seed: u64) -> u64 {
  // SAFETY: caller guarantees data.len() > FAST_COLD_CUTOFF.
  unsafe { core::hint::assert_unchecked(data.len() > FAST_COLD_CUTOFF) };

  let mut slice = data;
  let mut see1 = seed;
  let mut see2 = seed;
  let mut see3 = seed;
  let mut see4 = seed;
  let mut see5 = seed;
  let mut see6 = seed;

  // 7-stream bulk: 224B per iteration (2 × 112B half-blocks).
  while slice.len() >= 224 {
    seed = rapid_mix(
      read_u64_np(slice, 0) ^ default_fast_secret::<0>(),
      read_u64_np(slice, 8) ^ seed,
    );
    see1 = rapid_mix(
      read_u64_np(slice, 16) ^ default_fast_secret::<1>(),
      read_u64_np(slice, 24) ^ see1,
    );
    see2 = rapid_mix(
      read_u64_np(slice, 32) ^ default_fast_secret::<2>(),
      read_u64_np(slice, 40) ^ see2,
    );
    see3 = rapid_mix(
      read_u64_np(slice, 48) ^ default_fast_secret::<3>(),
      read_u64_np(slice, 56) ^ see3,
    );
    see4 = rapid_mix(
      read_u64_np(slice, 64) ^ default_fast_secret::<4>(),
      read_u64_np(slice, 72) ^ see4,
    );
    see5 = rapid_mix(
      read_u64_np(slice, 80) ^ default_fast_secret::<5>(),
      read_u64_np(slice, 88) ^ see5,
    );
    see6 = rapid_mix(
      read_u64_np(slice, 96) ^ default_fast_secret::<6>(),
      read_u64_np(slice, 104) ^ see6,
    );

    seed = rapid_mix(
      read_u64_np(slice, 112) ^ default_fast_secret::<0>(),
      read_u64_np(slice, 120) ^ seed,
    );
    see1 = rapid_mix(
      read_u64_np(slice, 128) ^ default_fast_secret::<1>(),
      read_u64_np(slice, 136) ^ see1,
    );
    see2 = rapid_mix(
      read_u64_np(slice, 144) ^ default_fast_secret::<2>(),
      read_u64_np(slice, 152) ^ see2,
    );
    see3 = rapid_mix(
      read_u64_np(slice, 160) ^ default_fast_secret::<3>(),
      read_u64_np(slice, 168) ^ see3,
    );
    see4 = rapid_mix(
      read_u64_np(slice, 176) ^ default_fast_secret::<4>(),
      read_u64_np(slice, 184) ^ see4,
    );
    see5 = rapid_mix(
      read_u64_np(slice, 192) ^ default_fast_secret::<5>(),
      read_u64_np(slice, 200) ^ see5,
    );
    see6 = rapid_mix(
      read_u64_np(slice, 208) ^ default_fast_secret::<6>(),
      read_u64_np(slice, 216) ^ see6,
    );

    let (_, rest) = slice.split_at(224);
    slice = rest;
  }

  // Single 112B half-block if enough remains.
  if likely(slice.len() >= 112) {
    seed = rapid_mix(
      read_u64_np(slice, 0) ^ default_fast_secret::<0>(),
      read_u64_np(slice, 8) ^ seed,
    );
    see1 = rapid_mix(
      read_u64_np(slice, 16) ^ default_fast_secret::<1>(),
      read_u64_np(slice, 24) ^ see1,
    );
    see2 = rapid_mix(
      read_u64_np(slice, 32) ^ default_fast_secret::<2>(),
      read_u64_np(slice, 40) ^ see2,
    );
    see3 = rapid_mix(
      read_u64_np(slice, 48) ^ default_fast_secret::<3>(),
      read_u64_np(slice, 56) ^ see3,
    );
    see4 = rapid_mix(
      read_u64_np(slice, 64) ^ default_fast_secret::<4>(),
      read_u64_np(slice, 72) ^ see4,
    );
    see5 = rapid_mix(
      read_u64_np(slice, 80) ^ default_fast_secret::<5>(),
      read_u64_np(slice, 88) ^ see5,
    );
    see6 = rapid_mix(
      read_u64_np(slice, 96) ^ default_fast_secret::<6>(),
      read_u64_np(slice, 104) ^ see6,
    );
    let (_, rest) = slice.split_at(112);
    slice = rest;
  }

  // 3-stream residual: up to 2 × 48B blocks drain the remainder before the
  // tail, avoiding the serial dependency chain of the V3 nested-if tail.
  if slice.len() >= 48 {
    seed = rapid_mix(
      read_u64_np(slice, 0) ^ default_fast_secret::<0>(),
      read_u64_np(slice, 8) ^ seed,
    );
    see1 = rapid_mix(
      read_u64_np(slice, 16) ^ default_fast_secret::<1>(),
      read_u64_np(slice, 24) ^ see1,
    );
    see2 = rapid_mix(
      read_u64_np(slice, 32) ^ default_fast_secret::<2>(),
      read_u64_np(slice, 40) ^ see2,
    );
    let (_, rest) = slice.split_at(48);
    slice = rest;

    if slice.len() >= 48 {
      seed = rapid_mix(
        read_u64_np(slice, 0) ^ default_fast_secret::<0>(),
        read_u64_np(slice, 8) ^ seed,
      );
      see1 = rapid_mix(
        read_u64_np(slice, 16) ^ default_fast_secret::<1>(),
        read_u64_np(slice, 24) ^ see1,
      );
      see2 = rapid_mix(
        read_u64_np(slice, 32) ^ default_fast_secret::<2>(),
        read_u64_np(slice, 40) ^ see2,
      );
      let (_, rest) = slice.split_at(48);
      slice = rest;
    }
  }

  // Merge all accumulators into seed.
  see3 ^= see4;
  see5 ^= see6;
  seed ^= see1;
  see3 ^= see2;
  seed ^= see5;
  seed ^= see3;

  // SAFETY: data.len() > FAST_COLD_CUTOFF > 16.
  unsafe { rapidhash_fast_tail(seed, slice, data) }
}

impl FastHash for RapidHash64 {
  const OUTPUT_SIZE: usize = 8;
  type Output = u64;
  type Seed = u64;

  /// Hash with precomputed default seed — bypasses `rapidhash_seed_cpp(0)`,
  /// saving one 128-bit multiply per call.
  #[inline(always)]
  fn hash(data: &[u8]) -> Self::Output {
    #[cfg(any(target_arch = "s390x", target_arch = "powerpc64"))]
    {
      rapidhash_core::<true>(data, V3_DEFAULT_SECRETS.seed, &V3_DEFAULT_SECRETS.secrets)
    }

    #[cfg(not(any(target_arch = "s390x", target_arch = "powerpc64")))]
    {
      rapidhash_core_default::<true>(data, PRECOMPUTED_SEED_0)
    }
  }

  #[inline]
  fn hash_with_seed(seed: Self::Seed, data: &[u8]) -> Self::Output {
    dispatch::hash64_with_seed(seed, data)
  }
}

impl FastHash for RapidHash128 {
  const OUTPUT_SIZE: usize = 16;
  type Output = u128;
  type Seed = u64;

  /// Hash with precomputed default seeds — bypasses two seed-mixing multiplies
  /// per call.
  #[inline(always)]
  fn hash(data: &[u8]) -> Self::Output {
    #[cfg(any(target_arch = "s390x", target_arch = "powerpc64"))]
    {
      let lo = rapidhash_core::<true>(data, V3_DEFAULT_SECRETS.seed, &V3_DEFAULT_SECRETS.secrets) as u128;
      let hi = rapidhash_core::<true>(data, V3_DEFAULT_HI_SECRETS.seed, &V3_DEFAULT_HI_SECRETS.secrets) as u128;
      lo | (hi << 64)
    }

    #[cfg(not(any(target_arch = "s390x", target_arch = "powerpc64")))]
    {
      let lo = rapidhash_core_default::<true>(data, PRECOMPUTED_SEED_0) as u128;
      let hi = rapidhash_core_default::<true>(data, PRECOMPUTED_SEED_HI) as u128;
      lo | (hi << 64)
    }
  }

  #[inline]
  fn hash_with_seed(seed: Self::Seed, data: &[u8]) -> Self::Output {
    dispatch::hash128_with_seed(seed, data)
  }
}

impl FastHash for RapidHashFast64 {
  const OUTPUT_SIZE: usize = 8;
  type Output = u64;
  type Seed = u64;

  /// Hash with precomputed default seed — bypasses `rapidhash_seed_cpp(0)`,
  /// saving one 128-bit multiply per call.
  #[inline(always)]
  fn hash(data: &[u8]) -> Self::Output {
    if data.is_empty() {
      return FAST_EMPTY_HASH_SEED_0;
    }

    rapidhash_fast_default_core(data, PRECOMPUTED_SEED_0)
  }

  #[inline(always)]
  fn hash_with_seed(seed: Self::Seed, data: &[u8]) -> Self::Output {
    dispatch::hash64_fast_with_seed(seed, data)
  }
}

impl FastHash for RapidHashFast128 {
  const OUTPUT_SIZE: usize = 16;
  type Output = u128;
  type Seed = u64;

  /// Hash with precomputed default seed — bypasses `rapidhash_seed_cpp(0)`,
  /// saving one 128-bit multiply per call.
  #[inline(always)]
  fn hash(data: &[u8]) -> Self::Output {
    if data.is_empty() {
      return (FAST_EMPTY_HASH_SEED_0 as u128) | ((FAST_EMPTY_HASH_SEED_HI as u128) << 64);
    }

    rapidhash_fast_128_core(data, PRECOMPUTED_SEED_0, PRECOMPUTED_SEED_HI)
  }

  #[inline(always)]
  fn hash_with_seed(seed: Self::Seed, data: &[u8]) -> Self::Output {
    dispatch::hash128_fast_with_seed(seed, data)
  }
}

// ─── BuildHasher support ──────────────────────────────────────────────────

/// Streaming [`core::hash::Hasher`] backed by rapidhash-64.
///
/// Created by [`RapidBuildHasher`]. Buffers input and computes the hash
/// on [`finish`](core::hash::Hasher::finish).
#[cfg(feature = "alloc")]
#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
pub struct RapidHasher {
  buf: alloc::vec::Vec<u8>,
  seed: u64,
}

#[cfg(feature = "alloc")]
impl core::fmt::Debug for RapidHasher {
  fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
    f.debug_struct("RapidHasher")
      .field("seed", &self.seed)
      .field("buffered", &self.buf.len())
      .finish()
  }
}

#[cfg(feature = "alloc")]
impl core::hash::Hasher for RapidHasher {
  #[inline]
  fn write(&mut self, bytes: &[u8]) {
    self.buf.extend_from_slice(bytes);
  }

  #[inline]
  fn finish(&self) -> u64 {
    RapidHash64::hash_with_seed(self.seed, &self.buf)
  }
}

/// [`BuildHasher`](core::hash::BuildHasher) producing [`RapidHasher`] instances.
///
/// # Examples
///
/// ```
/// use std::collections::HashMap;
///
/// use rscrypto::hashes::fast::rapidhash::RapidBuildHasher;
///
/// let mut map: HashMap<&str, i32, RapidBuildHasher> = HashMap::with_hasher(RapidBuildHasher::new());
/// map.insert("hello", 42);
/// assert_eq!(map["hello"], 42);
/// ```
#[cfg(feature = "alloc")]
#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
#[derive(Clone, Debug)]
pub struct RapidBuildHasher {
  seed: u64,
}

#[cfg(feature = "alloc")]
impl RapidBuildHasher {
  /// Create a builder with the default seed (0).
  #[inline]
  #[must_use]
  pub const fn new() -> Self {
    Self { seed: 0 }
  }

  /// Create a builder with a custom seed.
  #[inline]
  #[must_use]
  pub const fn with_seed(seed: u64) -> Self {
    Self { seed }
  }
}

#[cfg(feature = "alloc")]
impl Default for RapidBuildHasher {
  #[inline]
  fn default() -> Self {
    Self::new()
  }
}

#[cfg(feature = "alloc")]
impl core::hash::BuildHasher for RapidBuildHasher {
  type Hasher = RapidHasher;

  #[inline]
  fn build_hasher(&self) -> Self::Hasher {
    RapidHasher {
      buf: alloc::vec::Vec::new(),
      seed: self.seed,
    }
  }
}

#[cfg(test)]
mod tests {
  use alloc::vec::Vec;

  #[cfg(not(miri))]
  use proptest::prelude::*;

  use super::{RapidHash64, RapidHash128, RapidHashFast64, RapidHashFast128, V3_HI_SEED};
  use crate::traits::FastHash;

  // -- V3 standard variant oracle (C++-compatible output) --

  #[test]
  fn smoke_v3_empty_matches_oracle() {
    let seed = 0u64;
    let ours = <RapidHash64 as crate::traits::FastHash>::hash_with_seed(seed, b"");
    let secrets = rapidhash::v3::RapidSecrets::seed_cpp(seed);
    let theirs = rapidhash::v3::rapidhash_v3_seeded(b"", &secrets);
    assert_eq!(ours, theirs);
  }

  // -- Fast variant oracle (competitor's inner module) --

  #[test]
  #[cfg(target_endian = "little")]
  fn smoke_fast_empty_matches_oracle() {
    use core::hash::Hasher;
    let seed = 0u64;
    let ours = <RapidHashFast64 as crate::traits::FastHash>::hash_with_seed(seed, b"");
    let mut h = rapidhash::fast::RapidHasher::new(seed);
    h.write(b"");
    let theirs = h.finish();
    assert_eq!(ours, theirs);
  }

  #[cfg(not(miri))]
  proptest! {
    #[test]
    fn rapidhash_v3_64_matches_oracle(seed in any::<u64>(), data in proptest::collection::vec(any::<u8>(), 0..2048)) {
      let ours = <RapidHash64 as crate::traits::FastHash>::hash_with_seed(seed, &data);
      let secrets = rapidhash::v3::RapidSecrets::seed_cpp(seed);
      let theirs = rapidhash::v3::rapidhash_v3_seeded(&data, &secrets);
      prop_assert_eq!(ours, theirs);
    }

    #[test]
    fn rapidhash128_is_two_independent_64bit_hashes(seed in any::<u64>(), data in proptest::collection::vec(any::<u8>(), 0..2048)) {
      let out = <RapidHash128 as crate::traits::FastHash>::hash_with_seed(seed, &data);
      let lo = out as u64;
      let hi = (out >> 64) as u64;

      prop_assert_eq!(lo, <RapidHash64 as crate::traits::FastHash>::hash_with_seed(seed, &data));
      prop_assert_eq!(hi, <RapidHash64 as FastHash>::hash_with_seed(seed ^ V3_HI_SEED, &data));
    }

    /// The fast variant uses the inner-algorithm core (3-stream mid-range,
    /// inner finalization). Oracle: `rapidhash::fast::RapidHasher` (the
    /// competitor's optimized inner module with AVALANCHE=false, SPONGE=true).
    ///
    /// LE-only: the competitor's inner module uses non-portable native-endian
    /// reads (`read_u64_np`), while we use LE reads for consistent hashing
    /// across platforms. On BE targets the outputs diverge by design.
    #[test]
    #[cfg(target_endian = "little")]
    fn rapidhash_fast_64_matches_inner_oracle(seed in any::<u64>(), data in proptest::collection::vec(any::<u8>(), 0..8192)) {
      use core::hash::Hasher;
      let ours = <RapidHashFast64 as crate::traits::FastHash>::hash_with_seed(seed, &data);
      let mut h = rapidhash::fast::RapidHasher::new(seed);
      h.write(&data);
      let theirs = h.finish();
      prop_assert_eq!(ours, theirs);
    }

    #[test]
    fn rapidhash_fast_128_is_two_independent_64bit_hashes(seed in any::<u64>(), data in proptest::collection::vec(any::<u8>(), 0..2048)) {
      let out = <RapidHashFast128 as crate::traits::FastHash>::hash_with_seed(seed, &data);
      let lo = out as u64;
      let hi = (out >> 64) as u64;

      prop_assert_eq!(lo, <RapidHashFast64 as crate::traits::FastHash>::hash_with_seed(seed, &data));
      prop_assert_eq!(hi, <RapidHashFast64 as FastHash>::hash_with_seed(seed ^ V3_HI_SEED, &data));
    }
  }

  fn deterministic_bytes(len: usize) -> Vec<u8> {
    let mut out = alloc::vec![0u8; len];
    let mut x = 0x243f_6a88_85a3_08d3u64;
    for (i, byte) in out.iter_mut().enumerate() {
      x = x.wrapping_mul(6364136223846793005).wrapping_add(1442695040888963407);
      *byte = (x >> 56) as u8 ^ ((i as u8).rotate_left((i & 7) as u32));
    }
    out
  }

  #[test]
  fn default_hash_matches_seed_zero() {
    let sizes = [
      0usize, 1, 2, 3, 4, 7, 8, 15, 16, 17, 31, 32, 33, 47, 48, 49, 63, 64, 65, 127, 128, 129, 241, 399, 400, 401,
      1024, 4096,
    ];

    for &len in &sizes {
      let data = deterministic_bytes(len);

      assert_eq!(
        <RapidHash64 as FastHash>::hash(&data),
        <RapidHash64 as FastHash>::hash_with_seed(0, &data)
      );
      assert_eq!(
        <RapidHash128 as FastHash>::hash(&data),
        <RapidHash128 as FastHash>::hash_with_seed(0, &data)
      );
      assert_eq!(
        <RapidHashFast64 as FastHash>::hash(&data),
        <RapidHashFast64 as FastHash>::hash_with_seed(0, &data)
      );
      assert_eq!(
        <RapidHashFast128 as FastHash>::hash(&data),
        <RapidHashFast128 as FastHash>::hash_with_seed(0, &data)
      );
    }
  }

  #[test]
  fn rapidhash_boundary_paths_match_oracles() {
    let sizes = [
      0usize, 1, 2, 3, 4, 7, 8, 15, 16, 17, 31, 32, 33, 63, 64, 65, 127, 128, 129, 241, 1024, 4096,
    ];
    let seeds = [0u64, 1u64, 0x0123_4567_89ab_cdef];

    for &seed in &seeds {
      for &len in &sizes {
        let data = deterministic_bytes(len);

        let ours_v3_64 = <RapidHash64 as crate::traits::FastHash>::hash_with_seed(seed, &data);
        let secrets = rapidhash::v3::RapidSecrets::seed_cpp(seed);
        let theirs_v3_64 = rapidhash::v3::rapidhash_v3_seeded(&data, &secrets);
        assert_eq!(
          ours_v3_64, theirs_v3_64,
          "RapidHash64 mismatch (seed={seed}, len={len})"
        );

        let ours_v3_128 = <RapidHash128 as crate::traits::FastHash>::hash_with_seed(seed, &data);
        assert_eq!(
          ours_v3_128 as u64, ours_v3_64,
          "RapidHash128 low lane mismatch (seed={seed}, len={len})"
        );
        assert_eq!(
          (ours_v3_128 >> 64) as u64,
          <RapidHash64 as crate::traits::FastHash>::hash_with_seed(seed ^ V3_HI_SEED, &data),
          "RapidHash128 high lane mismatch (seed={seed}, len={len})"
        );

        #[cfg(target_endian = "little")]
        {
          use core::hash::Hasher;

          let ours_fast_64 = <RapidHashFast64 as crate::traits::FastHash>::hash_with_seed(seed, &data);
          let mut h = rapidhash::fast::RapidHasher::new(seed);
          h.write(&data);
          let theirs_fast_64 = h.finish();
          assert_eq!(
            ours_fast_64, theirs_fast_64,
            "RapidHashFast64 mismatch (seed={seed}, len={len})"
          );

          let ours_fast_128 = <RapidHashFast128 as crate::traits::FastHash>::hash_with_seed(seed, &data);
          assert_eq!(
            ours_fast_128 as u64, ours_fast_64,
            "RapidHashFast128 low lane mismatch (seed={seed}, len={len})"
          );
          assert_eq!(
            (ours_fast_128 >> 64) as u64,
            <RapidHashFast64 as crate::traits::FastHash>::hash_with_seed(seed ^ V3_HI_SEED, &data),
            "RapidHashFast128 high lane mismatch (seed={seed}, len={len})"
          );
        }
      }
    }
  }
}