doppel 0.0.2

Intercept secrets in byte payloads, replace them with structurally-equivalent fakes, and transparently restore originals in streaming responses.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
//! Built-in structural patterns and per-call constructor functions.
//!
//! Each `pub fn` in this module returns a [`Pattern`] with an ephemeral salt.
//! For persistent cross-restart fake stability, use [`crate::SecretsFile::to_patterns`].

use crate::segment::{BuiltinSegment, CharsetName, MatchCapture, Segment};
use aho_corasick::AhoCorasick;
use std::sync::{Arc, LazyLock};

/// Internal structural definition used as a static template for built-in patterns.
/// Holds the identifier and segment list; salt is supplied by the per-call constructor.
#[derive(Clone)]
pub(crate) struct StructuralDef {
    /// Stable string identifier for this class, used as the key in patterns files.
    pub(crate) identifier: String,
    /// Ordered sequence of structural segments for this secret class.
    /// See SPEC.md §Structural Patterns.
    pub(crate) segments: Arc<[Segment]>,
}

#[cfg(test)]
impl StructuralDef {
    /// Walk `payload[pos..]` against the segment list. Returns `Some(MatchCapture)`
    /// on a complete match, `None` otherwise.
    ///
    /// Variable segments try lengths from max down to min (longest-first, INV-18).
    /// When a Variable segment is followed by a Literal, the Literal boundary is
    /// located within the valid Variable range — handling embedded markers like
    /// `T3BlbkFJ` that are themselves valid Variable-charset bytes.
    pub(crate) fn try_match(&self, payload: &[u8], pos: usize) -> Option<MatchCapture> {
        let mut variable_lengths = Vec::new();
        let end = match_segments(payload, pos, &self.segments, &mut variable_lengths)?;
        Some(MatchCapture {
            end,
            variable_lengths,
        })
    }
}

/// Recursive segment-list matcher. Returns the exclusive end position on success.
/// Appends one entry to `var_lens` for each Variable segment that matches.
/// On failure, any entries appended in the failing sub-tree are removed by the caller.
fn match_segments(
    payload: &[u8],
    cur: usize,
    segs: &[Segment],
    var_lens: &mut Vec<usize>,
) -> Option<usize> {
    if segs.is_empty() {
        return Some(cur);
    }
    match &segs[0] {
        Segment::Literal(bytes) => {
            let end = cur + bytes.len();
            if payload.get(cur..end)? == bytes.as_slice() {
                match_segments(payload, end, &segs[1..], var_lens)
            } else {
                None
            }
        }
        Segment::Variable { charset, min, max } => {
            let cs = charset.resolve();
            // Try lengths from max down to min (longest-first, INV-18).
            for var_len in (*min..=*max).rev() {
                let end = cur + var_len;
                if end > payload.len() {
                    continue;
                }
                if payload[cur..end].iter().all(|&b| cs.contains(b)) {
                    let saved = var_lens.len();
                    var_lens.push(var_len);
                    if let Some(result) = match_segments(payload, end, &segs[1..], var_lens) {
                        return Some(result);
                    }
                    var_lens.truncate(saved);
                }
            }
            None
        }
        Segment::Opaque { value, .. } => {
            let end = cur + value.len();
            if payload.get(cur..end)? == value.as_slice() {
                match_segments(payload, end, &segs[1..], var_lens)
            } else {
                None
            }
        }
    }
}

// Note on sk-proj- vs sk-: at a "sk-proj-..." position, OPENAI_PROJECT_DEF produces a longer
// match because it finds T3BlbkFJ at the correct offset; OPENAI_CLASSIC_DEF fails because
// 'proj-' contains '-' which is not alphanumeric. The swap engine picks the longest match (INV-18).

const ANTHROPIC_SEGS: [BuiltinSegment; 3] = [
    BuiltinSegment::Literal(b"sk-ant-api03-"),
    BuiltinSegment::Variable {
        charset: CharsetName::UrlSafeBase64,
        min: 93,
        max: 93,
    },
    BuiltinSegment::Literal(b"AA"),
];
static ANTHROPIC_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "anthropic".into(),
    // sk-ant-api03-<93 url_safe_base64>AA = 108 chars total
    // Source: gitleaks `sk-ant-api03-[a-zA-Z0-9_\-]{93}AA`
    segments: ANTHROPIC_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const OPENAI_CLASSIC_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"sk-"),
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 48,
        max: 48,
    },
];
static OPENAI_CLASSIC_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "openai_classic".into(),
    // sk-<48 alphanumeric> = 51 chars total
    segments: OPENAI_CLASSIC_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const OPENAI_PROJECT_SEGS: [BuiltinSegment; 4] = [
    BuiltinSegment::Literal(b"sk-proj-"),
    BuiltinSegment::Variable {
        charset: CharsetName::UrlSafeBase64,
        min: 58,
        max: 74,
    },
    BuiltinSegment::Literal(b"T3BlbkFJ"),
    BuiltinSegment::Variable {
        charset: CharsetName::UrlSafeBase64,
        min: 58,
        max: 74,
    },
];
static OPENAI_PROJECT_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "openai_project".into(),
    // sk-proj-<58|74 url_safe_b64>T3BlbkFJ<58|74 url_safe_b64> = 132 or 164 chars total.
    // The pre-Aug-2024 56-char format (sk-proj-<48 url_safe_b64>, no T3BlbkFJ) is intentionally
    // not detected: those keys are ~2 years old and structurally indistinguishable from noise
    // without the embedded marker. Best-effort coverage per SPEC.md §Known Limitations.
    // Source: gitleaks openai-api-key rule + OpenAI community reports.
    segments: OPENAI_PROJECT_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const AWS_AKIA_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"AKIA"),
    BuiltinSegment::Variable {
        charset: CharsetName::UppercaseAlphanumeric,
        min: 16,
        max: 16,
    },
];
static AWS_AKIA_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "aws_akia".into(),
    // AKIA<16 uppercase_alphanumeric> = 20 chars total
    segments: AWS_AKIA_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const AWS_ASIA_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"ASIA"),
    BuiltinSegment::Variable {
        charset: CharsetName::UppercaseAlphanumeric,
        min: 16,
        max: 16,
    },
];
static AWS_ASIA_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "aws_asia".into(),
    // ASIA<16 uppercase_alphanumeric> = 20 chars total
    segments: AWS_ASIA_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const GITHUB_CLASSIC_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"ghp_"),
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 36,
        max: 36,
    },
];
static GITHUB_CLASSIC_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "github_classic".into(),
    // ghp_<36 alphanumeric> = 40 chars total
    segments: GITHUB_CLASSIC_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const GITHUB_FG_SEGS: [BuiltinSegment; 4] = [
    BuiltinSegment::Literal(b"github_pat_"),
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 22,
        max: 22,
    },
    BuiltinSegment::Literal(b"_"),
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 59,
        max: 59,
    },
];
static GITHUB_FG_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "github_fine_grained".into(),
    // github_pat_<22 alnum>_<59 alnum> = 93 chars total
    // Source: gitleaks `github_pat_\w{82}` (82 = 22 + 1 separator + 59)
    segments: GITHUB_FG_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const GCP_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"AIza"),
    BuiltinSegment::Variable {
        charset: CharsetName::UrlSafeBase64,
        min: 35,
        max: 35,
    },
];
static GCP_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "gcp".into(),
    // AIza<35 url_safe_base64> = 39 chars total
    segments: GCP_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const OPENROUTER_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"sk-or-v1-"),
    BuiltinSegment::Variable {
        charset: CharsetName::HexLower,
        min: 64,
        max: 64,
    },
];
static OPENROUTER_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "openrouter".into(),
    // sk-or-v1-<64 hex_lower> = 73 chars total
    // Source: xchecker-dev `sk-or-v1-[0-9a-fA-F]{64}` — pattern uses lowercase-only
    // (HexLower); uppercase hex not observed in OpenRouter keys in practice.
    segments: OPENROUTER_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const OPENAI_SVCACCT_SEGS: [BuiltinSegment; 4] = [
    BuiltinSegment::Literal(b"sk-svcacct-"),
    BuiltinSegment::Variable {
        charset: CharsetName::UrlSafeBase64,
        min: 58,
        max: 74,
    },
    BuiltinSegment::Literal(b"T3BlbkFJ"),
    BuiltinSegment::Variable {
        charset: CharsetName::UrlSafeBase64,
        min: 58,
        max: 74,
    },
];
static OPENAI_SVCACCT_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "openai_svcacct".into(),
    // sk-svcacct-<58|74>T3BlbkFJ<58|74> = 135 or 167 chars total
    // Source: gitleaks `sk-(?:proj|svcacct|admin)-...T3BlbkFJ...`
    segments: OPENAI_SVCACCT_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const GOOGLE_OAUTH_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"GOCSPX-"),
    BuiltinSegment::Variable {
        charset: CharsetName::UrlSafeBase64,
        min: 28,
        max: 28,
    },
];
static GOOGLE_OAUTH_SECRET_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "google_oauth_secret".into(),
    // GOCSPX-<28 url_safe_base64> = 35 chars total
    // Source: secretgate docs "GOCSPX- + 28 chars"
    segments: GOOGLE_OAUTH_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const SLACK_BOT_SEGS: [BuiltinSegment; 6] = [
    BuiltinSegment::Literal(b"xoxb-"),
    BuiltinSegment::Variable {
        charset: CharsetName::Digits,
        min: 10,
        max: 13,
    },
    BuiltinSegment::Literal(b"-"),
    BuiltinSegment::Variable {
        charset: CharsetName::Digits,
        min: 10,
        max: 13,
    },
    BuiltinSegment::Literal(b"-"),
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 24,
        max: 24,
    },
];
static SLACK_BOT_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "slack_bot".into(),
    // xoxb-<10-13 digits>-<10-13 digits>-<24 alnum> = 51-57 chars total
    // Source: gitleaks `xoxb-[0-9]{10,13}-[0-9]{10,13}[a-zA-Z0-9-]*`
    segments: SLACK_BOT_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const ANTHROPIC_ADMIN01_SEGS: [BuiltinSegment; 3] = [
    BuiltinSegment::Literal(b"sk-ant-admin01-"),
    BuiltinSegment::Variable {
        charset: CharsetName::UrlSafeBase64,
        min: 93,
        max: 93,
    },
    BuiltinSegment::Literal(b"AA"),
];
static ANTHROPIC_ADMIN01_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "anthropic_admin01".into(),
    // sk-ant-admin01-<93 url_safe_base64>AA = 110 chars total
    // Source: gitleaks `sk-ant-admin01-[a-zA-Z0-9_\-]{93}AA`
    segments: ANTHROPIC_ADMIN01_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const ANTHROPIC_ADMIN03_SEGS: [BuiltinSegment; 3] = [
    BuiltinSegment::Literal(b"sk-ant-admin03-"),
    BuiltinSegment::Variable {
        charset: CharsetName::UrlSafeBase64,
        min: 93,
        max: 93,
    },
    BuiltinSegment::Literal(b"AA"),
];
static ANTHROPIC_ADMIN03_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "anthropic_admin03".into(),
    // sk-ant-admin03-<93 url_safe_base64>AA = 110 chars total
    // Source: Anthropic Terraform provider docs
    segments: ANTHROPIC_ADMIN03_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const LINEAR_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"lin_api_"),
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 40,
        max: 40,
    },
];
static LINEAR_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "linear".into(),
    // lin_api_<40 alphanumeric> = 48 chars total
    // Source: gitleaks `lin_api_(?i)[a-z0-9]{40}`
    segments: LINEAR_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const GROQ_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"gsk_"),
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 52,
        max: 52,
    },
];
static GROQ_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "groq".into(),
    // gsk_<52 alphanumeric> = 56 chars total
    // Source: gitleaks groq api key rule
    segments: GROQ_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const PERPLEXITY_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"pplx-"),
    BuiltinSegment::Variable {
        charset: CharsetName::HexLower,
        min: 48,
        max: 48,
    },
];
static PERPLEXITY_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "perplexity".into(),
    // pplx-<48 hex_lower> = 53 chars total
    segments: PERPLEXITY_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const CEREBRAS_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"csk-"),
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 48,
        max: 48,
    },
];
static CEREBRAS_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "cerebras".into(),
    // csk-<48 alphanumeric> = 52 chars total
    segments: CEREBRAS_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const STRIPE_LIVE_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"sk_live_"),
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 24,
        max: 32,
    },
];
static STRIPE_LIVE_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "stripe_live".into(),
    // sk_live_<24-32 alphanumeric> = 32-40 chars total
    // Source: Stripe docs, gitleaks stripe_sk rule
    segments: STRIPE_LIVE_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const STRIPE_TEST_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"sk_test_"),
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 24,
        max: 32,
    },
];
static STRIPE_TEST_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "stripe_test".into(),
    // sk_test_<24-32 alphanumeric> = 32-40 chars total
    segments: STRIPE_TEST_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const CLERK_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"sk_live_"),
    // Clerk live keys are longer than Stripe; length difference distinguishes them.
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 45,
        max: 55,
    },
];
static CLERK_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "clerk".into(),
    // sk_live_<45-55 alphanumeric> = 53-63 chars total
    // Shares prefix with stripe_live; longer variable range distinguishes them.
    segments: CLERK_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const SVIX_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"svix_"),
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 30,
        max: 50,
    },
];
static SVIX_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "svix".into(),
    // svix_<30-50 alphanumeric>
    segments: SVIX_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const CHROMATIC_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"chpt_"),
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 30,
        max: 50,
    },
];
static CHROMATIC_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "chromatic".into(),
    // chpt_<30-50 alphanumeric>
    segments: CHROMATIC_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const GITHUB_OAUTH_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"gho_"),
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 36,
        max: 36,
    },
];
static GITHUB_OAUTH_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "github_oauth".into(),
    // gho_<36 alphanumeric> = 40 chars total
    // Source: GitHub docs on token formats (GitHub OAuth token)
    segments: GITHUB_OAUTH_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const GITHUB_APP_SERVER_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"ghs_"),
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 36,
        max: 36,
    },
];
static GITHUB_APP_SERVER_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "github_app_server".into(),
    // ghs_<36 alphanumeric> = 40 chars total
    // Source: GitHub docs — GitHub App server-to-server token
    segments: GITHUB_APP_SERVER_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const GITHUB_APP_USER_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"ghu_"),
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 36,
        max: 36,
    },
];
static GITHUB_APP_USER_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "github_app_user".into(),
    // ghu_<36 alphanumeric> = 40 chars total
    // Source: GitHub docs — GitHub App user-to-server token
    segments: GITHUB_APP_USER_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});

const GITHUB_REFRESH_SEGS: [BuiltinSegment; 2] = [
    BuiltinSegment::Literal(b"ghr_"),
    BuiltinSegment::Variable {
        charset: CharsetName::Alphanumeric,
        min: 36,
        max: 76,
    },
];
static GITHUB_REFRESH_DEF: LazyLock<StructuralDef> = LazyLock::new(|| StructuralDef {
    identifier: "github_refresh".into(),
    // ghr_<36-76 alphanumeric> = 40-80 chars total
    // Source: GitHub docs — GitHub App refresh token
    segments: GITHUB_REFRESH_SEGS
        .iter()
        .map(Segment::from)
        .collect::<Vec<_>>()
        .into(),
});
static ALL_STRUCTURAL_DEFS: LazyLock<Vec<&'static StructuralDef>> = LazyLock::new(|| {
    vec![
        &*ANTHROPIC_DEF,
        &*ANTHROPIC_ADMIN01_DEF,
        &*ANTHROPIC_ADMIN03_DEF,
        &*OPENAI_CLASSIC_DEF,
        &*OPENAI_PROJECT_DEF,
        &*OPENAI_SVCACCT_DEF,
        &*AWS_AKIA_DEF,
        &*AWS_ASIA_DEF,
        &*GITHUB_CLASSIC_DEF,
        &*GITHUB_FG_DEF,
        &*GCP_DEF,
        &*OPENROUTER_DEF,
        &*GOOGLE_OAUTH_SECRET_DEF,
        &*SLACK_BOT_DEF,
        &*LINEAR_DEF,
        &*GROQ_DEF,
        &*PERPLEXITY_DEF,
        &*CEREBRAS_DEF,
        &*STRIPE_LIVE_DEF,
        &*STRIPE_TEST_DEF,
        &*CLERK_DEF,
        &*SVIX_DEF,
        &*CHROMATIC_DEF,
        &*GITHUB_OAUTH_DEF,
        &*GITHUB_APP_SERVER_DEF,
        &*GITHUB_APP_USER_DEF,
        &*GITHUB_REFRESH_DEF,
    ]
});

/// Returns references to all 27 built-in structural pattern definitions.
/// Used by patterns file loading to iterate and inject salts.
pub(crate) fn all_defs() -> &'static [&'static StructuralDef] {
    &ALL_STRUCTURAL_DEFS
}

/// Build an Aho-Corasick automaton from the first-segment bytes of each pattern.
///
/// Patterns whose first segment is `literal` or `opaque` contribute their value bytes
/// as AC keywords. Patterns with a `variable` first segment are excluded; this cannot
/// occur in practice because the First-Segment Invariant (SPEC.md §First-Segment
/// Invariant) requires every Pattern to start with a `literal` or `opaque` segment,
/// enforced at load and registration time.
pub(crate) fn build_ac_automaton(patterns: &[Pattern]) -> AhoCorasick {
    let prefixes: Vec<&[u8]> = patterns
        .iter()
        .filter_map(|p| p.first_segment_bytes())
        .collect();
    AhoCorasick::new(&prefixes).expect("AC build should not fail for valid patterns")
}

/// Unified detection descriptor for both family and instance patterns.
///
/// Obtain via [`crate::patterns`] functions or [`crate::register`]/[`crate::register_with_options`].
/// Pass to [`crate::swap`].
///
/// - Family pattern (`digests` is empty): matches any candidate satisfying the segment list.
/// - Instance/group pattern (`digests` is non-empty): additionally requires HMAC verification.
#[derive(Clone)]
pub struct Pattern {
    /// Unique identifier for this pattern (e.g., "anthropic", "prod-credentials").
    pub(crate) identifier: String,
    /// Ordered segment list defining detection structure.
    pub(crate) segments: Arc<[Segment]>,
    /// 32-byte salt for HMAC computation and fake derivation.
    pub(crate) salt: [u8; 32],
    /// HMAC digests; empty = family pattern, non-empty = instance/group pattern.
    pub(crate) digests: Vec<[u8; 32]>,
}

impl Pattern {
    /// Returns the string identifier for this pattern (e.g. `"anthropic"`, `"prod-db"`).
    pub fn id(&self) -> &str {
        &self.identifier
    }

    /// Returns true if the first segment is a Literal (for INV-18 tiebreaker precedence).
    pub(crate) fn first_segment_is_literal(&self) -> bool {
        matches!(self.segments.first(), Some(Segment::Literal(_)))
    }

    /// Returns the first segment's anchor bytes for AC automaton building.
    /// Returns `None` for patterns whose first segment has no fixed prefix bytes.
    pub(crate) fn first_segment_bytes(&self) -> Option<&[u8]> {
        match self.segments.first() {
            Some(Segment::Literal(bytes)) => Some(bytes),
            Some(Segment::Opaque { value, .. }) => Some(value),
            _ => None,
        }
    }

    /// Attempt to match this pattern against the payload at the given position.
    ///
    /// For family patterns (empty digests): returns a match on segment success alone.
    /// For instance patterns (non-empty digests): additionally requires HMAC verification
    /// against one of the stored digests (INV-16: HMAC failure → pass through unchanged).
    pub(crate) fn try_match(&self, payload: &[u8], pos: usize) -> Option<MatchCapture> {
        let mut variable_lengths = Vec::new();
        let end = match_segments(payload, pos, &self.segments, &mut variable_lengths)?;

        if !self.digests.is_empty() {
            let candidate = &payload[pos..end];
            // SPEC §Detection Algorithm step 4: compute HMAC once, compare against each digest
            // in constant time. Accumulate in subtle::Choice throughout the fold to prevent
            // the optimizer from eliding ct_eq calls once a match is found; convert to bool
            // only after all digests have been evaluated.
            use subtle::{Choice, ConstantTimeEq};
            let computed_hmac = crate::crypto::hmac_sha256(&self.salt, candidate);
            let matches_any =
                bool::from(self.digests.iter().fold(Choice::from(0u8), |acc, digest| {
                    acc | computed_hmac.ct_eq(digest)
                }));
            if !matches_any {
                return None;
            }
        }

        Some(MatchCapture {
            end,
            variable_lengths,
        })
    }
}

use rand::RngCore;
use rand::rngs::OsRng;

fn random_salt() -> [u8; 32] {
    let mut salt = [0u8; 32];
    OsRng.fill_bytes(&mut salt);
    salt
}

/// Returns an Anthropic key pattern with an ephemeral salt.
///
/// Fakes are stable for the lifetime of the returned `Pattern` value but differ
/// across calls and process restarts. For cross-restart stability, use
/// `SecretsFile::to_patterns()`.
pub fn anthropic() -> Pattern {
    Pattern {
        identifier: ANTHROPIC_DEF.identifier.clone(),
        segments: ANTHROPIC_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns an Anthropic Admin v1 key pattern (`sk-ant-admin01-`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn anthropic_admin01() -> Pattern {
    Pattern {
        identifier: ANTHROPIC_ADMIN01_DEF.identifier.clone(),
        segments: ANTHROPIC_ADMIN01_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns an Anthropic Admin v3 key pattern (`sk-ant-admin03-`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn anthropic_admin03() -> Pattern {
    Pattern {
        identifier: ANTHROPIC_ADMIN03_DEF.identifier.clone(),
        segments: ANTHROPIC_ADMIN03_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns an OpenAI classic secret key pattern (`sk-`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn openai_classic() -> Pattern {
    Pattern {
        identifier: OPENAI_CLASSIC_DEF.identifier.clone(),
        segments: OPENAI_CLASSIC_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns an OpenAI project key pattern (`sk-proj-`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn openai_project() -> Pattern {
    Pattern {
        identifier: OPENAI_PROJECT_DEF.identifier.clone(),
        segments: OPENAI_PROJECT_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns an OpenAI service account key pattern (`sk-svcacct-`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn openai_svcacct() -> Pattern {
    Pattern {
        identifier: OPENAI_SVCACCT_DEF.identifier.clone(),
        segments: OPENAI_SVCACCT_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns an AWS IAM access key ID pattern (`AKIA`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn aws_akia() -> Pattern {
    Pattern {
        identifier: AWS_AKIA_DEF.identifier.clone(),
        segments: AWS_AKIA_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns an AWS STS temporary credential pattern (`ASIA`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn aws_asia() -> Pattern {
    Pattern {
        identifier: AWS_ASIA_DEF.identifier.clone(),
        segments: AWS_ASIA_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a GitHub classic personal access token pattern (`ghp_`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn github_classic() -> Pattern {
    Pattern {
        identifier: GITHUB_CLASSIC_DEF.identifier.clone(),
        segments: GITHUB_CLASSIC_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a GitHub fine-grained personal access token pattern (`github_pat_`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn github_fine_grained() -> Pattern {
    Pattern {
        identifier: GITHUB_FG_DEF.identifier.clone(),
        segments: GITHUB_FG_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a GCP/Gemini API key pattern (`AIza`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn gcp() -> Pattern {
    Pattern {
        identifier: GCP_DEF.identifier.clone(),
        segments: GCP_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns an OpenRouter API key pattern (`sk-or-v1-`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn openrouter() -> Pattern {
    Pattern {
        identifier: OPENROUTER_DEF.identifier.clone(),
        segments: OPENROUTER_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a Google OAuth client secret pattern (`GOCSPX-`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn google_oauth_secret() -> Pattern {
    Pattern {
        identifier: GOOGLE_OAUTH_SECRET_DEF.identifier.clone(),
        segments: GOOGLE_OAUTH_SECRET_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a Slack bot token pattern (`xoxb-`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn slack_bot() -> Pattern {
    Pattern {
        identifier: SLACK_BOT_DEF.identifier.clone(),
        segments: SLACK_BOT_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a Linear API key pattern (`lin_api_`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn linear() -> Pattern {
    Pattern {
        identifier: LINEAR_DEF.identifier.clone(),
        segments: LINEAR_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a Groq API key pattern (`gsk_`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn groq() -> Pattern {
    Pattern {
        identifier: GROQ_DEF.identifier.clone(),
        segments: GROQ_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a Perplexity API key pattern (`pplx-`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn perplexity() -> Pattern {
    Pattern {
        identifier: PERPLEXITY_DEF.identifier.clone(),
        segments: PERPLEXITY_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a Cerebras API key pattern (`csk-`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn cerebras() -> Pattern {
    Pattern {
        identifier: CEREBRAS_DEF.identifier.clone(),
        segments: CEREBRAS_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a Stripe live secret key pattern (`sk_live_`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn stripe_live() -> Pattern {
    Pattern {
        identifier: STRIPE_LIVE_DEF.identifier.clone(),
        segments: STRIPE_LIVE_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a Stripe test secret key pattern (`sk_test_`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn stripe_test() -> Pattern {
    Pattern {
        identifier: STRIPE_TEST_DEF.identifier.clone(),
        segments: STRIPE_TEST_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a Clerk live secret key pattern (`sk_live_`) with an ephemeral salt.
///
/// Clerk live keys share the `sk_live_` prefix with Stripe; the longer variable
/// segment (45–55 chars vs Stripe's 24–32) distinguishes them at detection time.
/// See [`anthropic`] for salt stability semantics.
pub fn clerk() -> Pattern {
    Pattern {
        identifier: CLERK_DEF.identifier.clone(),
        segments: CLERK_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a Svix API key pattern (`svix_`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn svix() -> Pattern {
    Pattern {
        identifier: SVIX_DEF.identifier.clone(),
        segments: SVIX_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a Chromatic project token pattern (`chpt_`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn chromatic() -> Pattern {
    Pattern {
        identifier: CHROMATIC_DEF.identifier.clone(),
        segments: CHROMATIC_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a GitHub OAuth token pattern (`gho_`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn github_oauth() -> Pattern {
    Pattern {
        identifier: GITHUB_OAUTH_DEF.identifier.clone(),
        segments: GITHUB_OAUTH_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a GitHub App server-to-server token pattern (`ghs_`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn github_app_server() -> Pattern {
    Pattern {
        identifier: GITHUB_APP_SERVER_DEF.identifier.clone(),
        segments: GITHUB_APP_SERVER_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a GitHub App user-to-server token pattern (`ghu_`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn github_app_user() -> Pattern {
    Pattern {
        identifier: GITHUB_APP_USER_DEF.identifier.clone(),
        segments: GITHUB_APP_USER_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns a GitHub App refresh token pattern (`ghr_`) with an ephemeral salt.
///
/// See [`anthropic`] for salt stability semantics.
pub fn github_refresh() -> Pattern {
    Pattern {
        identifier: GITHUB_REFRESH_DEF.identifier.clone(),
        segments: GITHUB_REFRESH_DEF.segments.clone(),
        salt: random_salt(),
        digests: vec![],
    }
}

/// Returns all built-in structural patterns with ephemeral per-call salts.
///
/// Fakes produced by these patterns are stable within the returned `Vec<Pattern>`
/// instance but differ across calls to `all()` and across process restarts.
/// For persistent cross-restart stability, use `SecretsFile::to_patterns()`.
///
/// Covers: Anthropic API (`sk-ant-api03-`), Anthropic Admin (`sk-ant-admin01-`,
/// `sk-ant-admin03-`), OpenAI classic (`sk-`), OpenAI project (`sk-proj-`),
/// OpenAI service account (`sk-svcacct-`), AWS AKIA/ASIA, GitHub classic/fine-grained/
/// OAuth (`gho_`)/app-server (`ghs_`)/app-user (`ghu_`)/refresh (`ghr_`),
/// GCP/Gemini (`AIza`), OpenRouter (`sk-or-v1-`), Google OAuth secret (`GOCSPX-`),
/// Slack bot (`xoxb-`), Linear (`lin_api_`), Groq (`gsk_`), Perplexity (`pplx-`),
/// Cerebras (`csk-`), Stripe live/test (`sk_live_`/`sk_test_`), Clerk (`sk_live_`),
/// Svix (`svix_`), Chromatic (`chpt_`).
pub fn all() -> Vec<Pattern> {
    vec![
        anthropic(),
        anthropic_admin01(),
        anthropic_admin03(),
        openai_classic(),
        openai_project(),
        openai_svcacct(),
        aws_akia(),
        aws_asia(),
        github_classic(),
        github_fine_grained(),
        gcp(),
        openrouter(),
        google_oauth_secret(),
        slack_bot(),
        linear(),
        groq(),
        perplexity(),
        cerebras(),
        stripe_live(),
        stripe_test(),
        clerk(),
        svix(),
        chromatic(),
        github_oauth(),
        github_app_server(),
        github_app_user(),
        github_refresh(),
    ]
}

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

    #[test]
    fn test_structural_all_classes_present() {
        // INV-22: all built-in classes present in patterns::all()
        let all = all();
        // Verify by probing each pattern's first Literal segment
        let leading_lits: Vec<&[u8]> = all
            .iter()
            .filter_map(|p| match p.segments.first() {
                Some(Segment::Literal(b)) => Some(b.as_slice()),
                _ => None,
            })
            .collect();
        for expected in &[
            b"sk-ant-api03-".as_slice(),
            b"sk-ant-admin01-",
            b"sk-ant-admin03-",
            b"sk-",
            b"sk-proj-",
            b"sk-svcacct-",
            b"AKIA",
            b"ASIA",
            b"ghp_",
            b"github_pat_",
            b"AIza",
            b"sk-or-v1-",
            b"GOCSPX-",
            b"xoxb-",
            b"lin_api_",
            b"gsk_",
            b"pplx-",
            b"csk-",
            b"sk_live_",
            b"sk_test_",
            b"svix_",
            b"chpt_",
            b"gho_",
            b"ghs_",
            b"ghu_",
            b"ghr_",
        ] {
            assert!(
                leading_lits.contains(expected),
                "missing leading literal: {}",
                std::str::from_utf8(expected).unwrap()
            );
        }
    }

    #[test]
    fn test_aws_akia_try_match_returns_capture() {
        let payload = b"access_key: AKIAIOSFODNN7EXAMPLE";
        let akia_pos = payload.windows(4).position(|w| w == b"AKIA").unwrap();
        let cap = AWS_AKIA_DEF.try_match(payload, akia_pos).unwrap();
        assert_eq!(cap.end, akia_pos + 20);
        assert_eq!(cap.variable_lengths, vec![16]);
    }

    #[test]
    fn test_gcp_key_try_match_returns_capture() {
        let payload = b"AIzaSyD-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
        let cap = GCP_DEF.try_match(payload, 0).unwrap();
        assert_eq!(cap.end, 39);
        assert_eq!(cap.variable_lengths, vec![35]);
    }

    #[test]
    fn test_anthropic_suffix_aa_enforced() {
        // AA suffix must appear; pure A payload still works because A+A == "AA"
        let good = b"sk-ant-api03-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
        assert!(ANTHROPIC_DEF.try_match(good, 0).is_some());
        // Payload with wrong suffix (BB) must not match
        let mut bad = good.to_vec();
        let len = bad.len();
        bad[len - 2] = b'B';
        bad[len - 1] = b'B';
        assert!(ANTHROPIC_DEF.try_match(&bad, 0).is_none());
    }

    #[test]
    fn test_openai_project_requires_t3blbkfj() {
        // Must contain T3BlbkFJ at position 8+58 or 8+74
        let good: Vec<u8> = b"sk-proj-"
            .iter()
            .chain(b"B".repeat(58).iter())
            .chain(b"T3BlbkFJ".iter())
            .chain(b"B".repeat(58).iter())
            .copied()
            .collect();
        assert!(OPENAI_PROJECT_DEF.try_match(&good, 0).is_some());

        // Without T3BlbkFJ — should not match
        let bad: Vec<u8> = b"sk-proj-"
            .iter()
            .chain(b"B".repeat(124).iter())
            .copied()
            .collect();
        assert!(OPENAI_PROJECT_DEF.try_match(&bad, 0).is_none());
    }

    #[test]
    fn test_github_fg_requires_underscore_separator() {
        // Must have _ at position 11+22
        let good: Vec<u8> = b"github_pat_"
            .iter()
            .chain(b"A".repeat(22).iter())
            .chain(b"_".iter())
            .chain(b"B".repeat(59).iter())
            .copied()
            .collect();
        assert!(GITHUB_FG_DEF.try_match(&good, 0).is_some());

        // All A's without embedded _ must not match
        let bad: Vec<u8> = b"github_pat_"
            .iter()
            .chain(b"A".repeat(82).iter())
            .copied()
            .collect();
        assert!(GITHUB_FG_DEF.try_match(&bad, 0).is_none());
    }

    #[test]
    fn test_slack_requires_digit_segments() {
        // Valid: digit-digit-alnum
        let good = b"xoxb-1234567890-1234567890-AAAAAAAAAAAAAAAAAAAAAAAA";
        assert!(SLACK_BOT_DEF.try_match(good, 0).is_some());

        // Invalid: letters in digit position
        let bad = b"xoxb-AAAAAAAAAA-AAAAAAAAAA-AAAAAAAAAAAAAAAAAAAAAAAA";
        assert!(SLACK_BOT_DEF.try_match(bad, 0).is_none());
    }

    #[test]
    fn test_prefix_mismatch_returns_none() {
        let payload = b"not-a-key";
        assert!(ANTHROPIC_DEF.try_match(payload, 0).is_none());
    }

    #[test]
    fn test_all_defs_identifiers_unique() {
        let defs = all_defs();
        assert_eq!(defs.len(), 27, "must have 27 built-in structural defs");
        let mut ids: Vec<&str> = defs.iter().map(|d| d.identifier.as_str()).collect();
        ids.sort();
        ids.dedup();
        assert_eq!(ids.len(), 27, "all identifiers must be unique");
    }

    #[test]
    fn test_all_defs_matches_all_patterns() {
        let defs = all_defs();
        let all = all();
        assert_eq!(
            defs.len(),
            all.len(),
            "all_defs and patterns::all must have same count"
        );
        for def in defs {
            assert!(
                all.iter().any(|p| p.identifier == def.identifier),
                "all_defs entry {} must appear in patterns::all()",
                def.identifier
            );
        }
    }
}