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
// Copyright © 2026 kyberlib. All rights reserved.
// SPDX-License-Identifier: Apache-2.0 OR MIT
//! Constant-time analysis harness for kyberlib using `dudect-bencher`.
//!
//! Background: de Reijke & Bertoni (eprint 2016/1123) — "dude, is my
//! code constant time?" — uses Welch's t-test on two timing
//! distributions to detect secret-dependent execution paths. Each
//! benchmark function below exercises a primitive under two input
//! *classes*; if the resulting timing distributions are statistically
//! indistinguishable, the function is plausibly constant-time under
//! the measurement conditions.
//!
//! ## Limits of dudect (and any black-box CT analysis)
//!
//! - **Negative result only** — passing means we *failed to detect* a
//! leak, not that one provably doesn't exist. Pair with the formal
//! audit in `doc/adr/0003-kyberslash-audit.md` and the structural
//! Barrett-reduction guarantees inherited from pq-crystals.
//! - **Noise-bound** — runs on shared CI hosts are drowned in noise.
//! For actionable signal, run on a quiescent baremetal host.
//! - **Timing only** — no cache, branch-predictor, or speculative
//! side-channels.
//!
//! ## Classes covered
//!
//! 1. `decap_valid_vs_invalid_ct` — the IND-CCA workhorse. FIPS 203
//! §6.3's implicit-rejection construction REQUIRES decapsulation of
//! valid vs tampered ciphertext to take indistinguishable time. A
//! t-statistic above ±10 here would be a CVE-class side-channel.
//!
//! 2. `decap_real_pairs` — decap a real (SK, matching CT) pair (Left)
//! vs decap the same SK against the CT from a different real
//! keypair (Right — implicit-rejection path on well-formed input).
//! Confirms decap timing is invariant across both authentication
//! outcomes when both inputs have the canonical shape produced by
//! real keygen/encap. A leak here would indicate the FO transform
//! branches observably on the validity check.
//!
//! ## Running
//!
//! Quick local check:
//! ```sh
//! cargo bench -p kyberlib --bench dudect --features benchmarking
//! ```
//!
//! Long run for release gating (see `scripts/dudect.sh`):
//! ```sh
//! cargo bench -p kyberlib --bench dudect --features benchmarking -- \
//! --continuous decap_valid_vs_invalid_ct
//! ```
use ;
use ;
/// Per-class sample count. dudect's t-test stabilises around 10⁴–10⁵
/// samples per class; we default to 5k for a workable per-bench wall
/// clock (~30 s on a 2024-era laptop). The `scripts/dudect.sh`
/// production runner overrides with 1M.
const SAMPLES_PER_CLASS: usize = 5_000;
// =========================================================== rng bridge
/// `dudect_bencher::BenchRng` is a `rand 0.8` RNG, but kyberlib's
/// `keypair` / `encapsulate` consume `rand_core 0.6` RNGs. Bridge the
/// two with a thin wrapper. (Both crates' trait shapes are
/// byte-identical for the bytes we actually use.)
;
// =============================== bench 1: decap valid vs invalid ciphertext
/// **Headline CT-leak gate.** Decapsulate two ciphertext distributions
/// under the same secret key — one valid, one bit-flipped. FIPS 203
/// §6.3 implicit rejection REQUIRES indistinguishable timing.
// ============================== bench 2: decap of valid pair vs random pair
/// Decapsulate a real (SK, valid CT) pair (Left) vs decapsulate a
/// real SK against the corresponding ciphertext from an *unrelated*
/// real keypair (Right — implicit-rejection path on inputs of the
/// same shape as the legitimate ones).
///
/// Rationale: bench 1 stress-tests the same SK against valid vs
/// bit-flipped CT — the canonical IND-CCA test. Bench 2 generalises:
/// it confirms that decapsulation timing is invariant to which valid
/// (well-formed) ciphertext we're decapsulating, even when half of
/// them happen to authenticate and the other half don't. Both paths
/// must take the same time per FIPS 203 §6.3.
// =========================================================== entry point
// Reproducible seeds across CI runs. dudect-bencher's macro doesn't
// accept a trailing comma — note the lack of one after the final entry.
ctbench_main!;