purecrypto 0.6.12

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
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
//! TLS 1.0 / 1.1 CBC MAC-then-encrypt record protection (RFC 2246 / 4346 §6.2.3.2).
//!
//! Legacy CBC suites protect a record as
//! `CBC(content || MAC || padding)` where
//! `MAC = HMAC_h(mac_key, seq(8) || type(1) || version(2) || len(2) || content)`
//! and the padding is `pad_len+1` bytes each equal to `pad_len` (so the total is
//! a multiple of the cipher block size). TLS 1.1 prepends a fresh random
//! explicit IV per record; TLS 1.0 chains the IV from the previous record's last
//! ciphertext block.
//!
//! # Security
//!
//! These suites are deprecated (RFC 8996) and gated behind `tls-legacy`; they
//! exist only to talk to legacy devices. The decrypt path validates the CBC
//! padding in constant time, verifies the MAC with a constant-time comparison,
//! and returns a single uniform `BadRecordMac` for any failure (no early return,
//! no padding-vs-MAC distinction) — which defeats the classic Vaudenay / POODLE
//! padding oracle.
//!
//! **BEAST** (CVE-2011-3389): TLS 1.0 (`explicit_iv == false`) chains each
//! record's IV from the previous record's last ciphertext block, so the IV of
//! the next record is predictable to an observer — the protocol flaw BEAST
//! exploits via adaptive chosen-plaintext records. This is inherent to the
//! TLS 1.0 record format and cannot be fixed here (we do not implement 1/n-1
//! record splitting); TLS 1.1+ removes it with the per-record random explicit
//! IV. Avoid TLS 1.0 CBC wherever the peer offers anything newer.
//!
//! To blunt **Lucky13**, the decrypt path also equalises the number of
//! hash-compression blocks the MAC computation performs: after the real HMAC it
//! runs throwaway compression work sized so that every path — minimal padding,
//! maximal padding, and invalid padding alike — performs exactly
//! `max_blocks + 1` content-dependent compressions (see
//! [`CbcRecordCrypter::equalize_mac_blocks`]), so the total compression-call
//! count is fixed by the public record length rather than the secret plaintext
//! length. This is a best-effort equaliser built on the high-level hash API
//! (it does not capture intermediate compression states the way a bespoke
//! constant-time HMAC would), and it does not cover SSL 3.0 (POODLE-broken
//! regardless). Treat these suites as last-resort interop only and prefer
//! TLS 1.2+ AEAD, which this crate keeps fully constant-time.

// The suite-selection enums and the crypter are exercised by this module's
// tests now and wired into the legacy handshake in later phases; allow the
// transient dead code until then.
#![allow(dead_code)]

use crate::cipher::{Aes128, Aes256, BlockCipher, BlockCipher64, TdesEde3};
use crate::ct::ConstantTimeEq;
use crate::hash::{Digest, Hmac, Sha1, Sha256};
use crate::rng::RngCore;
use crate::tls::ContentType;
use crate::tls::Error;
use crate::tls::codec::CipherSuite;
use crate::tls::version::ProtocolVersion;
use alloc::vec;
use alloc::vec::Vec;

/// Key-exchange of a legacy CBC suite.
#[derive(Clone, Copy, PartialEq, Eq)]
pub(crate) enum LegacyKx {
    /// Static RSA key transport (`TLS_RSA_WITH_*`): the client encrypts the
    /// premaster to the server's RSA cert key. No forward secrecy.
    Rsa,
    /// Ephemeral ECDHE with an RSA-signed ServerKeyExchange (`TLS_ECDHE_RSA_*`).
    EcdheRsa,
}

/// A legacy CBC cipher suite: its wire code and the cipher/MAC/kx it selects.
#[derive(Clone, Copy)]
pub(crate) struct LegacyCbcSuite {
    pub(crate) suite: CipherSuite,
    pub(crate) cipher: CbcCipherAlg,
    pub(crate) mac: CbcMacAlg,
    pub(crate) kx: LegacyKx,
}

/// The legacy CBC suites we support, strongest-first within each kx family.
/// ECDHE-RSA (forward-secret) is preferred over static RSA; AES over 3DES;
/// AES-256 over AES-128 (legacy peers rarely prefer 256 but offer it anyway).
pub(crate) const LEGACY_CBC_SUITES: [LegacyCbcSuite; 10] = [
    LegacyCbcSuite {
        suite: CipherSuite::TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA256,
        cipher: CbcCipherAlg::Aes256,
        mac: CbcMacAlg::Sha256,
        kx: LegacyKx::EcdheRsa,
    },
    LegacyCbcSuite {
        suite: CipherSuite::TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,
        cipher: CbcCipherAlg::Aes128,
        mac: CbcMacAlg::Sha256,
        kx: LegacyKx::EcdheRsa,
    },
    LegacyCbcSuite {
        suite: CipherSuite::TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
        cipher: CbcCipherAlg::Aes256,
        mac: CbcMacAlg::Sha1,
        kx: LegacyKx::EcdheRsa,
    },
    LegacyCbcSuite {
        suite: CipherSuite::TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,
        cipher: CbcCipherAlg::Aes128,
        mac: CbcMacAlg::Sha1,
        kx: LegacyKx::EcdheRsa,
    },
    LegacyCbcSuite {
        suite: CipherSuite::TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA,
        cipher: CbcCipherAlg::Tdes,
        mac: CbcMacAlg::Sha1,
        kx: LegacyKx::EcdheRsa,
    },
    LegacyCbcSuite {
        suite: CipherSuite::TLS_RSA_WITH_AES_256_CBC_SHA256,
        cipher: CbcCipherAlg::Aes256,
        mac: CbcMacAlg::Sha256,
        kx: LegacyKx::Rsa,
    },
    LegacyCbcSuite {
        suite: CipherSuite::TLS_RSA_WITH_AES_128_CBC_SHA256,
        cipher: CbcCipherAlg::Aes128,
        mac: CbcMacAlg::Sha256,
        kx: LegacyKx::Rsa,
    },
    LegacyCbcSuite {
        suite: CipherSuite::TLS_RSA_WITH_AES_256_CBC_SHA,
        cipher: CbcCipherAlg::Aes256,
        mac: CbcMacAlg::Sha1,
        kx: LegacyKx::Rsa,
    },
    LegacyCbcSuite {
        suite: CipherSuite::TLS_RSA_WITH_AES_128_CBC_SHA,
        cipher: CbcCipherAlg::Aes128,
        mac: CbcMacAlg::Sha1,
        kx: LegacyKx::Rsa,
    },
    LegacyCbcSuite {
        suite: CipherSuite::TLS_RSA_WITH_3DES_EDE_CBC_SHA,
        cipher: CbcCipherAlg::Tdes,
        mac: CbcMacAlg::Sha1,
        kx: LegacyKx::Rsa,
    },
];

/// Looks up a legacy CBC suite by its wire code.
pub(crate) fn lookup_legacy_cbc(s: CipherSuite) -> Option<LegacyCbcSuite> {
    LEGACY_CBC_SUITES.iter().copied().find(|p| p.suite == s)
}

/// One direction's CBC key material, sliced from the `key_block`.
pub(crate) struct CbcKeyMaterial {
    pub(crate) client_mac: Vec<u8>,
    pub(crate) server_mac: Vec<u8>,
    pub(crate) client_key: Vec<u8>,
    pub(crate) server_key: Vec<u8>,
    /// `fixed_iv` per direction — non-empty only for TLS 1.0 (`explicit_iv`
    /// false); TLS 1.1+ uses a fresh per-record explicit IV instead.
    pub(crate) client_iv: Vec<u8>,
    pub(crate) server_iv: Vec<u8>,
}

/// `key_block` length for a CBC suite (RFC 5246 §6.3):
/// `2·mac_key + 2·enc_key + 2·fixed_iv`, where `fixed_iv = block_size` for
/// TLS 1.0 and `0` for TLS 1.1+ (explicit per-record IV).
pub(crate) fn cbc_key_block_len(cipher: CbcCipherAlg, mac: CbcMacAlg, explicit_iv: bool) -> usize {
    let fixed_iv = if explicit_iv { 0 } else { cipher.block_size() };
    2 * mac.key_len() + 2 * cipher.key_len() + 2 * fixed_iv
}

/// Slices a derived `key_block` into the per-direction CBC key material in the
/// RFC 5246 §6.3 order: client/server MAC keys, client/server enc keys, then
/// (TLS 1.0 only) client/server fixed IVs.
pub(crate) fn split_cbc_key_block(
    kb: &[u8],
    cipher: CbcCipherAlg,
    mac: CbcMacAlg,
    explicit_iv: bool,
) -> CbcKeyMaterial {
    let mk = mac.key_len();
    let ek = cipher.key_len();
    let iv = if explicit_iv { 0 } else { cipher.block_size() };
    let mut o = 0;
    let mut take = |n: usize| {
        let s = kb[o..o + n].to_vec();
        o += n;
        s
    };
    CbcKeyMaterial {
        client_mac: take(mk),
        server_mac: take(mk),
        client_key: take(ek),
        server_key: take(ek),
        client_iv: take(iv),
        server_iv: take(iv),
    }
}

/// The two directional CBC record crypters for a legacy connection.
pub(crate) struct LegacyCrypters {
    /// Protects/parses records the client sends.
    pub(crate) client: CbcRecordCrypter,
    /// Protects/parses records the server sends.
    pub(crate) server: CbcRecordCrypter,
}

/// Derives the legacy `key_block` and builds both directions' CBC record
/// crypters. `version` selects the IV regime (TLS 1.1+ explicit per-record IV
/// vs TLS 1.0 chained). Used by both the client and server legacy handshakes so
/// the key-block layout is computed in exactly one place.
///
/// The TLS 1.1 explicit-IV CSPRNG seeds come from 64 extra bytes of `key_block`
/// PRF stream past the keys/MACs — secret, unique per connection, and unused by
/// the spec, so safe to repurpose as private DRBG seeds (they never appear on
/// the wire). For TLS 1.0 the seeds are unused (the IV is chained).
pub(crate) fn build_legacy_crypters(
    ls: LegacyCbcSuite,
    version: ProtocolVersion,
    master: &[u8; 48],
    client_random: &[u8; 32],
    server_random: &[u8; 32],
) -> LegacyCrypters {
    // SSL 3.0: chained IV, SSLv3 key derivation + record MAC.
    if version == ProtocolVersion::SSLv3 {
        let kb_len = cbc_key_block_len(ls.cipher, ls.mac, false);
        let mut kb = vec![0u8; kb_len];
        super::ssl3::ssl3_key_block(master, server_random, client_random, &mut kb);
        let km = split_cbc_key_block(&kb, ls.cipher, ls.mac, false);
        let client = CbcRecordCrypter::new_ssl3(
            ls.cipher,
            &km.client_key,
            ls.mac,
            &km.client_mac,
            &km.client_iv,
        );
        let server = CbcRecordCrypter::new_ssl3(
            ls.cipher,
            &km.server_key,
            ls.mac,
            &km.server_mac,
            &km.server_iv,
        );
        return LegacyCrypters { client, server };
    }
    let explicit_iv = version.as_u16() >= ProtocolVersion::TLSv1_1.as_u16();
    let kb_len = cbc_key_block_len(ls.cipher, ls.mac, explicit_iv);
    let mut kb = vec![0u8; kb_len + 64];
    crate::tls::crypto::prf::key_block_legacy(master, server_random, client_random, &mut kb);
    let km = split_cbc_key_block(&kb[..kb_len], ls.cipher, ls.mac, explicit_iv);
    let client_iv_seed = &kb[kb_len..kb_len + 32];
    let server_iv_seed = &kb[kb_len + 32..kb_len + 64];
    let client = CbcRecordCrypter::new(
        ls.cipher,
        &km.client_key,
        ls.mac,
        &km.client_mac,
        explicit_iv,
        &km.client_iv,
        client_iv_seed,
    );
    let server = CbcRecordCrypter::new(
        ls.cipher,
        &km.server_key,
        ls.mac,
        &km.server_mac,
        explicit_iv,
        &km.server_iv,
        server_iv_seed,
    );
    LegacyCrypters { client, server }
}

/// CBC block cipher selection for a legacy suite.
#[derive(Clone, Copy)]
pub(crate) enum CbcCipherAlg {
    Aes128,
    Aes256,
    Tdes,
}

impl CbcCipherAlg {
    pub(crate) fn block_size(self) -> usize {
        match self {
            CbcCipherAlg::Aes128 | CbcCipherAlg::Aes256 => 16,
            CbcCipherAlg::Tdes => 8,
        }
    }
    pub(crate) fn key_len(self) -> usize {
        match self {
            CbcCipherAlg::Aes128 => 16,
            CbcCipherAlg::Aes256 => 32,
            CbcCipherAlg::Tdes => 24,
        }
    }
}

/// HMAC hash for a legacy CBC suite.
#[derive(Clone, Copy, PartialEq, Eq)]
pub(crate) enum CbcMacAlg {
    Sha1,
    Sha256,
}

impl CbcMacAlg {
    pub(crate) fn mac_len(self) -> usize {
        match self {
            CbcMacAlg::Sha1 => 20,
            CbcMacAlg::Sha256 => 32,
        }
    }
    /// HMAC key length equals the digest length for the standard CBC suites.
    pub(crate) fn key_len(self) -> usize {
        self.mac_len()
    }
}

/// The keyed block cipher backing a CBC record crypter.
enum Cipher {
    Aes128(Aes128),
    Aes256(Aes256),
    Tdes(TdesEde3),
}

impl Cipher {
    fn cbc_encrypt(&self, iv: &[u8], buf: &mut [u8]) {
        match self {
            Cipher::Aes128(c) => cbc_encrypt16(c, iv, buf),
            Cipher::Aes256(c) => cbc_encrypt16(c, iv, buf),
            Cipher::Tdes(c) => cbc_encrypt8(c, iv, buf),
        }
    }
    fn cbc_decrypt(&self, iv: &[u8], buf: &mut [u8]) {
        match self {
            Cipher::Aes128(c) => cbc_decrypt16(c, iv, buf),
            Cipher::Aes256(c) => cbc_decrypt16(c, iv, buf),
            Cipher::Tdes(c) => cbc_decrypt8(c, iv, buf),
        }
    }
}

fn cbc_encrypt16<C: BlockCipher>(c: &C, iv: &[u8], buf: &mut [u8]) {
    let mut chain = [0u8; 16];
    chain.copy_from_slice(iv);
    for blk in buf.chunks_exact_mut(16) {
        for (b, ch) in blk.iter_mut().zip(chain.iter()) {
            *b ^= *ch;
        }
        let b: &mut [u8; 16] = blk.try_into().unwrap();
        c.encrypt_block(b);
        chain.copy_from_slice(blk);
    }
}

fn cbc_decrypt16<C: BlockCipher>(c: &C, iv: &[u8], buf: &mut [u8]) {
    let mut chain = [0u8; 16];
    chain.copy_from_slice(iv);
    for blk in buf.chunks_exact_mut(16) {
        let saved = <[u8; 16]>::try_from(&blk[..]).unwrap();
        let b: &mut [u8; 16] = blk.try_into().unwrap();
        c.decrypt_block(b);
        for (b, ch) in blk.iter_mut().zip(chain.iter()) {
            *b ^= *ch;
        }
        chain = saved;
    }
}

fn cbc_encrypt8<C: BlockCipher64>(c: &C, iv: &[u8], buf: &mut [u8]) {
    let mut chain = [0u8; 8];
    chain.copy_from_slice(iv);
    for blk in buf.chunks_exact_mut(8) {
        for (b, ch) in blk.iter_mut().zip(chain.iter()) {
            *b ^= *ch;
        }
        let b: &mut [u8; 8] = blk.try_into().unwrap();
        c.encrypt_block(b);
        chain.copy_from_slice(blk);
    }
}

fn cbc_decrypt8<C: BlockCipher64>(c: &C, iv: &[u8], buf: &mut [u8]) {
    let mut chain = [0u8; 8];
    chain.copy_from_slice(iv);
    for blk in buf.chunks_exact_mut(8) {
        let saved = <[u8; 8]>::try_from(&blk[..]).unwrap();
        let b: &mut [u8; 8] = blk.try_into().unwrap();
        c.decrypt_block(b);
        for (b, ch) in blk.iter_mut().zip(chain.iter()) {
            *b ^= *ch;
        }
        chain = saved;
    }
}

// ---- small constant-time helpers over public-but-secret-derived lengths ----

/// `0xff` if `a == b`, else `0x00` (constant-time).
#[inline]
fn ct_eq_u8(a: u8, b: u8) -> u8 {
    let d = a ^ b;
    // d == 0  →  0xff ; d != 0  →  0x00
    let z = (d as i32 - 1) >> 8; // 0xffffff.. iff d==0 (for d in 0..=255)
    z as u8
}

/// `0xff` if `a <= b`, else `0x00` (constant-time; inputs are small lengths).
#[inline]
fn ct_le(a: usize, b: usize) -> u8 {
    let r = (b as i64).wrapping_sub(a as i64); // >= 0 iff a <= b
    !((r >> 63) as u8) // r>=0 → !0x00=0xff ; r<0 → !0xff=0x00
}

/// One direction's TLS 1.0/1.1 CBC record protection (MAC-then-encrypt).
pub(crate) struct CbcRecordCrypter {
    cipher: Cipher,
    mac_key: Vec<u8>,
    mac: CbcMacAlg,
    block_size: usize,
    /// TLS 1.1+ prepends a fresh random explicit IV; TLS 1.0 chains.
    explicit_iv: bool,
    /// Running chaining value for TLS 1.0 (the previous record's last ciphertext
    /// block); unused when `explicit_iv` is set.
    chain: Vec<u8>,
    /// CSPRNG for the TLS 1.1 per-record explicit IV, seeded once at
    /// construction from the connection RNG so record emission needs no RNG
    /// threading. Unused (but kept) for the TLS 1.0 chained path.
    iv_rng: crate::rng::HmacDrbg<crate::hash::Sha256>,
    /// SSL 3.0 mode: use the SSLv3 record MAC (no version byte, non-HMAC
    /// cascade) and accept arbitrary CBC padding content on decrypt (the POODLE
    /// weakness — SSLv3 padding bytes are not authenticated). Always chained-IV.
    ssl3: bool,
    seq: u64,
}

impl CbcRecordCrypter {
    /// Builds a record crypter for one direction. `enc_key`/`mac_key` come from
    /// the CBC `key_block`; `initial_iv` is that direction's `key_block` IV and
    /// is used only for TLS 1.0 (the `explicit_iv = false` case). `iv_seed` seeds
    /// the per-record explicit-IV CSPRNG for TLS 1.1; the caller supplies fresh
    /// randomness from the connection RNG.
    #[allow(dead_code)] // wired into the legacy handshake in a later phase
    pub(crate) fn new(
        cipher_alg: CbcCipherAlg,
        enc_key: &[u8],
        mac_alg: CbcMacAlg,
        mac_key: &[u8],
        explicit_iv: bool,
        initial_iv: &[u8],
        iv_seed: &[u8],
    ) -> Self {
        let cipher = match cipher_alg {
            CbcCipherAlg::Aes128 => {
                Cipher::Aes128(Aes128::new(enc_key.try_into().expect("aes128 key")))
            }
            CbcCipherAlg::Aes256 => {
                Cipher::Aes256(Aes256::new(enc_key.try_into().expect("aes256 key")))
            }
            CbcCipherAlg::Tdes => {
                Cipher::Tdes(TdesEde3::new(enc_key.try_into().expect("3des key")))
            }
        };
        CbcRecordCrypter {
            cipher,
            mac_key: mac_key.to_vec(),
            mac: mac_alg,
            block_size: cipher_alg.block_size(),
            explicit_iv,
            chain: initial_iv.to_vec(),
            iv_rng: crate::rng::HmacDrbg::new(iv_seed, b"tls-cbc-explicit-iv", &[]),
            ssl3: false,
            seq: 0,
        }
    }

    /// Builds an SSL 3.0 CBC record crypter (RFC 6101): chained IV, the SSLv3
    /// record MAC, and lenient (unauthenticated) CBC padding. SSLv3 has no
    /// SHA-256 CBC suites, so the MAC is always the SSLv3 MD5/SHA-1 cascade
    /// selected by `mac_alg` (only `Sha1` is reachable through our suite table).
    pub(crate) fn new_ssl3(
        cipher_alg: CbcCipherAlg,
        enc_key: &[u8],
        mac_alg: CbcMacAlg,
        mac_key: &[u8],
        initial_iv: &[u8],
    ) -> Self {
        let mut c = Self::new(
            cipher_alg,
            enc_key,
            mac_alg,
            mac_key,
            false,
            initial_iv,
            b"ssl3-unused",
        );
        c.ssl3 = true;
        c
    }

    /// HMAC over `seq || type || version || len(content) || content`, or the
    /// SSL 3.0 cascade MAC (no version byte) in SSLv3 mode.
    fn compute_mac(&self, ct: ContentType, version: ProtocolVersion, content: &[u8]) -> Vec<u8> {
        if self.ssl3 {
            let m = match self.mac {
                CbcMacAlg::Sha1 => super::ssl3::Ssl3Mac::Sha1,
                // No SHA-256 SSLv3 suite exists; treat anything else as SHA-1.
                CbcMacAlg::Sha256 => super::ssl3::Ssl3Mac::Sha1,
            };
            return super::ssl3::ssl3_record_mac(m, &self.mac_key, self.seq, ct, content);
        }
        let mut header = [0u8; 13];
        header[..8].copy_from_slice(&self.seq.to_be_bytes());
        header[8] = ct.as_u8();
        header[9..11].copy_from_slice(&version.as_u16().to_be_bytes());
        header[11..13].copy_from_slice(&(content.len() as u16).to_be_bytes());
        match self.mac {
            CbcMacAlg::Sha1 => Hmac::<Sha1>::new(&self.mac_key)
                .chain(&header)
                .chain(content)
                .finalize()
                .as_ref()
                .to_vec(),
            CbcMacAlg::Sha256 => Hmac::<Sha256>::new(&self.mac_key)
                .chain(&header)
                .chain(content)
                .finalize()
                .as_ref()
                .to_vec(),
        }
    }

    /// Runs throwaway hash-compression work so the total compression-function
    /// call count of the MAC verification is fixed by the public record length
    /// rather than the secret plaintext length (the Lucky13 equaliser).
    /// `content_len` is the recovered plaintext length and `total` the
    /// ciphertext length (a public multiple of the block size).
    ///
    /// # Compression accounting
    ///
    /// The TLS legacy MAC input is `header(13) || content`; SHA-1/SHA-256 hash
    /// in 64-byte blocks, and finalisation appends a `0x80` byte + 8-byte
    /// length (9 bytes of trailing overhead), so hashing a message of `m`
    /// bytes costs exactly `ceil((m + 9) / 64)` compression calls — note the
    /// overhead spills into ONE ADDITIONAL block whenever `m` is a multiple of
    /// 64. The HMAC above therefore performs
    /// `real_blocks = ceil((13 + content_len + 9) / 64)` content-dependent
    /// compressions (the constant ipad/opad/outer blocks do not depend on
    /// `content_len` and need no compensation).
    ///
    /// With `extra = max_blocks - real_blocks`, we hash a dummy message of
    /// `(extra + 1) * 64 - 9` bytes, which by the formula above costs exactly
    /// `extra + 1` compressions (update + finalisation block included). Every
    /// path — minimal padding (`extra == 0`), maximal padding, and invalid
    /// padding (`content_len` masked to 0) — thus performs the same
    /// `real_blocks + extra + 1 = max_blocks + 1` content-dependent
    /// compressions in total. There is deliberately no `extra == 0` early
    /// return: `extra` derives from the secret `content_len`, and skipping the
    /// dummy hash on that one path would make minimal padding exactly one
    /// compression cheaper than every other case — the Lucky13 distinguisher.
    fn equalize_mac_blocks(&self, content_len: usize, total: usize) {
        const BLOCK: usize = 64; // SHA-1 / SHA-256 compression block
        const OVERHEAD: usize = 9; // 0x80 + 8-byte length
        const HEADER: usize = 13; // seq || type || version || len
        let mac_len = self.mac.mac_len();
        // Largest possible content for this ciphertext (minimum 1 padding byte).
        let max_content = total.saturating_sub(mac_len + 1);
        let real_blocks = (HEADER + content_len + OVERHEAD).div_ceil(BLOCK);
        let max_blocks = (HEADER + max_content + OVERHEAD).div_ceil(BLOCK);
        let extra = max_blocks.saturating_sub(real_blocks);
        // `(extra + 1) * 64 - 9` bytes hash in exactly `extra + 1` compressions
        // (see the accounting note above); run on every path, including
        // `extra == 0`.
        let dummy = vec![0u8; (extra + 1) * BLOCK - OVERHEAD];
        // The digest output is discarded — only the compression work matters.
        match self.mac {
            CbcMacAlg::Sha1 => {
                let mut h = Sha1::new();
                h.update(&dummy);
                let _ = h.finalize();
            }
            CbcMacAlg::Sha256 => {
                let mut h = Sha256::new();
                h.update(&dummy);
                let _ = h.finalize();
            }
        }
    }

    /// Encrypts one record's `plaintext`, returning the record fragment
    /// (`explicit_iv || ciphertext` for TLS 1.1, `ciphertext` for TLS 1.0).
    #[allow(dead_code)]
    pub(crate) fn encrypt(
        &mut self,
        ct: ContentType,
        version: ProtocolVersion,
        plaintext: &[u8],
    ) -> Vec<u8> {
        let mac = self.compute_mac(ct, version, plaintext);
        let mut buf = Vec::with_capacity(plaintext.len() + mac.len() + self.block_size);
        buf.extend_from_slice(plaintext);
        buf.extend_from_slice(&mac);
        // TLS padding: append `pad_total` bytes each equal to `pad_total - 1`.
        let pad_total = self.block_size - (buf.len() % self.block_size);
        let pad_val = (pad_total - 1) as u8;
        buf.resize(buf.len() + pad_total, pad_val);

        let out = if self.explicit_iv {
            let mut iv = vec![0u8; self.block_size];
            self.iv_rng.fill_bytes(&mut iv);
            self.cipher.cbc_encrypt(&iv, &mut buf);
            let mut out = iv;
            out.extend_from_slice(&buf);
            out
        } else {
            let iv = core::mem::take(&mut self.chain);
            self.cipher.cbc_encrypt(&iv, &mut buf);
            self.chain = buf[buf.len() - self.block_size..].to_vec();
            buf
        };
        self.seq = self.seq.wrapping_add(1);
        out
    }

    /// Verifies and decrypts one record fragment, returning the plaintext
    /// content. Any padding or MAC failure yields a single uniform
    /// [`Error::BadRecordMac`]; see the module-level security note.
    #[allow(dead_code)]
    pub(crate) fn decrypt(
        &mut self,
        ct: ContentType,
        version: ProtocolVersion,
        fragment: &[u8],
    ) -> Result<Vec<u8>, Error> {
        let bs = self.block_size;
        let mac_len = self.mac.mac_len();

        // Split off the explicit IV (TLS 1.1) or use the running chain (TLS 1.0).
        let (iv, ciphertext): (Vec<u8>, &[u8]) = if self.explicit_iv {
            if fragment.len() < bs {
                return Err(Error::BadRecordMac);
            }
            (fragment[..bs].to_vec(), &fragment[bs..])
        } else {
            (self.chain.clone(), fragment)
        };

        // The ciphertext must be a non-empty whole number of blocks, with room
        // for at least one MAC plus the mandatory padding-length byte. These are
        // public-length checks (independent of plaintext), so an early return is
        // safe here.
        if ciphertext.is_empty() || !ciphertext.len().is_multiple_of(bs) {
            return Err(Error::BadRecordMac);
        }
        let total = ciphertext.len();
        if total < mac_len + 1 {
            return Err(Error::BadRecordMac);
        }

        // For TLS 1.0, the next IV is this record's last ciphertext block.
        let next_chain = ciphertext[total - bs..].to_vec();
        let mut buf = ciphertext.to_vec();
        self.cipher.cbc_decrypt(&iv, &mut buf);
        if !self.explicit_iv {
            self.chain = next_chain;
        }

        // ---- constant-time padding validation ----
        let pad_len = buf[total - 1] as usize;
        // Enough room for content(>=0) + MAC + (pad_len + 1) padding bytes.
        let mut good = ct_le(mac_len + pad_len + 1, total);
        // SSL 3.0 padding bytes are NOT authenticated (RFC 6101 §5.2.3.2): the
        // receiver only honours the length byte. This is exactly the POODLE
        // weakness; we therefore skip the per-byte padding scan in SSLv3 mode
        // (documented in the module header). TLS 1.0/1.1 require every padding
        // byte to equal `pad_len`, checked in constant time below.
        if !self.ssl3 {
            // Scan a fixed window (max TLS padding is 255 bytes) bounded by
            // `total`.
            let window = core::cmp::min(256, total);
            for i in 0..window {
                let byte = buf[total - 1 - i];
                let in_pad = ct_le(i, pad_len); // 0xff if this byte is in the padding
                let is_val = ct_eq_u8(byte, pad_len as u8);
                // if in_pad then require is_val:  good &= (is_val | !in_pad)
                good &= is_val | !in_pad;
            }
        }

        // content_len = total - mac_len - pad_len - 1 when the padding is valid,
        // else 0 (chosen with a constant-time mask). When `good`, the value is in
        // range [0, total - mac_len]; when not, the mask forces 0 (also in range,
        // since total >= mac_len + 1 was checked above).
        let cand = total
            .wrapping_sub(mac_len)
            .wrapping_sub(pad_len)
            .wrapping_sub(1);
        let mask = 0usize.wrapping_sub((good & 1) as usize);
        let content_len = cand & mask;

        let received_mac = &buf[content_len..content_len + mac_len];
        let computed_mac = self.compute_mac(ct, version, &buf[..content_len]);
        // Lucky13: the HMAC above processes a number of hash-compression blocks
        // that depends on the (secret) plaintext length, which leaks the padding
        // length through timing. Equalise it with throwaway compression work
        // sized so every path performs the same `max_blocks + 1` total
        // compressions, fixed by the public record length (see
        // `equalize_mac_blocks` for the exact accounting). (SSL 3.0 is
        // POODLE-broken regardless, so the equaliser is skipped there.)
        if !self.ssl3 {
            self.equalize_mac_blocks(content_len, total);
        }
        let mac_ok = computed_mac.as_slice().ct_eq(received_mac);

        self.seq = self.seq.wrapping_add(1);

        if good == 0xff && bool::from(mac_ok) {
            Ok(buf[..content_len].to_vec())
        } else {
            Err(Error::BadRecordMac)
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::tls::version::ProtocolVersion;

    fn pair(
        cipher: CbcCipherAlg,
        mac: CbcMacAlg,
        explicit_iv: bool,
    ) -> (CbcRecordCrypter, CbcRecordCrypter) {
        let enc = vec![0x11u8; cipher.key_len()];
        let mk = vec![0x22u8; mac.key_len()];
        let iv = vec![0x33u8; cipher.block_size()];
        (
            CbcRecordCrypter::new(cipher, &enc, mac, &mk, explicit_iv, &iv, b"iv-seed-a"),
            CbcRecordCrypter::new(cipher, &enc, mac, &mk, explicit_iv, &iv, b"iv-seed-b"),
        )
    }

    #[test]
    fn roundtrip_all_variants() {
        for &cipher in &[
            CbcCipherAlg::Aes128,
            CbcCipherAlg::Aes256,
            CbcCipherAlg::Tdes,
        ] {
            for &mac in &[CbcMacAlg::Sha1, CbcMacAlg::Sha256] {
                for &explicit in &[true, false] {
                    let (mut enc, mut dec) = pair(cipher, mac, explicit);
                    // Several records of varying length to exercise padding and
                    // (for TLS 1.0) the IV chaining across records.
                    for len in [0usize, 1, 15, 16, 17, 31, 200] {
                        let pt: Vec<u8> = (0..len).map(|i| (i as u8).wrapping_mul(7)).collect();
                        let rec = enc.encrypt(
                            ContentType::ApplicationData,
                            ProtocolVersion::TLSv1_1,
                            &pt,
                        );
                        let got = dec
                            .decrypt(ContentType::ApplicationData, ProtocolVersion::TLSv1_1, &rec)
                            .expect("decrypt ok");
                        assert_eq!(got, pt, "cipher/mac/explicit roundtrip len={len}");
                    }
                }
            }
        }
    }

    #[test]
    fn tampering_yields_bad_record_mac() {
        let (mut enc, mut dec) = pair(CbcCipherAlg::Aes128, CbcMacAlg::Sha1, true);
        let pt = b"provisioning config payload";
        let rec = enc.encrypt(ContentType::ApplicationData, ProtocolVersion::TLSv1_1, pt);

        // Flip a ciphertext byte → corrupts plaintext/MAC/padding → BadRecordMac.
        let mut bad = rec.clone();
        let last = bad.len() - 1;
        bad[last] ^= 0x01;
        assert!(matches!(
            dec.decrypt(ContentType::ApplicationData, ProtocolVersion::TLSv1_1, &bad),
            Err(Error::BadRecordMac)
        ));

        // A truncated record (not a whole number of blocks) is rejected.
        assert!(matches!(
            dec.decrypt(
                ContentType::ApplicationData,
                ProtocolVersion::TLSv1_1,
                &rec[..rec.len() - 1]
            ),
            Err(Error::BadRecordMac)
        ));
    }

    /// Builds `explicit_iv || CBC(content || MAC || pad)` by hand so the tests
    /// can drive padding shapes `encrypt` never produces (multi-block padding,
    /// corrupted padding, out-of-range padding length). Uses the crypter's
    /// current `seq` (0 for a fresh crypter) for the MAC.
    fn craft_record(enc: &CbcRecordCrypter, content: &[u8], pad: &[u8]) -> Vec<u8> {
        let mac = enc.compute_mac(
            ContentType::ApplicationData,
            ProtocolVersion::TLSv1_1,
            content,
        );
        let mut buf = content.to_vec();
        buf.extend_from_slice(&mac);
        buf.extend_from_slice(pad);
        assert!(
            buf.len().is_multiple_of(enc.block_size),
            "test record must be block-aligned"
        );
        let iv = [0x55u8; 16];
        enc.cipher.cbc_encrypt(&iv, &mut buf);
        let mut rec = iv.to_vec();
        rec.extend_from_slice(&buf);
        rec
    }

    /// Exercises the padding extremes the Lucky13 equaliser distinguishes
    /// between: minimal padding (`extra == 0`, the case the old equaliser
    /// short-circuited), maximal multi-block padding, corrupted padding, and an
    /// out-of-range padding length. The compression accounting itself is
    /// pinned by `lucky13_equalizer_compression_accounting`.
    #[test]
    fn padding_extremes_and_invalid_padding() {
        // Minimal padding: 11 content + 20 MAC + 1 pad byte = 32 = 2 blocks,
        // i.e. content_len == max_content and the equaliser's `extra` is 0.
        let (enc, mut dec) = pair(CbcCipherAlg::Aes128, CbcMacAlg::Sha1, true);
        let content = [0xabu8; 11];
        let rec = craft_record(&enc, &content, &[0u8]);
        let got = dec
            .decrypt(ContentType::ApplicationData, ProtocolVersion::TLSv1_1, &rec)
            .expect("minimal padding decrypts");
        assert_eq!(got, content);

        // Maximal padding for a 4-block record: empty content + 20 MAC +
        // 44 padding bytes (pad_len 43) = 64; the padding spans blocks.
        let (enc, mut dec) = pair(CbcCipherAlg::Aes128, CbcMacAlg::Sha1, true);
        let rec = craft_record(&enc, b"", &[43u8; 44]);
        let got = dec
            .decrypt(ContentType::ApplicationData, ProtocolVersion::TLSv1_1, &rec)
            .expect("maximal padding decrypts");
        assert!(got.is_empty());

        // Invalid padding: one padding byte != pad_len → uniform BadRecordMac.
        let (enc, mut dec) = pair(CbcCipherAlg::Aes128, CbcMacAlg::Sha1, true);
        let mut pad = [43u8; 44];
        pad[0] ^= 0x01;
        let rec = craft_record(&enc, b"", &pad);
        assert!(matches!(
            dec.decrypt(ContentType::ApplicationData, ProtocolVersion::TLSv1_1, &rec),
            Err(Error::BadRecordMac)
        ));

        // Padding length byte exceeding the record (255 in a 32-byte record):
        // `content_len` is masked to 0 → uniform BadRecordMac.
        let (enc, mut dec) = pair(CbcCipherAlg::Aes128, CbcMacAlg::Sha1, true);
        let rec = craft_record(&enc, &[0xabu8; 11], &[0xffu8]);
        assert!(matches!(
            dec.decrypt(ContentType::ApplicationData, ProtocolVersion::TLSv1_1, &rec),
            Err(Error::BadRecordMac)
        ));
    }

    /// Pins the Lucky13 equaliser's compression accounting. Hashing `n` bytes
    /// through a 64-byte Merkle–Damgård hash costs `ceil((n + 9) / 64)`
    /// compressions (the 0x80 marker + 8-byte length spill into one extra
    /// block when `n` is a multiple of 64), so the dummy length
    /// `(extra + 1) * 64 - 9` chosen by `equalize_mac_blocks` must make
    /// `real_blocks + dummy_compressions` a constant function of the public
    /// record length — for EVERY recoverable `content_len`, including the
    /// invalid-padding case (`content_len == 0`) and the minimal-padding case
    /// (`content_len == max_content`, where the old early-out leaked one
    /// compression).
    #[test]
    fn lucky13_equalizer_compression_accounting() {
        // Compressions performed by update+finalize over an n-byte message.
        let compressions = |n: usize| (n + 9).div_ceil(64);
        const HEADER: usize = 13;
        for mac_len in [20usize, 32] {
            // All AES-block-aligned record lengths up to 1024 bytes.
            for total in (1..=64).map(|b| b * 16).filter(|t| *t > mac_len) {
                let max_content = total - mac_len - 1;
                let max_blocks = compressions(HEADER + max_content);
                for content_len in 0..=max_content {
                    let real_blocks = compressions(HEADER + content_len);
                    let extra = max_blocks - real_blocks;
                    let dummy_len = (extra + 1) * 64 - 9;
                    assert_eq!(
                        real_blocks + compressions(dummy_len),
                        max_blocks + 1,
                        "total compressions must be constant \
                         (mac_len={mac_len} total={total} content_len={content_len})"
                    );
                }
            }
        }
    }

    #[test]
    fn legacy_suite_lookup() {
        let s = lookup_legacy_cbc(CipherSuite::TLS_RSA_WITH_AES_128_CBC_SHA).unwrap();
        assert!(matches!(s.cipher, CbcCipherAlg::Aes128));
        assert!(matches!(s.mac, CbcMacAlg::Sha1));
        assert!(matches!(s.kx, LegacyKx::Rsa));

        let s = lookup_legacy_cbc(CipherSuite::TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA256).unwrap();
        assert!(matches!(s.cipher, CbcCipherAlg::Aes256));
        assert!(matches!(s.mac, CbcMacAlg::Sha256));
        assert!(matches!(s.kx, LegacyKx::EcdheRsa));

        let s = lookup_legacy_cbc(CipherSuite::TLS_RSA_WITH_3DES_EDE_CBC_SHA).unwrap();
        assert!(matches!(s.cipher, CbcCipherAlg::Tdes));

        assert!(lookup_legacy_cbc(CipherSuite::AES_128_GCM_SHA256).is_none());
    }

    #[test]
    fn cbc_key_block_layout() {
        // AES-128 + HMAC-SHA1, TLS 1.1 (explicit IV → no fixed IVs):
        //   2*20 (mac) + 2*16 (key) = 72 bytes.
        let len = cbc_key_block_len(CbcCipherAlg::Aes128, CbcMacAlg::Sha1, true);
        assert_eq!(len, 72);
        let kb: Vec<u8> = (0..len as u8).collect();
        let km = split_cbc_key_block(&kb, CbcCipherAlg::Aes128, CbcMacAlg::Sha1, true);
        assert_eq!(km.client_mac, &kb[0..20]);
        assert_eq!(km.server_mac, &kb[20..40]);
        assert_eq!(km.client_key, &kb[40..56]);
        assert_eq!(km.server_key, &kb[56..72]);
        assert!(km.client_iv.is_empty() && km.server_iv.is_empty());

        // AES-256 + HMAC-SHA1, TLS 1.0 (chained → 16-byte fixed IVs each):
        //   2*20 + 2*32 + 2*16 = 136 bytes.
        let len = cbc_key_block_len(CbcCipherAlg::Aes256, CbcMacAlg::Sha1, false);
        assert_eq!(len, 136);
        let kb: Vec<u8> = (0..len as u8).collect();
        let km = split_cbc_key_block(&kb, CbcCipherAlg::Aes256, CbcMacAlg::Sha1, false);
        assert_eq!(km.client_mac.len(), 20);
        assert_eq!(km.client_key.len(), 32);
        assert_eq!(km.client_iv, &kb[104..120]);
        assert_eq!(km.server_iv, &kb[120..136]);
    }

    /// The MAC input construction matches an independent Python `hmac` reference
    /// (HMAC-SHA1 over `seq || type || version || len || content`). This pins the
    /// byte layout that interop depends on.
    #[test]
    fn mac_input_known_answer() {
        let mk = vec![0x22u8; 20];
        let c = CbcRecordCrypter::new(
            CbcCipherAlg::Aes128,
            &[0u8; 16],
            CbcMacAlg::Sha1,
            &mk,
            true,
            &[0u8; 16],
            b"seed",
        );
        // seq=0, type=23 (application_data), version=0x0301 (TLS 1.0), content="hi"
        let mac = c.compute_mac(
            ContentType::ApplicationData,
            ProtocolVersion::TLSv1_0,
            b"hi",
        );
        let expected = [
            0xa2, 0xf1, 0xca, 0x0b, 0x8e, 0xce, 0x38, 0x5e, 0x27, 0x0b, 0x9b, 0xab, 0x0e, 0x55,
            0x38, 0x2c, 0xda, 0x40, 0x81, 0xc1,
        ];
        assert_eq!(mac, expected);
    }
}