purecrypto 0.6.2

A pure-Rust cryptography toolkit with no foreign-code dependencies, from constant-time primitives up to keys, X.509 and TLS.
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
//! DTLS 1.3 record framing (RFC 9147 §4).
//!
//! DTLS 1.3 replaces the legacy 13-byte header used for protected records
//! with a compact "unified header" whose layout is dictated by a flag byte
//! and whose sequence number is encrypted using a per-direction `sn_key`.
//!
//! ```text
//!  0 1 2 3 4 5 6 7
//! +-+-+-+-+-+-+-+-+
//! |0|0|1|C|S|L|E E|   <- first byte
//! +-+-+-+-+-+-+-+-+
//!
//! struct {
//!     uint8  unified_hdr_first_byte;
//!     opaque connection_id[len];                       // iff C = 1
//!     uint8 | uint16 sequence_number_lo;               // S picks 8/16-bit
//!     uint16 length;                                   // iff L = 1
//!     opaque encrypted_record[length];                 // ciphertext + tag
//! } DTLSCiphertext;
//! ```
//!
//! On the wire the sequence-number bytes are XORed with a 1- or 2-byte mask
//! derived from the AEAD-tied `sn_key` and the first 16 bytes of the
//! encrypted record body (RFC 9147 §4.2.3). The receiver reverses the XOR
//! before reconstructing the full 48-bit sequence number against its
//! expected next sequence per RFC 9147 §4.2.2.
//!
//! Plaintext records (e.g. an initial ClientHello on a fresh connection,
//! before keys are derived) still use the legacy DTLS 1.2 13-byte header
//! from [`super::record`].
//!
//! This commit lands the framing only; the DTLS 1.3 state machine and ACK
//! reliability layer build on top in subsequent commits.

#![allow(dead_code)]

use crate::cipher::{Aes128, Aes256, BlockCipher, ChaCha20};
use crate::tls::Error;
use crate::tls::crypto::{AeadAlg, SuiteParams};
use alloc::vec::Vec;

/// Fixed top 3 bits of every DTLS 1.3 protected record's first byte: `001`.
const UNIFIED_HDR_PREFIX: u8 = 0b0010_0000;
/// Mask covering the prefix bits we match against [`UNIFIED_HDR_PREFIX`].
const UNIFIED_HDR_PREFIX_MASK: u8 = 0b1110_0000;
/// Connection-ID-present flag.
const FLAG_CID: u8 = 0b0001_0000;
/// Sequence-number-is-16-bit flag (else 8-bit).
const FLAG_SEQ_16: u8 = 0b0000_1000;
/// Length-field-present flag (else implicit: last record in datagram).
const FLAG_LENGTH: u8 = 0b0000_0100;
/// Mask for the epoch's low 2 bits in the first byte.
const FLAG_EPOCH_LO2: u8 = 0b0000_0011;

/// Mask covering the 48 valid bits of a DTLS sequence number.
const SEQ_MASK_48: u64 = (1u64 << 48) - 1;

/// Parsed DTLS 1.3 unified record header.
#[derive(Debug, Clone, Copy)]
pub(crate) struct UnifiedHeader {
    /// True for the encrypted DTLS-1.3 record; false (or absent path)
    /// for plaintext records that still use the legacy 13-byte header.
    pub(crate) is_ciphertext: bool,
    /// Epoch lower 2 bits as encoded in the first byte.
    pub(crate) epoch_low2: u8,
    /// Wire sequence number (after the mask was reversed) — 8 or 16 bits.
    /// Always widened to `u16`; for the 8-bit form only the low byte is
    /// meaningful.
    pub(crate) seq_low: u16,
    /// True if the on-wire seq was 16-bit, false if 8-bit. Callers
    /// reconstruct the full 48-bit seq from `epoch` + this low half plus
    /// their own monotonic counter (see [`reconstruct_seq`]).
    pub(crate) seq_is_16bit: bool,
    /// True if the record carried an explicit length; false means it
    /// occupies the rest of the datagram.
    pub(crate) has_length: bool,
    /// True if a Connection ID field was present. We don't support CID
    /// yet — set false in `encode_record`, returning [`Error::IllegalParameter`]
    /// in `decode_record` if encountered.
    pub(crate) has_cid: bool,
    /// Total bytes consumed by the header (1 + maybe 1/2 seq + maybe 2 len).
    pub(crate) header_len: usize,
}

/// Reconstructs the full 48-bit sequence number from a wire low-half and
/// the receiver's `expected_seq` (typically the next-expected seq value,
/// i.e. `last_received + 1`).
///
/// RFC 9147 §4.2.2: pick the candidate full sequence number whose low
/// bits match the wire value AND that is numerically closest to
/// `expected_seq`. We implement that by considering the three candidates
/// `expected_high - delta`, `expected_high`, and `expected_high + delta`
/// (where `delta` is the modulus, 2^8 or 2^16) and returning the one
/// with the smallest absolute distance.
pub(crate) fn reconstruct_seq(seq_low: u16, seq_is_16bit: bool, expected_seq: u64) -> u64 {
    let (modulus_bits, mask) = if seq_is_16bit {
        (16u32, 0xFFFFu64)
    } else {
        (8u32, 0xFFu64)
    };
    let modulus = 1u64 << modulus_bits;
    let low = (seq_low as u64) & mask;

    // The base candidate replaces `expected_seq`'s low bits with `low`.
    let expected_high = expected_seq & !mask;
    let base = expected_high | low;

    // Three candidates: one modulus below, the base, and one modulus above.
    // We saturate at the 48-bit boundary to avoid producing illegal seqs.
    let candidates = [
        base.checked_sub(modulus),
        Some(base),
        base.checked_add(modulus),
    ];

    let mut best = base;
    let mut best_dist = abs_diff(base, expected_seq);
    for c in candidates.iter().flatten() {
        if *c > SEQ_MASK_48 {
            continue;
        }
        let d = abs_diff(*c, expected_seq);
        if d < best_dist {
            best = *c;
            best_dist = d;
        }
    }
    best
}

#[inline]
fn abs_diff(a: u64, b: u64) -> u64 {
    a.abs_diff(b)
}

/// Encodes one DTLS 1.3 ciphertext record into `out`.
///
/// `sn_mask` is the 2-byte mask (or 1 byte if `seq_is_16bit` is false)
/// derived from `sn_key` and the first 16 bytes of `encrypted_payload`.
/// The mask is XORed into the on-wire sequence number bytes; the
/// `encrypted_payload` itself is written unchanged.
///
/// `omit_length` must only be true when this record is the LAST one in
/// its UDP datagram, per RFC 9147 §4.2.
///
/// Connection IDs are not supported in this commit; the `C` bit is always
/// cleared on output.
pub(crate) fn encode_record(
    out: &mut Vec<u8>,
    epoch: u16,
    seq: u64,
    seq_is_16bit: bool,
    omit_length: bool,
    encrypted_payload: &[u8],
    sn_mask: &[u8],
) {
    debug_assert!(seq <= SEQ_MASK_48, "DTLS seq must fit in 48 bits");
    let expected_mask_len = if seq_is_16bit { 2 } else { 1 };
    debug_assert_eq!(
        sn_mask.len(),
        expected_mask_len,
        "sn_mask length must match seq_is_16bit",
    );

    let mut first = UNIFIED_HDR_PREFIX;
    if seq_is_16bit {
        first |= FLAG_SEQ_16;
    }
    if !omit_length {
        first |= FLAG_LENGTH;
    }
    first |= (epoch as u8) & FLAG_EPOCH_LO2;
    out.push(first);

    // Connection ID: not yet supported — `C` bit stays clear, no bytes emitted.

    if seq_is_16bit {
        let seq_bytes = (seq as u16).to_be_bytes();
        out.push(seq_bytes[0] ^ sn_mask[0]);
        out.push(seq_bytes[1] ^ sn_mask[1]);
    } else {
        out.push((seq as u8) ^ sn_mask[0]);
    }

    if !omit_length {
        out.extend_from_slice(&(encrypted_payload.len() as u16).to_be_bytes());
    }
    out.extend_from_slice(encrypted_payload);
}

/// Parses one DTLS 1.3 ciphertext record from the start of `buf`.
///
/// Returns the unified header plus a slice referencing the still-encrypted
/// record body. The caller is expected to:
///
/// 1. Identify the body slice (using `header.header_len` and either
///    `header.has_length` or the remaining datagram size),
/// 2. Compute `sn_mask` from `sn_key` and the first 16 bytes of that body,
/// 3. Pass that mask back in here so the sequence number can be unmasked.
///
/// Because of step 2, the caller has to know where the body begins before
/// it can compute the mask, but the header length depends only on the
/// flag byte — not on the sequence number. So [`decode_record`] is in
/// practice called twice on the wire: once with a zero mask just to
/// locate the body, and once with the real mask to unmask the seq. The
/// helper [`peek_header_layout`] performs the cheaper first pass.
///
/// The returned ciphertext slice covers `encrypted_payload` exactly: tag
/// included, header bytes excluded. When the L bit was absent the slice
/// runs to the end of `buf`.
pub(crate) fn decode_record<'a>(
    buf: &'a [u8],
    sn_mask: &[u8],
) -> Result<(UnifiedHeader, &'a [u8]), Error> {
    if buf.is_empty() {
        return Err(Error::Decode);
    }
    let first = buf[0];
    if (first & UNIFIED_HDR_PREFIX_MASK) != UNIFIED_HDR_PREFIX {
        return Err(Error::Decode);
    }
    let has_cid = (first & FLAG_CID) != 0;
    if has_cid {
        // RFC 9146 connection IDs are out of scope for this commit.
        return Err(Error::IllegalParameter);
    }
    let seq_is_16bit = (first & FLAG_SEQ_16) != 0;
    let has_length = (first & FLAG_LENGTH) != 0;
    let epoch_low2 = first & FLAG_EPOCH_LO2;

    let seq_bytes = if seq_is_16bit { 2usize } else { 1usize };
    if sn_mask.len() != seq_bytes {
        return Err(Error::Decode);
    }
    let len_bytes = if has_length { 2usize } else { 0usize };
    let header_len = 1 + seq_bytes + len_bytes;
    if buf.len() < header_len {
        return Err(Error::Decode);
    }

    let seq_low = if seq_is_16bit {
        let hi = buf[1] ^ sn_mask[0];
        let lo = buf[2] ^ sn_mask[1];
        ((hi as u16) << 8) | (lo as u16)
    } else {
        (buf[1] ^ sn_mask[0]) as u16
    };

    let body_start = header_len;
    let body_end = if has_length {
        let off = 1 + seq_bytes;
        let len = u16::from_be_bytes([buf[off], buf[off + 1]]) as usize;
        let end = body_start + len;
        if end > buf.len() {
            return Err(Error::Decode);
        }
        end
    } else {
        buf.len()
    };

    Ok((
        UnifiedHeader {
            is_ciphertext: true,
            epoch_low2,
            seq_low,
            seq_is_16bit,
            has_length,
            has_cid,
            header_len,
        },
        &buf[body_start..body_end],
    ))
}

/// Peeks at the layout of the unified header without unmasking the seq.
///
/// Returns `(header_len, body_len)` where `body_len` is the explicit
/// length when L=1 or `buf.len() - header_len` when L=0. Used by callers
/// that need to locate the ciphertext to compute the sn_mask before they
/// can finish decoding.
pub(crate) fn peek_header_layout(buf: &[u8]) -> Result<(usize, usize), Error> {
    if buf.is_empty() {
        return Err(Error::Decode);
    }
    let first = buf[0];
    if (first & UNIFIED_HDR_PREFIX_MASK) != UNIFIED_HDR_PREFIX {
        return Err(Error::Decode);
    }
    if (first & FLAG_CID) != 0 {
        return Err(Error::IllegalParameter);
    }
    let seq_is_16bit = (first & FLAG_SEQ_16) != 0;
    let has_length = (first & FLAG_LENGTH) != 0;
    let seq_bytes = if seq_is_16bit { 2 } else { 1 };
    let len_bytes = if has_length { 2 } else { 0 };
    let header_len = 1 + seq_bytes + len_bytes;
    if buf.len() < header_len {
        return Err(Error::Decode);
    }
    let body_len = if has_length {
        let off = 1 + seq_bytes;
        let len = u16::from_be_bytes([buf[off], buf[off + 1]]) as usize;
        if header_len + len > buf.len() {
            return Err(Error::Decode);
        }
        len
    } else {
        buf.len() - header_len
    };
    Ok((header_len, body_len))
}

/// Computes the DTLS 1.3 sequence-number mask under an AES-128 `sn_key`.
///
/// Per RFC 9147 §4.2.3, the mask is the first 2 bytes of
/// `AES-ECB-Encrypt(sn_key, ciphertext[..16])`. `ciphertext` must be at
/// least 16 bytes long — the AEAD tag alone is 16 bytes, so a real
/// ciphertext always satisfies that bound. Shorter inputs are zero-padded
/// in this helper to keep the API total.
pub(crate) fn sn_mask_aes128(sn_key: &[u8; 16], ciphertext: &[u8]) -> [u8; 2] {
    let cipher = Aes128::new(sn_key);
    sn_mask_block(&cipher, ciphertext)
}

/// Like [`sn_mask_aes128`] but using an AES-256 sn_key (32 bytes).
pub(crate) fn sn_mask_aes256(sn_key: &[u8; 32], ciphertext: &[u8]) -> [u8; 2] {
    let cipher = Aes256::new(sn_key);
    sn_mask_block(&cipher, ciphertext)
}

#[inline]
fn sn_mask_block<C: BlockCipher>(cipher: &C, ciphertext: &[u8]) -> [u8; 2] {
    let mut block = [0u8; 16];
    let take = ciphertext.len().min(16);
    block[..take].copy_from_slice(&ciphertext[..take]);
    cipher.encrypt_block(&mut block);
    [block[0], block[1]]
}

/// Derives the 2-byte DTLS 1.3 sequence-number protection mask for the
/// ChaCha20-Poly1305 AEAD (RFC 9147 §4.2.3).
///
/// The first 16 bytes of `ciphertext` form the sample: the low 32 bits
/// are the ChaCha20 block counter (little-endian, sample[0..4]), and the
/// high 96 bits are the nonce (sample[4..16]). The mask is the first 2
/// bytes of the resulting 64-byte keystream block. If `ciphertext` is
/// shorter than 16 bytes it is right-padded with zeros (matching the
/// AES helpers in this file). The counter / nonce split mirrors the
/// QUIC header-protection construction in [`crate::quic::crypto`]
/// (RFC 9001 §5.4.4), which the TLS working group adopted as the
/// reference for the DTLS ChaCha mask.
pub(crate) fn sn_mask_chacha20(sn_key: &[u8; 32], ciphertext: &[u8]) -> [u8; 2] {
    let mut sample = [0u8; 16];
    let take = ciphertext.len().min(16);
    sample[..take].copy_from_slice(&ciphertext[..take]);
    let counter = u32::from_le_bytes([sample[0], sample[1], sample[2], sample[3]]);
    let mut nonce = [0u8; 12];
    nonce.copy_from_slice(&sample[4..16]);
    let mut block = [0u8; 64];
    ChaCha20::new(sn_key).apply_keystream(&nonce, counter, &mut block);
    [block[0], block[1]]
}

/// Dispatches the DTLS 1.3 sequence-number mask computation on the
/// negotiated cipher suite's AEAD (RFC 9147 §4.2.3). The `sn_key` length
/// is determined by the suite at derivation time and must match the AEAD
/// key length (16 for AES-128-GCM, 32 for AES-256-GCM and
/// ChaCha20-Poly1305). A size mismatch is a crate-internal invariant
/// violation and is reported as [`Error::InappropriateState`].
pub(crate) fn sn_mask_for(
    suite: SuiteParams,
    sn_key: &[u8],
    ciphertext: &[u8],
) -> Result<[u8; 2], Error> {
    match suite.aead {
        AeadAlg::Aes128Gcm => {
            let k: &[u8; 16] = sn_key.try_into().map_err(|_| Error::InappropriateState)?;
            Ok(sn_mask_aes128(k, ciphertext))
        }
        AeadAlg::Aes256Gcm => {
            let k: &[u8; 32] = sn_key.try_into().map_err(|_| Error::InappropriateState)?;
            Ok(sn_mask_aes256(k, ciphertext))
        }
        AeadAlg::ChaCha20Poly1305 => {
            let k: &[u8; 32] = sn_key.try_into().map_err(|_| Error::InappropriateState)?;
            Ok(sn_mask_chacha20(k, ciphertext))
        }
    }
}

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

    /// Dummy ciphertext used to exercise the codec — value-independent,
    /// 32 bytes so it's longer than one AES block.
    fn dummy_ct() -> Vec<u8> {
        (0u8..32).collect()
    }

    #[test]
    fn header_roundtrip_16bit_seq_with_length() {
        let mut out = Vec::new();
        let mask = [0u8; 2];
        let ct = dummy_ct();
        encode_record(&mut out, 1, 42, true, false, &ct, &mask);

        // first byte: 001_C=0_S=1_L=1_EE=01 = 0b0010_1101 = 0x2D
        assert_eq!(out[0], 0b0010_1101);
        // 2-byte seq (XORed with all-zero mask) = 0x00 0x2A
        assert_eq!(&out[1..3], &[0x00, 0x2A]);
        // length = 32
        assert_eq!(&out[3..5], &[0x00, 0x20]);
        assert_eq!(&out[5..], ct.as_slice());

        let (hdr, body) = decode_record(&out, &mask).unwrap();
        assert!(hdr.is_ciphertext);
        assert_eq!(hdr.epoch_low2, 0b01);
        assert!(hdr.seq_is_16bit);
        assert_eq!(hdr.seq_low, 42);
        assert!(hdr.has_length);
        assert!(!hdr.has_cid);
        assert_eq!(hdr.header_len, 1 + 2 + 2);
        assert_eq!(body, ct.as_slice());
    }

    #[test]
    fn header_roundtrip_8bit_seq() {
        let mut out = Vec::new();
        let mask = [0u8; 1];
        let ct = dummy_ct();
        encode_record(&mut out, 2, 0x0055, false, false, &ct, &mask);

        // first byte: 001_0_0_1_10 — S=0, L=1, EE=10 — = 0b0010_0110 = 0x26
        assert_eq!(out[0], 0b0010_0110);
        assert_eq!(out[1], 0x55);
        assert_eq!(&out[2..4], &[0x00, 0x20]);
        assert_eq!(&out[4..], ct.as_slice());

        let (hdr, body) = decode_record(&out, &mask).unwrap();
        assert_eq!(hdr.epoch_low2, 0b10);
        assert!(!hdr.seq_is_16bit);
        assert_eq!(hdr.seq_low, 0x55);
        assert!(hdr.has_length);
        assert_eq!(hdr.header_len, 1 + 1 + 2);
        assert_eq!(body, ct.as_slice());
    }

    #[test]
    fn header_roundtrip_length_omitted() {
        // L=0: the body runs to the end of the datagram.
        let mut out = Vec::new();
        let mask = [0u8; 2];
        let ct = dummy_ct();
        encode_record(&mut out, 0, 7, true, true, &ct, &mask);

        // first byte: 001 0_0_0_00 with S=1 -> 0b0010_1000 = 0x28
        assert_eq!(out[0], 0b0010_1000);
        // seq (2 bytes), then ciphertext directly — no length prefix.
        assert_eq!(&out[1..3], &[0x00, 0x07]);
        assert_eq!(&out[3..], ct.as_slice());
        assert_eq!(out.len(), 1 + 2 + ct.len());

        let (hdr, body) = decode_record(&out, &mask).unwrap();
        assert!(!hdr.has_length);
        assert!(hdr.seq_is_16bit);
        assert_eq!(hdr.seq_low, 7);
        assert_eq!(hdr.header_len, 1 + 2);
        assert_eq!(body, ct.as_slice());
    }

    #[test]
    fn cid_bit_rejected() {
        // C bit set; rest doesn't matter.
        let bad = vec![0b0011_0101u8, 0, 0, 0, 0];
        match decode_record(&bad, &[0u8; 2]) {
            Err(Error::IllegalParameter) => {}
            other => panic!("expected IllegalParameter, got {other:?}"),
        }
        // peek_header_layout enforces the same rule.
        match peek_header_layout(&bad) {
            Err(Error::IllegalParameter) => {}
            other => panic!("expected IllegalParameter, got {other:?}"),
        }
    }

    #[test]
    fn non_dtls13_prefix_rejected() {
        // First three bits != 001.
        let bad = vec![0b1010_0101u8, 0, 0, 0, 0];
        match decode_record(&bad, &[0u8; 2]) {
            Err(Error::Decode) => {}
            other => panic!("expected Decode, got {other:?}"),
        }
    }

    #[test]
    fn truncated_buffer_rejected() {
        // L=1 with body length 32 but the buffer ends after the header.
        let mut out = Vec::new();
        let mask = [0u8; 2];
        let ct = dummy_ct();
        encode_record(&mut out, 0, 1, true, false, &ct, &mask);
        // Drop the last byte of the ciphertext.
        out.pop();
        match decode_record(&out, &mask) {
            Err(Error::Decode) => {}
            other => panic!("expected Decode, got {other:?}"),
        }
    }

    #[test]
    fn reconstruct_seq_simple() {
        // expected_seq = 300, low = 0x0145 (16-bit) — same window, returns
        // 0x0145 directly.
        let got = reconstruct_seq(0x0145, true, 300);
        assert_eq!(got, 0x0145);
    }

    #[test]
    fn reconstruct_seq_wraparound() {
        // expected_seq = 0x10000, low = 0xFFFF (16-bit). Candidates:
        //   0x0FFFF (delta 1) vs 0x1FFFF (delta 0xFFFF). 0x0FFFF wins.
        let got = reconstruct_seq(0xFFFF, true, 0x10000);
        assert_eq!(got, 0x0FFFF);
    }

    #[test]
    fn reconstruct_seq_forward_wrap() {
        // expected_seq just below a 16-bit boundary: 0xFFFE. low = 0x0001.
        // Candidates: 0x10001 (delta 3) vs 0x00001 (delta 0xFFFD).
        // 0x10001 is closer.
        let got = reconstruct_seq(0x0001, true, 0xFFFE);
        assert_eq!(got, 0x10001);
    }

    #[test]
    fn reconstruct_seq_8bit() {
        // 8-bit form. expected_seq = 0x200, low = 0x05.
        // Candidates: 0x105 (delta 0xFB), 0x205 (delta 5), 0x305 (delta 0x105).
        // 0x205 wins.
        let got = reconstruct_seq(0x05, false, 0x200);
        assert_eq!(got, 0x205);
    }

    #[test]
    fn sn_mask_aes128_known_vector() {
        // Mask = first 2 bytes of AES-ECB-Encrypt(zero key, zero block).
        // FIPS-197 reference: AES-128(0..0, 0..0) =
        //     66 e9 4b d4 ef 8a 2c 3b 88 4c fa 59 ca 34 2b 2e
        let key = [0u8; 16];
        let ct = [0u8; 16];
        let mask = sn_mask_aes128(&key, &ct);
        assert_eq!(mask, [0x66, 0xe9]);
    }

    #[test]
    fn sn_mask_aes128_short_ciphertext_zero_padded() {
        // Padding policy: a sub-16-byte ciphertext is zero-padded so the
        // mask is well-defined. Real call sites never hit this because
        // the AEAD tag alone is 16 bytes; this guards the helper.
        let key = [0u8; 16];
        let short = [0u8; 4];
        let mask_short = sn_mask_aes128(&key, &short);
        let zero = [0u8; 16];
        let mask_zero = sn_mask_aes128(&key, &zero);
        assert_eq!(mask_short, mask_zero);
    }

    #[test]
    fn sn_mask_aes256_known_vector() {
        // FIPS-197 reference: AES-256(0..0, 0..0) =
        //     dc 95 c0 78 a2 40 89 89 ad 48 a2 14 92 84 20 87
        let key = [0u8; 32];
        let ct = [0u8; 16];
        let mask = sn_mask_aes256(&key, &ct);
        assert_eq!(mask, [0xdc, 0x95]);
    }

    #[test]
    fn sn_mask_chacha20_known_vector() {
        // RFC 8439 §2.3.2 reference: ChaCha20(key=0..0, nonce=0..0, counter=0)
        // produces the keystream block
        //     76 b8 e0 ad a0 f1 3d 90 40 5d 6a e5 53 86 bd 28 ...
        // With a zero sample, the counter (sample[0..4] LE) and the nonce
        // (sample[4..16]) are both zero, so the mask is the first 2 bytes
        // of that block.
        let key = [0u8; 32];
        let ct = [0u8; 16];
        let mask = sn_mask_chacha20(&key, &ct);
        assert_eq!(mask, [0x76, 0xb8]);
    }

    #[test]
    fn sn_mask_chacha20_short_ciphertext_zero_padded() {
        // Matches the AES helpers' padding policy: a sub-16-byte sample is
        // zero-padded so the mask is well-defined. Real call sites never
        // hit this because the AEAD tag alone is 16 bytes.
        let key = [0u8; 32];
        let short = [0u8; 4];
        let mask_short = sn_mask_chacha20(&key, &short);
        let zero = [0u8; 16];
        let mask_zero = sn_mask_chacha20(&key, &zero);
        assert_eq!(mask_short, mask_zero);
    }

    #[test]
    fn encode_decode_with_real_mask() {
        // Apply a non-trivial sn_mask end-to-end: encode XORs it in, decode
        // XORs it out, the recovered seq_low must equal the input seq.
        let mut out = Vec::new();
        let mask = [0xAA, 0x55];
        let ct = dummy_ct();
        encode_record(&mut out, 3, 0x1234, true, false, &ct, &mask);

        // On the wire the seq bytes are 0x12^0xAA, 0x34^0x55 = 0xB8, 0x61.
        assert_eq!(&out[1..3], &[0xB8, 0x61]);
        let (hdr, body) = decode_record(&out, &mask).unwrap();
        assert_eq!(hdr.seq_low, 0x1234);
        assert_eq!(body, ct.as_slice());
    }

    #[test]
    fn peek_header_layout_matches_decode() {
        let mut out = Vec::new();
        let mask = [0u8; 2];
        let ct = dummy_ct();
        encode_record(&mut out, 0, 9, true, false, &ct, &mask);

        let (hdr_len, body_len) = peek_header_layout(&out).unwrap();
        assert_eq!(hdr_len, 5);
        assert_eq!(body_len, ct.len());

        // L=0 path: body_len = remaining datagram bytes.
        let mut out2 = Vec::new();
        encode_record(&mut out2, 0, 9, true, true, &ct, &mask);
        let (hdr_len2, body_len2) = peek_header_layout(&out2).unwrap();
        assert_eq!(hdr_len2, 3);
        assert_eq!(body_len2, ct.len());
    }

    #[test]
    #[cfg(debug_assertions)]
    #[should_panic(expected = "DTLS seq must fit in 48 bits")]
    fn encode_panics_on_oversized_seq() {
        let mut out = Vec::new();
        let mask = [0u8; 2];
        encode_record(&mut out, 0, 1u64 << 48, true, false, b"", &mask);
    }
}