am-fs-ext4 0.5.1

Pure-Rust ext4 filesystem driver. Exposes a C ABI (fs_ext4_*) suitable for FFI from C/C++/Go/etc.
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
//! HTree hash functions for indexed directory lookup.
//!
//! Spec: kernel.org/doc/html/latest/filesystems/ext4/directory.html#hash-tree-directories
//!
//! When an ext4 directory has the `EXT4_INDEX_FL` flag, lookups go through a
//! hash tree. The hash version (in the `dx_root_info` of the directory's
//! first block) selects the algorithm used to compute a 32-bit hash from a
//! filename. The hash drives a b+tree descent to the leaf block containing
//! the entry (or NOT — leaves are still scanned linearly).
//!
//! Hash versions:
//!   0 = legacy (signed)
//!   1 = half_md4 (signed)
//!   2 = tea (signed)
//!   3 = legacy (unsigned)        — set when SUPERBLOCK flag UNSIGNED_HASH on
//!   4 = half_md4 (unsigned)
//!   5 = tea (unsigned)
//!
//! All hashes use the four 32-bit `s_hash_seed` words from the superblock as
//! initial state (or a constant default if the seed is all-zero).
//!
//! After computing, the low bit is cleared so it can never collide with the
//! HTREE_EOF sentinel value `0xFFFFFFFE`.
//!
//! The Linux implementation hashes 4-byte words built from the name; the
//! `unsigned` variants treat each byte as `u8`, the signed variants treat
//! each byte as `i8` (sign-extended into i32 then back to u32 — same bit
//! pattern as `as i8 as i32 as u32`). This matters for non-ASCII names.

#![allow(clippy::many_single_char_names)]

/// Sentinel returned when the htree walk reaches the last block.
pub const HTREE_EOF: u32 = 0xFFFF_FFFE;

/// Hash version codes (low byte of `dx_root_info.hash_version`).
#[repr(u8)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum HashVersion {
    Legacy = 0,
    HalfMd4 = 1,
    Tea = 2,
    LegacyUnsigned = 3,
    HalfMd4Unsigned = 4,
    TeaUnsigned = 5,
}

impl HashVersion {
    pub fn from_u8(v: u8) -> Option<Self> {
        match v {
            0 => Some(Self::Legacy),
            1 => Some(Self::HalfMd4),
            2 => Some(Self::Tea),
            3 => Some(Self::LegacyUnsigned),
            4 => Some(Self::HalfMd4Unsigned),
            5 => Some(Self::TeaUnsigned),
            _ => None,
        }
    }

    pub fn is_unsigned(self) -> bool {
        matches!(
            self,
            Self::LegacyUnsigned | Self::HalfMd4Unsigned | Self::TeaUnsigned
        )
    }
}

/// Result of `name_hash` — the major hash drives tree descent, the minor
/// hash differentiates entries that share the same major (collision tier).
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct NameHash {
    pub major: u32,
    pub minor: u32,
}

/// Compute the htree hash of `name` using `version` and the superblock seed.
/// Returns `None` if the version is unrecognised.
pub fn name_hash(name: &[u8], version: HashVersion, seed: &[u32; 4]) -> NameHash {
    let signed = !version.is_unsigned();
    let (mut major, minor) = match version {
        HashVersion::Legacy | HashVersion::LegacyUnsigned => (legacy_hash(name, signed), 0),
        HashVersion::HalfMd4 | HashVersion::HalfMd4Unsigned => half_md4(name, signed, seed),
        HashVersion::Tea | HashVersion::TeaUnsigned => tea_hash(name, signed, seed),
    };

    // Clear the low bit so the hash never equals HTREE_EOF (or HTREE_EOF-1).
    major &= !1;
    if major == HTREE_EOF.wrapping_sub(1) {
        major = HTREE_EOF.wrapping_sub(1) ^ 1;
    }

    NameHash { major, minor }
}

// ---------------------------------------------------------------------------
// Legacy hash
// ---------------------------------------------------------------------------

/// dx_hash_string — the original ext3 hash. Single 32-bit output.
fn legacy_hash(name: &[u8], signed: bool) -> u32 {
    let mut hash: u32 = 0x12A3FE2D;
    let mut prev: u32 = 0x37ABE8F9;
    for &b in name {
        let c = if signed { (b as i8) as i32 } else { b as i32 };
        // hash = prev + (hash * 7 + c)
        let new = prev.wrapping_add((hash.wrapping_mul(7)).wrapping_add(c as u32));
        prev = hash;
        hash = new;
    }
    hash
}

// ---------------------------------------------------------------------------
// Helpers shared by half_md4 + tea
// ---------------------------------------------------------------------------

/// Pack `len` (capped to `pad_len` bytes) into a u32 array for hashing.
/// Each output u32 is little-endian-ish: byte 0 → low 8 bits, byte 1 → next, etc.
/// Pads with the input length so equal-prefix names still hash differently.
fn str_to_le32(name: &[u8], buf: &mut [u32], signed: bool) {
    let pad_byte = name.len() as u32 & 0xFF;
    let pad = if signed {
        // sign-extend the pad value
        ((pad_byte << 24) | (pad_byte << 16) | (pad_byte << 8) | pad_byte) as i32 as u32
    } else {
        (pad_byte << 24) | (pad_byte << 16) | (pad_byte << 8) | pad_byte
    };

    for slot in buf.iter_mut() {
        *slot = pad;
    }

    let buf_capacity_bytes = buf.len() * 4;
    let mut byte_idx = 0;
    for slot in buf.iter_mut() {
        let mut word: u32 = 0;
        for shift in (0..32).step_by(8) {
            if byte_idx < name.len() {
                let b = name[byte_idx];
                let val = if signed {
                    (b as i8) as i32 as u32
                } else {
                    b as u32
                };
                word = (word & !(0xFFu32 << shift)) | ((val & 0xFF) << shift);
            } else {
                word = (word & !(0xFFu32 << shift)) | ((pad_byte & 0xFF) << shift);
            }
            byte_idx += 1;
        }
        *slot = word;
        if byte_idx >= name.len() && byte_idx >= buf_capacity_bytes {
            break;
        }
    }
}

// ---------------------------------------------------------------------------
// TEA hash
// ---------------------------------------------------------------------------

/// One round of TEA on a 4-byte message block (transformed into 2x u32) with
/// 4 key words. Updates `hash[0]` and `hash[1]` (the "buf" in dx_hash.c).
fn tea_transform(hash: &mut [u32; 4], data: &[u32; 4]) {
    let mut sum: u32 = 0;
    let delta: u32 = 0x9E3779B9;
    let mut h0 = hash[0];
    let mut h1 = hash[1];
    for _ in 0..16 {
        sum = sum.wrapping_add(delta);
        let t1 = ((h1 << 4).wrapping_add(data[0]))
            ^ (h1.wrapping_add(sum))
            ^ ((h1 >> 5).wrapping_add(data[1]));
        h0 = h0.wrapping_add(t1);
        let t2 = ((h0 << 4).wrapping_add(data[2]))
            ^ (h0.wrapping_add(sum))
            ^ ((h0 >> 5).wrapping_add(data[3]));
        h1 = h1.wrapping_add(t2);
    }
    hash[0] = hash[0].wrapping_add(h0);
    hash[1] = hash[1].wrapping_add(h1);
}

fn tea_hash(name: &[u8], signed: bool, seed: &[u32; 4]) -> (u32, u32) {
    let mut hash = init_state(seed);
    let mut remaining = name;
    let mut block = [0u32; 4];
    while !remaining.is_empty() {
        let take = remaining.len().min(16);
        str_to_le32(&remaining[..take], &mut block, signed);
        tea_transform(&mut hash, &block);
        if take >= remaining.len() {
            break;
        }
        remaining = &remaining[take..];
    }
    if name.is_empty() {
        // Even an empty name needs one round so the initial seed is consumed.
        str_to_le32(&[], &mut block, signed);
        tea_transform(&mut hash, &block);
    }
    (hash[0], hash[1])
}

// ---------------------------------------------------------------------------
// half_md4 (a stripped-down MD4 variant)
// ---------------------------------------------------------------------------

#[inline]
fn rol(x: u32, n: u32) -> u32 {
    x.rotate_left(n)
}

#[inline]
fn f(x: u32, y: u32, z: u32) -> u32 {
    z ^ (x & (y ^ z))
}
#[inline]
fn g(x: u32, y: u32, z: u32) -> u32 {
    (x & y) + ((x ^ y) & z)
}
#[inline]
fn h(x: u32, y: u32, z: u32) -> u32 {
    x ^ y ^ z
}

fn ff(a: &mut u32, b: u32, c: u32, d: u32, x: u32, s: u32) {
    *a = a.wrapping_add(f(b, c, d)).wrapping_add(x);
    *a = rol(*a, s);
}
fn gg(a: &mut u32, b: u32, c: u32, d: u32, x: u32, s: u32) {
    *a = a
        .wrapping_add(g(b, c, d))
        .wrapping_add(x)
        .wrapping_add(0x5A82_7999);
    *a = rol(*a, s);
}
fn hh(a: &mut u32, b: u32, c: u32, d: u32, x: u32, s: u32) {
    *a = a
        .wrapping_add(h(b, c, d))
        .wrapping_add(x)
        .wrapping_add(0x6ED9_EBA1);
    *a = rol(*a, s);
}

/// half_md4_transform — Linux's stripped MD4 variant. Updates `hash` and
/// returns nothing; the data is consumed in two halves (8 words = 32 bytes).
fn half_md4_transform(hash: &mut [u32; 4], data: [u32; 8]) -> u32 {
    let (mut a, mut b, mut c, mut d) = (hash[0], hash[1], hash[2], hash[3]);

    // Round 1
    ff(&mut a, b, c, d, data[0], 3);
    ff(&mut d, a, b, c, data[1], 7);
    ff(&mut c, d, a, b, data[2], 11);
    ff(&mut b, c, d, a, data[3], 19);
    ff(&mut a, b, c, d, data[4], 3);
    ff(&mut d, a, b, c, data[5], 7);
    ff(&mut c, d, a, b, data[6], 11);
    ff(&mut b, c, d, a, data[7], 19);

    // Round 2
    gg(&mut a, b, c, d, data[1], 3);
    gg(&mut d, a, b, c, data[3], 5);
    gg(&mut c, d, a, b, data[5], 9);
    gg(&mut b, c, d, a, data[7], 13);
    gg(&mut a, b, c, d, data[0], 3);
    gg(&mut d, a, b, c, data[2], 5);
    gg(&mut c, d, a, b, data[4], 9);
    gg(&mut b, c, d, a, data[6], 13);

    // Round 3
    hh(&mut a, b, c, d, data[3], 3);
    hh(&mut d, a, b, c, data[7], 9);
    hh(&mut c, d, a, b, data[2], 11);
    hh(&mut b, c, d, a, data[6], 15);
    hh(&mut a, b, c, d, data[1], 3);
    hh(&mut d, a, b, c, data[5], 9);
    hh(&mut c, d, a, b, data[0], 11);
    hh(&mut b, c, d, a, data[4], 15);

    hash[0] = hash[0].wrapping_add(a);
    hash[1] = hash[1].wrapping_add(b);
    hash[2] = hash[2].wrapping_add(c);
    hash[3] = hash[3].wrapping_add(d);
    hash[1] // major hash — kernel returns buf[1]
}

fn half_md4(name: &[u8], signed: bool, seed: &[u32; 4]) -> (u32, u32) {
    let mut hash = init_state(seed);
    let mut remaining = name;
    let mut block = [0u32; 8];
    let mut major = 0u32;
    while !remaining.is_empty() {
        let take = remaining.len().min(32);
        str_to_le32(&remaining[..take], &mut block, signed);
        major = half_md4_transform(&mut hash, block);
        if take >= remaining.len() {
            break;
        }
        remaining = &remaining[take..];
    }
    if name.is_empty() {
        str_to_le32(&[], &mut block, signed);
        major = half_md4_transform(&mut hash, block);
    }
    let minor = hash[2];
    (major, minor)
}

// ---------------------------------------------------------------------------
// Common init
// ---------------------------------------------------------------------------

/// Initial hash state. If the superblock seed is all-zero, use the spec
/// default constants; otherwise use the seed verbatim.
fn init_state(seed: &[u32; 4]) -> [u32; 4] {
    if seed.iter().all(|&w| w == 0) {
        [0x6745_2301, 0xEFCD_AB89, 0x98BA_DCFE, 0x1032_5476]
    } else {
        *seed
    }
}

// ---------------------------------------------------------------------------
// Tests
// ---------------------------------------------------------------------------

#[cfg(test)]
mod tests {
    use super::*;

    fn empty_seed() -> [u32; 4] {
        [0; 4]
    }

    #[test]
    fn legacy_distinguishes_names() {
        let s = empty_seed();
        let h1 = name_hash(b"foo", HashVersion::Legacy, &s);
        let h2 = name_hash(b"bar", HashVersion::Legacy, &s);
        let h3 = name_hash(b"foo", HashVersion::Legacy, &s);
        assert_ne!(h1.major, h2.major, "different names → different majors");
        assert_eq!(h1, h3, "deterministic");
    }

    #[test]
    fn tea_distinguishes_names() {
        let s = empty_seed();
        let h1 = name_hash(b"hello", HashVersion::Tea, &s);
        let h2 = name_hash(b"world", HashVersion::Tea, &s);
        assert_ne!(h1.major, h2.major);
        assert_ne!(h1.minor, h2.minor);
    }

    #[test]
    fn half_md4_distinguishes_names() {
        let s = empty_seed();
        let h1 = name_hash(b"document.txt", HashVersion::HalfMd4, &s);
        let h2 = name_hash(b"document.bak", HashVersion::HalfMd4, &s);
        assert_ne!(h1.major, h2.major);
    }

    #[test]
    fn low_bit_always_clear() {
        let s = empty_seed();
        for name in [b"a".as_slice(), b"ab", b"abc", b"abcdefghij", b""] {
            for v in [HashVersion::Legacy, HashVersion::HalfMd4, HashVersion::Tea] {
                let h = name_hash(name, v, &s);
                assert_eq!(h.major & 1, 0, "version={v:?} name={name:?}");
            }
        }
    }

    #[test]
    fn signed_vs_unsigned_diverge_on_high_bytes() {
        let s = empty_seed();
        let name = &[0xC3, 0xA9]; // "é" in UTF-8 → high-bit bytes
        let signed = name_hash(name, HashVersion::Legacy, &s);
        let unsigned = name_hash(name, HashVersion::LegacyUnsigned, &s);
        assert_ne!(signed.major, unsigned.major);
    }

    #[test]
    fn version_recognition_round_trip() {
        for v in 0..=5 {
            let parsed = HashVersion::from_u8(v).expect("known version");
            assert_eq!(parsed as u8, v);
        }
        assert!(HashVersion::from_u8(99).is_none());
    }

    #[test]
    fn empty_name_does_not_panic() {
        let s = empty_seed();
        let _ = name_hash(b"", HashVersion::Legacy, &s);
        let _ = name_hash(b"", HashVersion::Tea, &s);
        let _ = name_hash(b"", HashVersion::HalfMd4, &s);
    }

    // --- init_state ---

    #[test]
    fn init_state_zero_seed_returns_md4_constants() {
        let state = init_state(&[0; 4]);
        assert_eq!(state, [0x6745_2301, 0xEFCD_AB89, 0x98BA_DCFE, 0x1032_5476]);
    }

    #[test]
    fn init_state_nonzero_seed_returns_verbatim() {
        let seed = [0xDEAD_BEEF, 0xCAFE_BABE, 0x1234_5678, 0x9ABC_DEF0];
        assert_eq!(init_state(&seed), seed);
    }

    #[test]
    fn init_state_partial_nonzero_is_not_zero_seed() {
        // Only one word non-zero — still uses seed verbatim, not defaults.
        let seed = [0, 0, 0, 1];
        assert_ne!(init_state(&seed)[0], 0x6745_2301);
        assert_eq!(init_state(&seed), seed);
    }

    // --- rol ---

    #[test]
    fn rol_shift_by_one() {
        assert_eq!(rol(1, 1), 2);
        assert_eq!(rol(0x8000_0000, 1), 1); // wraps MSB to LSB
    }

    #[test]
    fn rol_full_rotation_is_identity() {
        assert_eq!(rol(0xDEAD_BEEF, 32), 0xDEAD_BEEF);
    }

    #[test]
    fn rol_matches_rotate_left() {
        assert_eq!(rol(0x1234_5678, 7), 0x1234_5678u32.rotate_left(7));
    }

    // --- f / g / h ---

    #[test]
    fn f_acts_as_mux() {
        // f(x, y, z) = z ^ (x & (y ^ z))
        // When x=all-ones: f = z ^ (y^z) = y
        assert_eq!(f(u32::MAX, 0xAAAA_AAAA, 0x5555_5555), 0xAAAA_AAAA);
        // When x=all-zeros: f = z ^ 0 = z
        assert_eq!(f(0, 0xAAAA_AAAA, 0x5555_5555), 0x5555_5555);
    }

    #[test]
    fn g_is_majority() {
        // g(x, y, z) = (x&y) + ((x^y)&z) — majority function
        // majority of (1,1,0): expect 1 (1&1 + (1^1)&0 = 1 + 0 = 1)
        assert_eq!(g(1, 1, 0), 1);
        // majority of (0,0,1): expect 0
        assert_eq!(g(0, 0, 1), 0);
        // majority of (1,1,1): all-ones
        assert_eq!(g(u32::MAX, u32::MAX, u32::MAX), u32::MAX);
    }

    #[test]
    fn h_is_xor3() {
        assert_eq!(
            h(0xAAAA_AAAA, 0x5555_5555, 0xF0F0_F0F0),
            0xAAAA_AAAA ^ 0x5555_5555 ^ 0xF0F0_F0F0
        );
        // x ^ x ^ x = (x^x) ^ x = 0 ^ x = x
        let x = 0xDEAD_BEEF_u32;
        assert_eq!(h(x, x, x), x);
        assert_eq!(h(0, 0, 0), 0);
        assert_eq!(h(u32::MAX, 0, 0), u32::MAX);
    }

    // --- legacy_hash ---

    #[test]
    fn legacy_hash_empty_returns_initial() {
        // No iterations: hash stays at 0x12A3FE2D.
        assert_eq!(legacy_hash(b"", true), 0x12A3FE2D);
        assert_eq!(legacy_hash(b"", false), 0x12A3FE2D);
    }

    #[test]
    fn legacy_hash_deterministic() {
        assert_eq!(legacy_hash(b"hello", true), legacy_hash(b"hello", true));
    }

    #[test]
    fn legacy_hash_differs_by_input() {
        assert_ne!(legacy_hash(b"foo", true), legacy_hash(b"bar", true));
    }

    #[test]
    fn legacy_hash_signed_vs_unsigned_differs_on_high_byte() {
        // 0x80 is -128 as i8, +128 as u8 — signed and unsigned paths diverge.
        let name = &[0x80u8];
        assert_ne!(legacy_hash(name, true), legacy_hash(name, false));
    }

    // --- str_to_le32 ---

    #[test]
    fn str_to_le32_packs_bytes_lsb_first() {
        let mut buf = [0u32; 1];
        str_to_le32(b"abcd", &mut buf, false);
        // 'a'=0x61, 'b'=0x62, 'c'=0x63, 'd'=0x64 → little-endian u32 = 0x64636261
        assert_eq!(buf[0], 0x6463_6261);
    }

    #[test]
    fn str_to_le32_pads_short_input_with_len() {
        let mut buf = [0u32; 1];
        // "ab" → 2 bytes; pad_byte = 2; pad fills remaining byte slots.
        str_to_le32(b"ab", &mut buf, false);
        // bytes: [0x61, 0x62, 0x02, 0x02] → 0x02026261
        assert_eq!(buf[0], 0x0202_6261);
    }

    #[test]
    fn str_to_le32_empty_fills_with_zero_pad() {
        let mut buf = [0u32; 1];
        // Empty name: pad_byte = 0 (len=0). All bytes = 0.
        str_to_le32(b"", &mut buf, false);
        assert_eq!(buf[0], 0x0000_0000);
    }

    // --- tea_transform ---

    #[test]
    fn tea_transform_is_deterministic() {
        let mut h1 = [0x6745_2301u32, 0xEFCD_AB89, 0, 0];
        let mut h2 = [0x6745_2301u32, 0xEFCD_AB89, 0, 0];
        let data = [1u32, 2, 3, 4];
        tea_transform(&mut h1, &data);
        tea_transform(&mut h2, &data);
        assert_eq!(h1, h2);
    }

    #[test]
    fn tea_transform_modifies_h0_and_h1() {
        let original = [0x6745_2301u32, 0xEFCD_AB89, 0x1234_5678, 0xABCD_EF01];
        let mut hash = original;
        tea_transform(&mut hash, &[0u32; 4]);
        assert_ne!(hash[0], original[0]);
        assert_ne!(hash[1], original[1]);
        // h[2] and h[3] are key material; tea_transform does not write them
        assert_eq!(hash[2], original[2]);
        assert_eq!(hash[3], original[3]);
    }

    // --- half_md4_transform ---

    #[test]
    fn half_md4_transform_is_deterministic() {
        let mut h1 = [0x6745_2301u32, 0xEFCD_AB89, 0x98BA_DCFE, 0x1032_5476];
        let mut h2 = [0x6745_2301u32, 0xEFCD_AB89, 0x98BA_DCFE, 0x1032_5476];
        let data = [1u32, 2, 3, 4, 5, 6, 7, 8];
        let r1 = half_md4_transform(&mut h1, data);
        let r2 = half_md4_transform(&mut h2, data);
        assert_eq!(r1, r2);
        assert_eq!(h1, h2);
    }

    #[test]
    fn half_md4_transform_return_equals_hash1() {
        let mut hash = [0x6745_2301u32, 0xEFCD_AB89, 0x98BA_DCFE, 0x1032_5476];
        let ret = half_md4_transform(&mut hash, [0u32; 8]);
        assert_eq!(ret, hash[1]);
    }

    #[test]
    fn half_md4_transform_updates_all_words() {
        let original = [0x6745_2301u32, 0xEFCD_AB89, 0x98BA_DCFE, 0x1032_5476];
        let mut hash = original;
        half_md4_transform(&mut hash, [1u32; 8]);
        for i in 0..4 {
            assert_ne!(hash[i], original[i], "word {i} should change");
        }
    }
}