aboutsummaryrefslogtreecommitdiff
path: root/gen/sources.json
blob: 3bb5ea56faf7ce0588c809df97f56d076be623f6 (plain)
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
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
{
  "bcm": {
    "srcs": [
      "crypto/fipsmodule/bcm.c"
    ],
    "internal_hdrs": [
      "crypto/fipsmodule/aes/aes.c",
      "crypto/fipsmodule/aes/aes_nohw.c",
      "crypto/fipsmodule/aes/key_wrap.c",
      "crypto/fipsmodule/aes/mode_wrappers.c",
      "crypto/fipsmodule/bn/add.c",
      "crypto/fipsmodule/bn/asm/x86_64-gcc.c",
      "crypto/fipsmodule/bn/bn.c",
      "crypto/fipsmodule/bn/bytes.c",
      "crypto/fipsmodule/bn/cmp.c",
      "crypto/fipsmodule/bn/ctx.c",
      "crypto/fipsmodule/bn/div.c",
      "crypto/fipsmodule/bn/div_extra.c",
      "crypto/fipsmodule/bn/exponentiation.c",
      "crypto/fipsmodule/bn/gcd.c",
      "crypto/fipsmodule/bn/gcd_extra.c",
      "crypto/fipsmodule/bn/generic.c",
      "crypto/fipsmodule/bn/jacobi.c",
      "crypto/fipsmodule/bn/montgomery.c",
      "crypto/fipsmodule/bn/montgomery_inv.c",
      "crypto/fipsmodule/bn/mul.c",
      "crypto/fipsmodule/bn/prime.c",
      "crypto/fipsmodule/bn/random.c",
      "crypto/fipsmodule/bn/rsaz_exp.c",
      "crypto/fipsmodule/bn/shift.c",
      "crypto/fipsmodule/bn/sqrt.c",
      "crypto/fipsmodule/cipher/aead.c",
      "crypto/fipsmodule/cipher/cipher.c",
      "crypto/fipsmodule/cipher/e_aes.c",
      "crypto/fipsmodule/cipher/e_aesccm.c",
      "crypto/fipsmodule/cmac/cmac.c",
      "crypto/fipsmodule/dh/check.c",
      "crypto/fipsmodule/dh/dh.c",
      "crypto/fipsmodule/digest/digest.c",
      "crypto/fipsmodule/digest/digests.c",
      "crypto/fipsmodule/digestsign/digestsign.c",
      "crypto/fipsmodule/ec/ec.c",
      "crypto/fipsmodule/ec/ec_key.c",
      "crypto/fipsmodule/ec/ec_montgomery.c",
      "crypto/fipsmodule/ec/felem.c",
      "crypto/fipsmodule/ec/oct.c",
      "crypto/fipsmodule/ec/p224-64.c",
      "crypto/fipsmodule/ec/p256-nistz.c",
      "crypto/fipsmodule/ec/p256.c",
      "crypto/fipsmodule/ec/scalar.c",
      "crypto/fipsmodule/ec/simple.c",
      "crypto/fipsmodule/ec/simple_mul.c",
      "crypto/fipsmodule/ec/util.c",
      "crypto/fipsmodule/ec/wnaf.c",
      "crypto/fipsmodule/ecdh/ecdh.c",
      "crypto/fipsmodule/ecdsa/ecdsa.c",
      "crypto/fipsmodule/hkdf/hkdf.c",
      "crypto/fipsmodule/hmac/hmac.c",
      "crypto/fipsmodule/md4/md4.c",
      "crypto/fipsmodule/md5/md5.c",
      "crypto/fipsmodule/modes/cbc.c",
      "crypto/fipsmodule/modes/cfb.c",
      "crypto/fipsmodule/modes/ctr.c",
      "crypto/fipsmodule/modes/gcm.c",
      "crypto/fipsmodule/modes/gcm_nohw.c",
      "crypto/fipsmodule/modes/ofb.c",
      "crypto/fipsmodule/modes/polyval.c",
      "crypto/fipsmodule/rand/ctrdrbg.c",
      "crypto/fipsmodule/rand/fork_detect.c",
      "crypto/fipsmodule/rand/rand.c",
      "crypto/fipsmodule/rand/urandom.c",
      "crypto/fipsmodule/rsa/blinding.c",
      "crypto/fipsmodule/rsa/padding.c",
      "crypto/fipsmodule/rsa/rsa.c",
      "crypto/fipsmodule/rsa/rsa_impl.c",
      "crypto/fipsmodule/self_check/fips.c",
      "crypto/fipsmodule/self_check/self_check.c",
      "crypto/fipsmodule/service_indicator/service_indicator.c",
      "crypto/fipsmodule/sha/sha1.c",
      "crypto/fipsmodule/sha/sha256.c",
      "crypto/fipsmodule/sha/sha512.c",
      "crypto/fipsmodule/tls/kdf.c"
    ],
    "asm": [
      "gen/bcm/aesni-gcm-x86_64-apple.S",
      "gen/bcm/aesni-gcm-x86_64-linux.S",
      "gen/bcm/aesni-x86-apple.S",
      "gen/bcm/aesni-x86-linux.S",
      "gen/bcm/aesni-x86_64-apple.S",
      "gen/bcm/aesni-x86_64-linux.S",
      "gen/bcm/aesv8-armv7-linux.S",
      "gen/bcm/aesv8-armv8-apple.S",
      "gen/bcm/aesv8-armv8-linux.S",
      "gen/bcm/aesv8-armv8-win.S",
      "gen/bcm/aesv8-gcm-armv8-apple.S",
      "gen/bcm/aesv8-gcm-armv8-linux.S",
      "gen/bcm/aesv8-gcm-armv8-win.S",
      "gen/bcm/armv4-mont-linux.S",
      "gen/bcm/armv8-mont-apple.S",
      "gen/bcm/armv8-mont-linux.S",
      "gen/bcm/armv8-mont-win.S",
      "gen/bcm/bn-586-apple.S",
      "gen/bcm/bn-586-linux.S",
      "gen/bcm/bn-armv8-apple.S",
      "gen/bcm/bn-armv8-linux.S",
      "gen/bcm/bn-armv8-win.S",
      "gen/bcm/bsaes-armv7-linux.S",
      "gen/bcm/co-586-apple.S",
      "gen/bcm/co-586-linux.S",
      "gen/bcm/ghash-armv4-linux.S",
      "gen/bcm/ghash-neon-armv8-apple.S",
      "gen/bcm/ghash-neon-armv8-linux.S",
      "gen/bcm/ghash-neon-armv8-win.S",
      "gen/bcm/ghash-ssse3-x86-apple.S",
      "gen/bcm/ghash-ssse3-x86-linux.S",
      "gen/bcm/ghash-ssse3-x86_64-apple.S",
      "gen/bcm/ghash-ssse3-x86_64-linux.S",
      "gen/bcm/ghash-x86-apple.S",
      "gen/bcm/ghash-x86-linux.S",
      "gen/bcm/ghash-x86_64-apple.S",
      "gen/bcm/ghash-x86_64-linux.S",
      "gen/bcm/ghashv8-armv7-linux.S",
      "gen/bcm/ghashv8-armv8-apple.S",
      "gen/bcm/ghashv8-armv8-linux.S",
      "gen/bcm/ghashv8-armv8-win.S",
      "gen/bcm/md5-586-apple.S",
      "gen/bcm/md5-586-linux.S",
      "gen/bcm/md5-x86_64-apple.S",
      "gen/bcm/md5-x86_64-linux.S",
      "gen/bcm/p256-armv8-asm-apple.S",
      "gen/bcm/p256-armv8-asm-linux.S",
      "gen/bcm/p256-armv8-asm-win.S",
      "gen/bcm/p256-x86_64-asm-apple.S",
      "gen/bcm/p256-x86_64-asm-linux.S",
      "gen/bcm/p256_beeu-armv8-asm-apple.S",
      "gen/bcm/p256_beeu-armv8-asm-linux.S",
      "gen/bcm/p256_beeu-armv8-asm-win.S",
      "gen/bcm/p256_beeu-x86_64-asm-apple.S",
      "gen/bcm/p256_beeu-x86_64-asm-linux.S",
      "gen/bcm/rdrand-x86_64-apple.S",
      "gen/bcm/rdrand-x86_64-linux.S",
      "gen/bcm/rsaz-avx2-apple.S",
      "gen/bcm/rsaz-avx2-linux.S",
      "gen/bcm/sha1-586-apple.S",
      "gen/bcm/sha1-586-linux.S",
      "gen/bcm/sha1-armv4-large-linux.S",
      "gen/bcm/sha1-armv8-apple.S",
      "gen/bcm/sha1-armv8-linux.S",
      "gen/bcm/sha1-armv8-win.S",
      "gen/bcm/sha1-x86_64-apple.S",
      "gen/bcm/sha1-x86_64-linux.S",
      "gen/bcm/sha256-586-apple.S",
      "gen/bcm/sha256-586-linux.S",
      "gen/bcm/sha256-armv4-linux.S",
      "gen/bcm/sha256-armv8-apple.S",
      "gen/bcm/sha256-armv8-linux.S",
      "gen/bcm/sha256-armv8-win.S",
      "gen/bcm/sha256-x86_64-apple.S",
      "gen/bcm/sha256-x86_64-linux.S",
      "gen/bcm/sha512-586-apple.S",
      "gen/bcm/sha512-586-linux.S",
      "gen/bcm/sha512-armv4-linux.S",
      "gen/bcm/sha512-armv8-apple.S",
      "gen/bcm/sha512-armv8-linux.S",
      "gen/bcm/sha512-armv8-win.S",
      "gen/bcm/sha512-x86_64-apple.S",
      "gen/bcm/sha512-x86_64-linux.S",
      "gen/bcm/vpaes-armv7-linux.S",
      "gen/bcm/vpaes-armv8-apple.S",
      "gen/bcm/vpaes-armv8-linux.S",
      "gen/bcm/vpaes-armv8-win.S",
      "gen/bcm/vpaes-x86-apple.S",
      "gen/bcm/vpaes-x86-linux.S",
      "gen/bcm/vpaes-x86_64-apple.S",
      "gen/bcm/vpaes-x86_64-linux.S",
      "gen/bcm/x86-mont-apple.S",
      "gen/bcm/x86-mont-linux.S",
      "gen/bcm/x86_64-mont-apple.S",
      "gen/bcm/x86_64-mont-linux.S",
      "gen/bcm/x86_64-mont5-apple.S",
      "gen/bcm/x86_64-mont5-linux.S",
      "third_party/fiat/asm/fiat_p256_adx_mul.S",
      "third_party/fiat/asm/fiat_p256_adx_sqr.S"
    ],
    "nasm": [
      "gen/bcm/aesni-gcm-x86_64-win.asm",
      "gen/bcm/aesni-x86-win.asm",
      "gen/bcm/aesni-x86_64-win.asm",
      "gen/bcm/bn-586-win.asm",
      "gen/bcm/co-586-win.asm",
      "gen/bcm/ghash-ssse3-x86-win.asm",
      "gen/bcm/ghash-ssse3-x86_64-win.asm",
      "gen/bcm/ghash-x86-win.asm",
      "gen/bcm/ghash-x86_64-win.asm",
      "gen/bcm/md5-586-win.asm",
      "gen/bcm/md5-x86_64-win.asm",
      "gen/bcm/p256-x86_64-asm-win.asm",
      "gen/bcm/p256_beeu-x86_64-asm-win.asm",
      "gen/bcm/rdrand-x86_64-win.asm",
      "gen/bcm/rsaz-avx2-win.asm",
      "gen/bcm/sha1-586-win.asm",
      "gen/bcm/sha1-x86_64-win.asm",
      "gen/bcm/sha256-586-win.asm",
      "gen/bcm/sha256-x86_64-win.asm",
      "gen/bcm/sha512-586-win.asm",
      "gen/bcm/sha512-x86_64-win.asm",
      "gen/bcm/vpaes-x86-win.asm",
      "gen/bcm/vpaes-x86_64-win.asm",
      "gen/bcm/x86-mont-win.asm",
      "gen/bcm/x86_64-mont-win.asm",
      "gen/bcm/x86_64-mont5-win.asm"
    ]
  },
  "bssl": {
    "srcs": [
      "tool/args.cc",
      "tool/ciphers.cc",
      "tool/client.cc",
      "tool/const.cc",
      "tool/digest.cc",
      "tool/fd.cc",
      "tool/file.cc",
      "tool/generate_ech.cc",
      "tool/generate_ed25519.cc",
      "tool/genrsa.cc",
      "tool/pkcs12.cc",
      "tool/rand.cc",
      "tool/server.cc",
      "tool/sign.cc",
      "tool/speed.cc",
      "tool/tool.cc",
      "tool/transport_common.cc"
    ],
    "internal_hdrs": [
      "tool/internal.h",
      "tool/transport_common.h"
    ]
  },
  "crypto": {
    "srcs": [
      "crypto/asn1/a_bitstr.c",
      "crypto/asn1/a_bool.c",
      "crypto/asn1/a_d2i_fp.c",
      "crypto/asn1/a_dup.c",
      "crypto/asn1/a_gentm.c",
      "crypto/asn1/a_i2d_fp.c",
      "crypto/asn1/a_int.c",
      "crypto/asn1/a_mbstr.c",
      "crypto/asn1/a_object.c",
      "crypto/asn1/a_octet.c",
      "crypto/asn1/a_strex.c",
      "crypto/asn1/a_strnid.c",
      "crypto/asn1/a_time.c",
      "crypto/asn1/a_type.c",
      "crypto/asn1/a_utctm.c",
      "crypto/asn1/asn1_lib.c",
      "crypto/asn1/asn1_par.c",
      "crypto/asn1/asn_pack.c",
      "crypto/asn1/f_int.c",
      "crypto/asn1/f_string.c",
      "crypto/asn1/posix_time.c",
      "crypto/asn1/tasn_dec.c",
      "crypto/asn1/tasn_enc.c",
      "crypto/asn1/tasn_fre.c",
      "crypto/asn1/tasn_new.c",
      "crypto/asn1/tasn_typ.c",
      "crypto/asn1/tasn_utl.c",
      "crypto/base64/base64.c",
      "crypto/bio/bio.c",
      "crypto/bio/bio_mem.c",
      "crypto/bio/connect.c",
      "crypto/bio/errno.c",
      "crypto/bio/fd.c",
      "crypto/bio/file.c",
      "crypto/bio/hexdump.c",
      "crypto/bio/pair.c",
      "crypto/bio/printf.c",
      "crypto/bio/socket.c",
      "crypto/bio/socket_helper.c",
      "crypto/blake2/blake2.c",
      "crypto/bn_extra/bn_asn1.c",
      "crypto/bn_extra/convert.c",
      "crypto/buf/buf.c",
      "crypto/bytestring/asn1_compat.c",
      "crypto/bytestring/ber.c",
      "crypto/bytestring/cbb.c",
      "crypto/bytestring/cbs.c",
      "crypto/bytestring/unicode.c",
      "crypto/chacha/chacha.c",
      "crypto/cipher_extra/cipher_extra.c",
      "crypto/cipher_extra/derive_key.c",
      "crypto/cipher_extra/e_aesctrhmac.c",
      "crypto/cipher_extra/e_aesgcmsiv.c",
      "crypto/cipher_extra/e_chacha20poly1305.c",
      "crypto/cipher_extra/e_des.c",
      "crypto/cipher_extra/e_null.c",
      "crypto/cipher_extra/e_rc2.c",
      "crypto/cipher_extra/e_rc4.c",
      "crypto/cipher_extra/e_tls.c",
      "crypto/cipher_extra/tls_cbc.c",
      "crypto/conf/conf.c",
      "crypto/cpu_aarch64_apple.c",
      "crypto/cpu_aarch64_fuchsia.c",
      "crypto/cpu_aarch64_linux.c",
      "crypto/cpu_aarch64_openbsd.c",
      "crypto/cpu_aarch64_sysreg.c",
      "crypto/cpu_aarch64_win.c",
      "crypto/cpu_arm_freebsd.c",
      "crypto/cpu_arm_linux.c",
      "crypto/cpu_intel.c",
      "crypto/crypto.c",
      "crypto/curve25519/curve25519.c",
      "crypto/curve25519/curve25519_64_adx.c",
      "crypto/curve25519/spake25519.c",
      "crypto/des/des.c",
      "crypto/dh_extra/dh_asn1.c",
      "crypto/dh_extra/params.c",
      "crypto/digest_extra/digest_extra.c",
      "crypto/dilithium/dilithium.c",
      "crypto/dsa/dsa.c",
      "crypto/dsa/dsa_asn1.c",
      "crypto/ec_extra/ec_asn1.c",
      "crypto/ec_extra/ec_derive.c",
      "crypto/ec_extra/hash_to_curve.c",
      "crypto/ecdh_extra/ecdh_extra.c",
      "crypto/ecdsa_extra/ecdsa_asn1.c",
      "crypto/engine/engine.c",
      "crypto/err/err.c",
      "crypto/evp/evp.c",
      "crypto/evp/evp_asn1.c",
      "crypto/evp/evp_ctx.c",
      "crypto/evp/p_dh.c",
      "crypto/evp/p_dh_asn1.c",
      "crypto/evp/p_dsa_asn1.c",
      "crypto/evp/p_ec.c",
      "crypto/evp/p_ec_asn1.c",
      "crypto/evp/p_ed25519.c",
      "crypto/evp/p_ed25519_asn1.c",
      "crypto/evp/p_hkdf.c",
      "crypto/evp/p_rsa.c",
      "crypto/evp/p_rsa_asn1.c",
      "crypto/evp/p_x25519.c",
      "crypto/evp/p_x25519_asn1.c",
      "crypto/evp/pbkdf.c",
      "crypto/evp/print.c",
      "crypto/evp/scrypt.c",
      "crypto/evp/sign.c",
      "crypto/ex_data.c",
      "crypto/fipsmodule/fips_shared_support.c",
      "crypto/hpke/hpke.c",
      "crypto/hrss/hrss.c",
      "crypto/keccak/keccak.c",
      "crypto/kyber/kyber.c",
      "crypto/lhash/lhash.c",
      "crypto/mem.c",
      "crypto/obj/obj.c",
      "crypto/obj/obj_xref.c",
      "crypto/pem/pem_all.c",
      "crypto/pem/pem_info.c",
      "crypto/pem/pem_lib.c",
      "crypto/pem/pem_oth.c",
      "crypto/pem/pem_pk8.c",
      "crypto/pem/pem_pkey.c",
      "crypto/pem/pem_x509.c",
      "crypto/pem/pem_xaux.c",
      "crypto/pkcs7/pkcs7.c",
      "crypto/pkcs7/pkcs7_x509.c",
      "crypto/pkcs8/p5_pbev2.c",
      "crypto/pkcs8/pkcs8.c",
      "crypto/pkcs8/pkcs8_x509.c",
      "crypto/poly1305/poly1305.c",
      "crypto/poly1305/poly1305_arm.c",
      "crypto/poly1305/poly1305_vec.c",
      "crypto/pool/pool.c",
      "crypto/rand_extra/deterministic.c",
      "crypto/rand_extra/forkunsafe.c",
      "crypto/rand_extra/getentropy.c",
      "crypto/rand_extra/ios.c",
      "crypto/rand_extra/passive.c",
      "crypto/rand_extra/rand_extra.c",
      "crypto/rand_extra/trusty.c",
      "crypto/rand_extra/windows.c",
      "crypto/rc4/rc4.c",
      "crypto/refcount.c",
      "crypto/rsa_extra/rsa_asn1.c",
      "crypto/rsa_extra/rsa_crypt.c",
      "crypto/rsa_extra/rsa_print.c",
      "crypto/siphash/siphash.c",
      "crypto/spx/address.c",
      "crypto/spx/fors.c",
      "crypto/spx/merkle.c",
      "crypto/spx/spx.c",
      "crypto/spx/spx_util.c",
      "crypto/spx/thash.c",
      "crypto/spx/wots.c",
      "crypto/stack/stack.c",
      "crypto/thread.c",
      "crypto/thread_none.c",
      "crypto/thread_pthread.c",
      "crypto/thread_win.c",
      "crypto/trust_token/pmbtoken.c",
      "crypto/trust_token/trust_token.c",
      "crypto/trust_token/voprf.c",
      "crypto/x509/a_digest.c",
      "crypto/x509/a_sign.c",
      "crypto/x509/a_verify.c",
      "crypto/x509/algorithm.c",
      "crypto/x509/asn1_gen.c",
      "crypto/x509/by_dir.c",
      "crypto/x509/by_file.c",
      "crypto/x509/i2d_pr.c",
      "crypto/x509/name_print.c",
      "crypto/x509/policy.c",
      "crypto/x509/rsa_pss.c",
      "crypto/x509/t_crl.c",
      "crypto/x509/t_req.c",
      "crypto/x509/t_x509.c",
      "crypto/x509/t_x509a.c",
      "crypto/x509/v3_akey.c",
      "crypto/x509/v3_akeya.c",
      "crypto/x509/v3_alt.c",
      "crypto/x509/v3_bcons.c",
      "crypto/x509/v3_bitst.c",
      "crypto/x509/v3_conf.c",
      "crypto/x509/v3_cpols.c",
      "crypto/x509/v3_crld.c",
      "crypto/x509/v3_enum.c",
      "crypto/x509/v3_extku.c",
      "crypto/x509/v3_genn.c",
      "crypto/x509/v3_ia5.c",
      "crypto/x509/v3_info.c",
      "crypto/x509/v3_int.c",
      "crypto/x509/v3_lib.c",
      "crypto/x509/v3_ncons.c",
      "crypto/x509/v3_ocsp.c",
      "crypto/x509/v3_pcons.c",
      "crypto/x509/v3_pmaps.c",
      "crypto/x509/v3_prn.c",
      "crypto/x509/v3_purp.c",
      "crypto/x509/v3_skey.c",
      "crypto/x509/v3_utl.c",
      "crypto/x509/x509.c",
      "crypto/x509/x509_att.c",
      "crypto/x509/x509_cmp.c",
      "crypto/x509/x509_d2.c",
      "crypto/x509/x509_def.c",
      "crypto/x509/x509_ext.c",
      "crypto/x509/x509_lu.c",
      "crypto/x509/x509_obj.c",
      "crypto/x509/x509_req.c",
      "crypto/x509/x509_set.c",
      "crypto/x509/x509_trs.c",
      "crypto/x509/x509_txt.c",
      "crypto/x509/x509_v3.c",
      "crypto/x509/x509_vfy.c",
      "crypto/x509/x509_vpm.c",
      "crypto/x509/x509cset.c",
      "crypto/x509/x509name.c",
      "crypto/x509/x509rset.c",
      "crypto/x509/x509spki.c",
      "crypto/x509/x_algor.c",
      "crypto/x509/x_all.c",
      "crypto/x509/x_attrib.c",
      "crypto/x509/x_crl.c",
      "crypto/x509/x_exten.c",
      "crypto/x509/x_name.c",
      "crypto/x509/x_pubkey.c",
      "crypto/x509/x_req.c",
      "crypto/x509/x_sig.c",
      "crypto/x509/x_spki.c",
      "crypto/x509/x_val.c",
      "crypto/x509/x_x509.c",
      "crypto/x509/x_x509a.c",
      "gen/crypto/err_data.c"
    ],
    "hdrs": [
      "include/openssl/aead.h",
      "include/openssl/aes.h",
      "include/openssl/arm_arch.h",
      "include/openssl/asm_base.h",
      "include/openssl/asn1.h",
      "include/openssl/asn1_mac.h",
      "include/openssl/asn1t.h",
      "include/openssl/base.h",
      "include/openssl/base64.h",
      "include/openssl/bio.h",
      "include/openssl/blake2.h",
      "include/openssl/blowfish.h",
      "include/openssl/bn.h",
      "include/openssl/buf.h",
      "include/openssl/buffer.h",
      "include/openssl/bytestring.h",
      "include/openssl/cast.h",
      "include/openssl/chacha.h",
      "include/openssl/cipher.h",
      "include/openssl/cmac.h",
      "include/openssl/conf.h",
      "include/openssl/cpu.h",
      "include/openssl/crypto.h",
      "include/openssl/ctrdrbg.h",
      "include/openssl/curve25519.h",
      "include/openssl/des.h",
      "include/openssl/dh.h",
      "include/openssl/digest.h",
      "include/openssl/dsa.h",
      "include/openssl/e_os2.h",
      "include/openssl/ec.h",
      "include/openssl/ec_key.h",
      "include/openssl/ecdh.h",
      "include/openssl/ecdsa.h",
      "include/openssl/engine.h",
      "include/openssl/err.h",
      "include/openssl/evp.h",
      "include/openssl/evp_errors.h",
      "include/openssl/ex_data.h",
      "include/openssl/experimental/dilithium.h",
      "include/openssl/experimental/kyber.h",
      "include/openssl/experimental/spx.h",
      "include/openssl/hkdf.h",
      "include/openssl/hmac.h",
      "include/openssl/hpke.h",
      "include/openssl/hrss.h",
      "include/openssl/is_boringssl.h",
      "include/openssl/kdf.h",
      "include/openssl/lhash.h",
      "include/openssl/md4.h",
      "include/openssl/md5.h",
      "include/openssl/mem.h",
      "include/openssl/nid.h",
      "include/openssl/obj.h",
      "include/openssl/obj_mac.h",
      "include/openssl/objects.h",
      "include/openssl/opensslconf.h",
      "include/openssl/opensslv.h",
      "include/openssl/ossl_typ.h",
      "include/openssl/pem.h",
      "include/openssl/pkcs12.h",
      "include/openssl/pkcs7.h",
      "include/openssl/pkcs8.h",
      "include/openssl/poly1305.h",
      "include/openssl/pool.h",
      "include/openssl/posix_time.h",
      "include/openssl/rand.h",
      "include/openssl/rc4.h",
      "include/openssl/ripemd.h",
      "include/openssl/rsa.h",
      "include/openssl/safestack.h",
      "include/openssl/service_indicator.h",
      "include/openssl/sha.h",
      "include/openssl/siphash.h",
      "include/openssl/span.h",
      "include/openssl/stack.h",
      "include/openssl/target.h",
      "include/openssl/thread.h",
      "include/openssl/time.h",
      "include/openssl/trust_token.h",
      "include/openssl/type_check.h",
      "include/openssl/x509.h",
      "include/openssl/x509_vfy.h",
      "include/openssl/x509v3.h",
      "include/openssl/x509v3_errors.h"
    ],
    "internal_hdrs": [
      "crypto/asn1/internal.h",
      "crypto/bio/internal.h",
      "crypto/bytestring/internal.h",
      "crypto/chacha/internal.h",
      "crypto/cipher_extra/internal.h",
      "crypto/conf/internal.h",
      "crypto/cpu_arm_linux.h",
      "crypto/curve25519/curve25519_tables.h",
      "crypto/curve25519/internal.h",
      "crypto/des/internal.h",
      "crypto/dilithium/internal.h",
      "crypto/dsa/internal.h",
      "crypto/ec_extra/internal.h",
      "crypto/err/internal.h",
      "crypto/evp/internal.h",
      "crypto/fipsmodule/aes/internal.h",
      "crypto/fipsmodule/bn/internal.h",
      "crypto/fipsmodule/bn/rsaz_exp.h",
      "crypto/fipsmodule/cipher/internal.h",
      "crypto/fipsmodule/delocate.h",
      "crypto/fipsmodule/dh/internal.h",
      "crypto/fipsmodule/digest/internal.h",
      "crypto/fipsmodule/digest/md32_common.h",
      "crypto/fipsmodule/ec/builtin_curves.h",
      "crypto/fipsmodule/ec/internal.h",
      "crypto/fipsmodule/ec/p256-nistz-table.h",
      "crypto/fipsmodule/ec/p256-nistz.h",
      "crypto/fipsmodule/ec/p256_table.h",
      "crypto/fipsmodule/ecdsa/internal.h",
      "crypto/fipsmodule/md5/internal.h",
      "crypto/fipsmodule/modes/internal.h",
      "crypto/fipsmodule/rand/fork_detect.h",
      "crypto/fipsmodule/rand/getrandom_fillin.h",
      "crypto/fipsmodule/rand/internal.h",
      "crypto/fipsmodule/rsa/internal.h",
      "crypto/fipsmodule/service_indicator/internal.h",
      "crypto/fipsmodule/sha/internal.h",
      "crypto/fipsmodule/tls/internal.h",
      "crypto/hrss/internal.h",
      "crypto/internal.h",
      "crypto/keccak/internal.h",
      "crypto/kyber/internal.h",
      "crypto/lhash/internal.h",
      "crypto/obj/obj_dat.h",
      "crypto/pkcs7/internal.h",
      "crypto/pkcs8/internal.h",
      "crypto/poly1305/internal.h",
      "crypto/pool/internal.h",
      "crypto/rsa_extra/internal.h",
      "crypto/spx/address.h",
      "crypto/spx/fors.h",
      "crypto/spx/merkle.h",
      "crypto/spx/params.h",
      "crypto/spx/spx_util.h",
      "crypto/spx/thash.h",
      "crypto/spx/wots.h",
      "crypto/trust_token/internal.h",
      "crypto/x509/ext_dat.h",
      "crypto/x509/internal.h",
      "third_party/fiat/curve25519_32.h",
      "third_party/fiat/curve25519_64.h",
      "third_party/fiat/curve25519_64_adx.h",
      "third_party/fiat/curve25519_64_msvc.h",
      "third_party/fiat/p256_32.h",
      "third_party/fiat/p256_64.h",
      "third_party/fiat/p256_64_msvc.h"
    ],
    "asm": [
      "crypto/curve25519/asm/x25519-asm-arm.S",
      "crypto/hrss/asm/poly_rq_mul.S",
      "crypto/poly1305/poly1305_arm_asm.S",
      "gen/crypto/aes128gcmsiv-x86_64-apple.S",
      "gen/crypto/aes128gcmsiv-x86_64-linux.S",
      "gen/crypto/chacha-armv4-linux.S",
      "gen/crypto/chacha-armv8-apple.S",
      "gen/crypto/chacha-armv8-linux.S",
      "gen/crypto/chacha-armv8-win.S",
      "gen/crypto/chacha-x86-apple.S",
      "gen/crypto/chacha-x86-linux.S",
      "gen/crypto/chacha-x86_64-apple.S",
      "gen/crypto/chacha-x86_64-linux.S",
      "gen/crypto/chacha20_poly1305_armv8-apple.S",
      "gen/crypto/chacha20_poly1305_armv8-linux.S",
      "gen/crypto/chacha20_poly1305_armv8-win.S",
      "gen/crypto/chacha20_poly1305_x86_64-apple.S",
      "gen/crypto/chacha20_poly1305_x86_64-linux.S",
      "third_party/fiat/asm/fiat_curve25519_adx_mul.S",
      "third_party/fiat/asm/fiat_curve25519_adx_square.S"
    ],
    "nasm": [
      "gen/crypto/aes128gcmsiv-x86_64-win.asm",
      "gen/crypto/chacha-x86-win.asm",
      "gen/crypto/chacha-x86_64-win.asm",
      "gen/crypto/chacha20_poly1305_x86_64-win.asm"
    ]
  },
  "crypto_test": {
    "srcs": [
      "crypto/abi_self_test.cc",
      "crypto/asn1/asn1_test.cc",
      "crypto/base64/base64_test.cc",
      "crypto/bio/bio_test.cc",
      "crypto/blake2/blake2_test.cc",
      "crypto/buf/buf_test.cc",
      "crypto/bytestring/bytestring_test.cc",
      "crypto/chacha/chacha_test.cc",
      "crypto/cipher_extra/aead_test.cc",
      "crypto/cipher_extra/cipher_test.cc",
      "crypto/compiler_test.cc",
      "crypto/conf/conf_test.cc",
      "crypto/constant_time_test.cc",
      "crypto/cpu_arm_linux_test.cc",
      "crypto/crypto_test.cc",
      "crypto/curve25519/ed25519_test.cc",
      "crypto/curve25519/spake25519_test.cc",
      "crypto/curve25519/x25519_test.cc",
      "crypto/dh_extra/dh_test.cc",
      "crypto/digest_extra/digest_test.cc",
      "crypto/dilithium/dilithium_test.cc",
      "crypto/dsa/dsa_test.cc",
      "crypto/ecdh_extra/ecdh_test.cc",
      "crypto/err/err_test.cc",
      "crypto/evp/evp_extra_test.cc",
      "crypto/evp/evp_test.cc",
      "crypto/evp/pbkdf_test.cc",
      "crypto/evp/scrypt_test.cc",
      "crypto/fipsmodule/aes/aes_test.cc",
      "crypto/fipsmodule/bn/bn_test.cc",
      "crypto/fipsmodule/cmac/cmac_test.cc",
      "crypto/fipsmodule/ec/ec_test.cc",
      "crypto/fipsmodule/ec/p256-nistz_test.cc",
      "crypto/fipsmodule/ec/p256_test.cc",
      "crypto/fipsmodule/ecdsa/ecdsa_test.cc",
      "crypto/fipsmodule/hkdf/hkdf_test.cc",
      "crypto/fipsmodule/md5/md5_test.cc",
      "crypto/fipsmodule/modes/gcm_test.cc",
      "crypto/fipsmodule/rand/ctrdrbg_test.cc",
      "crypto/fipsmodule/rand/fork_detect_test.cc",
      "crypto/fipsmodule/service_indicator/service_indicator_test.cc",
      "crypto/fipsmodule/sha/sha_test.cc",
      "crypto/hmac_extra/hmac_test.cc",
      "crypto/hpke/hpke_test.cc",
      "crypto/hrss/hrss_test.cc",
      "crypto/impl_dispatch_test.cc",
      "crypto/keccak/keccak_test.cc",
      "crypto/kyber/kyber_test.cc",
      "crypto/lhash/lhash_test.cc",
      "crypto/obj/obj_test.cc",
      "crypto/pem/pem_test.cc",
      "crypto/pkcs7/pkcs7_test.cc",
      "crypto/pkcs8/pkcs12_test.cc",
      "crypto/pkcs8/pkcs8_test.cc",
      "crypto/poly1305/poly1305_test.cc",
      "crypto/pool/pool_test.cc",
      "crypto/rand_extra/getentropy_test.cc",
      "crypto/rand_extra/rand_test.cc",
      "crypto/refcount_test.cc",
      "crypto/rsa_extra/rsa_test.cc",
      "crypto/self_test.cc",
      "crypto/siphash/siphash_test.cc",
      "crypto/spx/spx_test.cc",
      "crypto/stack/stack_test.cc",
      "crypto/test/gtest_main.cc",
      "crypto/thread_test.cc",
      "crypto/trust_token/trust_token_test.cc",
      "crypto/x509/tab_test.cc",
      "crypto/x509/x509_test.cc",
      "crypto/x509/x509_time_test.cc"
    ],
    "data": [
      "crypto/blake2/blake2b256_tests.txt",
      "crypto/cipher_extra/test/aes_128_cbc_sha1_tls_implicit_iv_tests.txt",
      "crypto/cipher_extra/test/aes_128_cbc_sha1_tls_tests.txt",
      "crypto/cipher_extra/test/aes_128_ccm_bluetooth_8_tests.txt",
      "crypto/cipher_extra/test/aes_128_ccm_bluetooth_tests.txt",
      "crypto/cipher_extra/test/aes_128_ccm_matter_tests.txt",
      "crypto/cipher_extra/test/aes_128_ctr_hmac_sha256.txt",
      "crypto/cipher_extra/test/aes_128_gcm_randnonce_tests.txt",
      "crypto/cipher_extra/test/aes_128_gcm_siv_tests.txt",
      "crypto/cipher_extra/test/aes_128_gcm_tests.txt",
      "crypto/cipher_extra/test/aes_192_gcm_tests.txt",
      "crypto/cipher_extra/test/aes_256_cbc_sha1_tls_implicit_iv_tests.txt",
      "crypto/cipher_extra/test/aes_256_cbc_sha1_tls_tests.txt",
      "crypto/cipher_extra/test/aes_256_ctr_hmac_sha256.txt",
      "crypto/cipher_extra/test/aes_256_gcm_randnonce_tests.txt",
      "crypto/cipher_extra/test/aes_256_gcm_siv_tests.txt",
      "crypto/cipher_extra/test/aes_256_gcm_tests.txt",
      "crypto/cipher_extra/test/chacha20_poly1305_tests.txt",
      "crypto/cipher_extra/test/cipher_tests.txt",
      "crypto/cipher_extra/test/des_ede3_cbc_sha1_tls_implicit_iv_tests.txt",
      "crypto/cipher_extra/test/des_ede3_cbc_sha1_tls_tests.txt",
      "crypto/cipher_extra/test/nist_cavp/aes_128_cbc.txt",
      "crypto/cipher_extra/test/nist_cavp/aes_128_ctr.txt",
      "crypto/cipher_extra/test/nist_cavp/aes_128_gcm.txt",
      "crypto/cipher_extra/test/nist_cavp/aes_192_cbc.txt",
      "crypto/cipher_extra/test/nist_cavp/aes_192_ctr.txt",
      "crypto/cipher_extra/test/nist_cavp/aes_256_cbc.txt",
      "crypto/cipher_extra/test/nist_cavp/aes_256_ctr.txt",
      "crypto/cipher_extra/test/nist_cavp/aes_256_gcm.txt",
      "crypto/cipher_extra/test/nist_cavp/tdes_cbc.txt",
      "crypto/cipher_extra/test/nist_cavp/tdes_ecb.txt",
      "crypto/cipher_extra/test/xchacha20_poly1305_tests.txt",
      "crypto/curve25519/ed25519_tests.txt",
      "crypto/dilithium/dilithium_tests.txt",
      "crypto/dilithium/edge_cases_draft_dilithium3_sign.txt",
      "crypto/dilithium/edge_cases_draft_dilithium3_verify.txt",
      "crypto/ecdh_extra/ecdh_tests.txt",
      "crypto/evp/evp_tests.txt",
      "crypto/evp/scrypt_tests.txt",
      "crypto/fipsmodule/aes/aes_tests.txt",
      "crypto/fipsmodule/bn/test/exp_tests.txt",
      "crypto/fipsmodule/bn/test/gcd_tests.txt",
      "crypto/fipsmodule/bn/test/miller_rabin_tests.txt",
      "crypto/fipsmodule/bn/test/mod_exp_tests.txt",
      "crypto/fipsmodule/bn/test/mod_inv_tests.txt",
      "crypto/fipsmodule/bn/test/mod_mul_tests.txt",
      "crypto/fipsmodule/bn/test/mod_sqrt_tests.txt",
      "crypto/fipsmodule/bn/test/product_tests.txt",
      "crypto/fipsmodule/bn/test/quotient_tests.txt",
      "crypto/fipsmodule/bn/test/shift_tests.txt",
      "crypto/fipsmodule/bn/test/sum_tests.txt",
      "crypto/fipsmodule/cmac/cavp_3des_cmac_tests.txt",
      "crypto/fipsmodule/cmac/cavp_aes128_cmac_tests.txt",
      "crypto/fipsmodule/cmac/cavp_aes192_cmac_tests.txt",
      "crypto/fipsmodule/cmac/cavp_aes256_cmac_tests.txt",
      "crypto/fipsmodule/ec/ec_scalar_base_mult_tests.txt",
      "crypto/fipsmodule/ec/p256-nistz_tests.txt",
      "crypto/fipsmodule/ecdsa/ecdsa_sign_tests.txt",
      "crypto/fipsmodule/ecdsa/ecdsa_verify_tests.txt",
      "crypto/fipsmodule/modes/gcm_tests.txt",
      "crypto/fipsmodule/rand/ctrdrbg_vectors.txt",
      "crypto/hmac_extra/hmac_tests.txt",
      "crypto/hpke/hpke_test_vectors.txt",
      "crypto/keccak/keccak_tests.txt",
      "crypto/kyber/kyber_tests.txt",
      "crypto/pkcs8/test/bad1.p12",
      "crypto/pkcs8/test/bad2.p12",
      "crypto/pkcs8/test/bad3.p12",
      "crypto/pkcs8/test/empty_password.p12",
      "crypto/pkcs8/test/empty_password_ber.p12",
      "crypto/pkcs8/test/empty_password_ber_nested.p12",
      "crypto/pkcs8/test/no_encryption.p12",
      "crypto/pkcs8/test/nss.p12",
      "crypto/pkcs8/test/null_password.p12",
      "crypto/pkcs8/test/openssl.p12",
      "crypto/pkcs8/test/pbes2_sha1.p12",
      "crypto/pkcs8/test/pbes2_sha256.p12",
      "crypto/pkcs8/test/unicode_password.p12",
      "crypto/pkcs8/test/windows.p12",
      "crypto/poly1305/poly1305_tests.txt",
      "crypto/siphash/siphash_tests.txt",
      "crypto/spx/spx_tests.txt",
      "crypto/spx/spx_tests_deterministic.txt",
      "crypto/x509/test/basic_constraints_ca.pem",
      "crypto/x509/test/basic_constraints_ca_pathlen_0.pem",
      "crypto/x509/test/basic_constraints_ca_pathlen_1.pem",
      "crypto/x509/test/basic_constraints_ca_pathlen_10.pem",
      "crypto/x509/test/basic_constraints_leaf.pem",
      "crypto/x509/test/basic_constraints_none.pem",
      "crypto/x509/test/invalid_extension_intermediate.pem",
      "crypto/x509/test/invalid_extension_intermediate_authority_key_identifier.pem",
      "crypto/x509/test/invalid_extension_intermediate_basic_constraints.pem",
      "crypto/x509/test/invalid_extension_intermediate_ext_key_usage.pem",
      "crypto/x509/test/invalid_extension_intermediate_key_usage.pem",
      "crypto/x509/test/invalid_extension_intermediate_name_constraints.pem",
      "crypto/x509/test/invalid_extension_intermediate_subject_alt_name.pem",
      "crypto/x509/test/invalid_extension_intermediate_subject_key_identifier.pem",
      "crypto/x509/test/invalid_extension_leaf.pem",
      "crypto/x509/test/invalid_extension_leaf_authority_key_identifier.pem",
      "crypto/x509/test/invalid_extension_leaf_basic_constraints.pem",
      "crypto/x509/test/invalid_extension_leaf_ext_key_usage.pem",
      "crypto/x509/test/invalid_extension_leaf_key_usage.pem",
      "crypto/x509/test/invalid_extension_leaf_name_constraints.pem",
      "crypto/x509/test/invalid_extension_leaf_subject_alt_name.pem",
      "crypto/x509/test/invalid_extension_leaf_subject_key_identifier.pem",
      "crypto/x509/test/invalid_extension_root.pem",
      "crypto/x509/test/invalid_extension_root_authority_key_identifier.pem",
      "crypto/x509/test/invalid_extension_root_basic_constraints.pem",
      "crypto/x509/test/invalid_extension_root_ext_key_usage.pem",
      "crypto/x509/test/invalid_extension_root_key_usage.pem",
      "crypto/x509/test/invalid_extension_root_name_constraints.pem",
      "crypto/x509/test/invalid_extension_root_subject_alt_name.pem",
      "crypto/x509/test/invalid_extension_root_subject_key_identifier.pem",
      "crypto/x509/test/many_constraints.pem",
      "crypto/x509/test/many_names1.pem",
      "crypto/x509/test/many_names2.pem",
      "crypto/x509/test/many_names3.pem",
      "crypto/x509/test/policy_intermediate.pem",
      "crypto/x509/test/policy_intermediate_any.pem",
      "crypto/x509/test/policy_intermediate_duplicate.pem",
      "crypto/x509/test/policy_intermediate_invalid.pem",
      "crypto/x509/test/policy_intermediate_mapped.pem",
      "crypto/x509/test/policy_intermediate_mapped_any.pem",
      "crypto/x509/test/policy_intermediate_mapped_oid3.pem",
      "crypto/x509/test/policy_intermediate_require.pem",
      "crypto/x509/test/policy_intermediate_require1.pem",
      "crypto/x509/test/policy_intermediate_require2.pem",
      "crypto/x509/test/policy_intermediate_require_duplicate.pem",
      "crypto/x509/test/policy_intermediate_require_no_policies.pem",
      "crypto/x509/test/policy_leaf.pem",
      "crypto/x509/test/policy_leaf_any.pem",
      "crypto/x509/test/policy_leaf_duplicate.pem",
      "crypto/x509/test/policy_leaf_invalid.pem",
      "crypto/x509/test/policy_leaf_none.pem",
      "crypto/x509/test/policy_leaf_oid1.pem",
      "crypto/x509/test/policy_leaf_oid2.pem",
      "crypto/x509/test/policy_leaf_oid3.pem",
      "crypto/x509/test/policy_leaf_oid4.pem",
      "crypto/x509/test/policy_leaf_oid5.pem",
      "crypto/x509/test/policy_leaf_require.pem",
      "crypto/x509/test/policy_leaf_require1.pem",
      "crypto/x509/test/policy_root.pem",
      "crypto/x509/test/policy_root2.pem",
      "crypto/x509/test/policy_root_cross_inhibit_mapping.pem",
      "crypto/x509/test/pss_sha1.pem",
      "crypto/x509/test/pss_sha1_explicit.pem",
      "crypto/x509/test/pss_sha1_mgf1_syntax_error.pem",
      "crypto/x509/test/pss_sha224.pem",
      "crypto/x509/test/pss_sha256.pem",
      "crypto/x509/test/pss_sha256_explicit_trailer.pem",
      "crypto/x509/test/pss_sha256_mgf1_sha384.pem",
      "crypto/x509/test/pss_sha256_mgf1_syntax_error.pem",
      "crypto/x509/test/pss_sha256_omit_nulls.pem",
      "crypto/x509/test/pss_sha256_salt31.pem",
      "crypto/x509/test/pss_sha256_salt_overflow.pem",
      "crypto/x509/test/pss_sha256_unknown_mgf.pem",
      "crypto/x509/test/pss_sha256_wrong_trailer.pem",
      "crypto/x509/test/pss_sha384.pem",
      "crypto/x509/test/pss_sha512.pem",
      "crypto/x509/test/some_names1.pem",
      "crypto/x509/test/some_names2.pem",
      "crypto/x509/test/some_names3.pem",
      "crypto/x509/test/trailing_data_leaf_authority_key_identifier.pem",
      "crypto/x509/test/trailing_data_leaf_basic_constraints.pem",
      "crypto/x509/test/trailing_data_leaf_ext_key_usage.pem",
      "crypto/x509/test/trailing_data_leaf_key_usage.pem",
      "crypto/x509/test/trailing_data_leaf_name_constraints.pem",
      "crypto/x509/test/trailing_data_leaf_subject_alt_name.pem",
      "crypto/x509/test/trailing_data_leaf_subject_key_identifier.pem",
      "third_party/wycheproof_testvectors/aes_cbc_pkcs5_test.txt",
      "third_party/wycheproof_testvectors/aes_cmac_test.txt",
      "third_party/wycheproof_testvectors/aes_gcm_siv_test.txt",
      "third_party/wycheproof_testvectors/aes_gcm_test.txt",
      "third_party/wycheproof_testvectors/chacha20_poly1305_test.txt",
      "third_party/wycheproof_testvectors/dsa_test.txt",
      "third_party/wycheproof_testvectors/ecdh_secp224r1_test.txt",
      "third_party/wycheproof_testvectors/ecdh_secp256r1_test.txt",
      "third_party/wycheproof_testvectors/ecdh_secp384r1_test.txt",
      "third_party/wycheproof_testvectors/ecdh_secp521r1_test.txt",
      "third_party/wycheproof_testvectors/ecdsa_secp224r1_sha224_test.txt",
      "third_party/wycheproof_testvectors/ecdsa_secp224r1_sha256_test.txt",
      "third_party/wycheproof_testvectors/ecdsa_secp224r1_sha512_test.txt",
      "third_party/wycheproof_testvectors/ecdsa_secp256r1_sha256_test.txt",
      "third_party/wycheproof_testvectors/ecdsa_secp256r1_sha512_test.txt",
      "third_party/wycheproof_testvectors/ecdsa_secp384r1_sha384_test.txt",
      "third_party/wycheproof_testvectors/ecdsa_secp384r1_sha512_test.txt",
      "third_party/wycheproof_testvectors/ecdsa_secp521r1_sha512_test.txt",
      "third_party/wycheproof_testvectors/eddsa_test.txt",
      "third_party/wycheproof_testvectors/hkdf_sha1_test.txt",
      "third_party/wycheproof_testvectors/hkdf_sha256_test.txt",
      "third_party/wycheproof_testvectors/hkdf_sha384_test.txt",
      "third_party/wycheproof_testvectors/hkdf_sha512_test.txt",
      "third_party/wycheproof_testvectors/hmac_sha1_test.txt",
      "third_party/wycheproof_testvectors/hmac_sha224_test.txt",
      "third_party/wycheproof_testvectors/hmac_sha256_test.txt",
      "third_party/wycheproof_testvectors/hmac_sha384_test.txt",
      "third_party/wycheproof_testvectors/hmac_sha512_test.txt",
      "third_party/wycheproof_testvectors/kw_test.txt",
      "third_party/wycheproof_testvectors/kwp_test.txt",
      "third_party/wycheproof_testvectors/primality_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_2048_sha1_mgf1sha1_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_2048_sha224_mgf1sha1_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_2048_sha224_mgf1sha224_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_2048_sha256_mgf1sha1_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_2048_sha256_mgf1sha256_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_2048_sha384_mgf1sha1_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_2048_sha384_mgf1sha384_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_2048_sha512_mgf1sha1_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_2048_sha512_mgf1sha512_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_3072_sha256_mgf1sha1_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_3072_sha256_mgf1sha256_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_3072_sha512_mgf1sha1_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_3072_sha512_mgf1sha512_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_4096_sha256_mgf1sha1_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_4096_sha256_mgf1sha256_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_4096_sha512_mgf1sha1_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_4096_sha512_mgf1sha512_test.txt",
      "third_party/wycheproof_testvectors/rsa_oaep_misc_test.txt",
      "third_party/wycheproof_testvectors/rsa_pkcs1_2048_test.txt",
      "third_party/wycheproof_testvectors/rsa_pkcs1_3072_test.txt",
      "third_party/wycheproof_testvectors/rsa_pkcs1_4096_test.txt",
      "third_party/wycheproof_testvectors/rsa_pss_2048_sha1_mgf1_20_test.txt",
      "third_party/wycheproof_testvectors/rsa_pss_2048_sha256_mgf1_0_test.txt",
      "third_party/wycheproof_testvectors/rsa_pss_2048_sha256_mgf1_32_test.txt",
      "third_party/wycheproof_testvectors/rsa_pss_3072_sha256_mgf1_32_test.txt",
      "third_party/wycheproof_testvectors/rsa_pss_4096_sha256_mgf1_32_test.txt",
      "third_party/wycheproof_testvectors/rsa_pss_4096_sha512_mgf1_32_test.txt",
      "third_party/wycheproof_testvectors/rsa_pss_misc_test.txt",
      "third_party/wycheproof_testvectors/rsa_sig_gen_misc_test.txt",
      "third_party/wycheproof_testvectors/rsa_signature_2048_sha224_test.txt",
      "third_party/wycheproof_testvectors/rsa_signature_2048_sha256_test.txt",
      "third_party/wycheproof_testvectors/rsa_signature_2048_sha384_test.txt",
      "third_party/wycheproof_testvectors/rsa_signature_2048_sha512_test.txt",
      "third_party/wycheproof_testvectors/rsa_signature_3072_sha256_test.txt",
      "third_party/wycheproof_testvectors/rsa_signature_3072_sha384_test.txt",
      "third_party/wycheproof_testvectors/rsa_signature_3072_sha512_test.txt",
      "third_party/wycheproof_testvectors/rsa_signature_4096_sha384_test.txt",
      "third_party/wycheproof_testvectors/rsa_signature_4096_sha512_test.txt",
      "third_party/wycheproof_testvectors/rsa_signature_test.txt",
      "third_party/wycheproof_testvectors/x25519_test.txt",
      "third_party/wycheproof_testvectors/xchacha20_poly1305_test.txt"
    ]
  },
  "decrepit": {
    "srcs": [
      "decrepit/bio/base64_bio.c",
      "decrepit/blowfish/blowfish.c",
      "decrepit/cast/cast.c",
      "decrepit/cast/cast_tables.c",
      "decrepit/cfb/cfb.c",
      "decrepit/des/cfb64ede.c",
      "decrepit/dh/dh_decrepit.c",
      "decrepit/dsa/dsa_decrepit.c",
      "decrepit/evp/dss1.c",
      "decrepit/evp/evp_do_all.c",
      "decrepit/obj/obj_decrepit.c",
      "decrepit/rc4/rc4_decrepit.c",
      "decrepit/ripemd/ripemd.c",
      "decrepit/rsa/rsa_decrepit.c",
      "decrepit/ssl/ssl_decrepit.c",
      "decrepit/x509/x509_decrepit.c",
      "decrepit/xts/xts.c"
    ],
    "internal_hdrs": [
      "decrepit/cast/internal.h",
      "decrepit/macros.h"
    ]
  },
  "decrepit_test": {
    "srcs": [
      "crypto/test/gtest_main.cc",
      "decrepit/blowfish/blowfish_test.cc",
      "decrepit/cast/cast_test.cc",
      "decrepit/cfb/cfb_test.cc",
      "decrepit/des/des_test.cc",
      "decrepit/evp/evp_test.cc",
      "decrepit/ripemd/ripemd_test.cc",
      "decrepit/xts/xts_test.cc"
    ]
  },
  "pki": {
    "srcs": [
      "pki/cert_error_id.cc",
      "pki/cert_error_params.cc",
      "pki/cert_errors.cc",
      "pki/cert_issuer_source_static.cc",
      "pki/certificate.cc",
      "pki/certificate_policies.cc",
      "pki/common_cert_errors.cc",
      "pki/crl.cc",
      "pki/encode_values.cc",
      "pki/extended_key_usage.cc",
      "pki/general_names.cc",
      "pki/input.cc",
      "pki/ip_util.cc",
      "pki/name_constraints.cc",
      "pki/ocsp.cc",
      "pki/ocsp_verify_result.cc",
      "pki/parse_certificate.cc",
      "pki/parse_name.cc",
      "pki/parse_values.cc",
      "pki/parsed_certificate.cc",
      "pki/parser.cc",
      "pki/path_builder.cc",
      "pki/pem.cc",
      "pki/revocation_util.cc",
      "pki/signature_algorithm.cc",
      "pki/simple_path_builder_delegate.cc",
      "pki/string_util.cc",
      "pki/trust_store.cc",
      "pki/trust_store_collection.cc",
      "pki/trust_store_in_memory.cc",
      "pki/verify.cc",
      "pki/verify_certificate_chain.cc",
      "pki/verify_error.cc",
      "pki/verify_name_match.cc",
      "pki/verify_signed_data.cc"
    ],
    "hdrs": [
      "include/openssl/pki/certificate.h",
      "include/openssl/pki/signature_verify_cache.h",
      "include/openssl/pki/verify.h",
      "include/openssl/pki/verify_error.h"
    ],
    "internal_hdrs": [
      "pki/cert_error_id.h",
      "pki/cert_error_params.h",
      "pki/cert_errors.h",
      "pki/cert_issuer_source.h",
      "pki/cert_issuer_source_static.h",
      "pki/cert_issuer_source_sync_unittest.h",
      "pki/certificate_policies.h",
      "pki/common_cert_errors.h",
      "pki/crl.h",
      "pki/encode_values.h",
      "pki/extended_key_usage.h",
      "pki/general_names.h",
      "pki/input.h",
      "pki/ip_util.h",
      "pki/mock_signature_verify_cache.h",
      "pki/name_constraints.h",
      "pki/nist_pkits_unittest.h",
      "pki/ocsp.h",
      "pki/ocsp_revocation_status.h",
      "pki/ocsp_verify_result.h",
      "pki/parse_certificate.h",
      "pki/parse_name.h",
      "pki/parse_values.h",
      "pki/parsed_certificate.h",
      "pki/parser.h",
      "pki/path_builder.h",
      "pki/pem.h",
      "pki/revocation_util.h",
      "pki/signature_algorithm.h",
      "pki/simple_path_builder_delegate.h",
      "pki/string_util.h",
      "pki/test_helpers.h",
      "pki/testdata/nist-pkits/pkits_testcases-inl.h",
      "pki/trust_store.h",
      "pki/trust_store_collection.h",
      "pki/trust_store_in_memory.h",
      "pki/verify_certificate_chain.h",
      "pki/verify_certificate_chain_typed_unittest.h",
      "pki/verify_name_match.h",
      "pki/verify_signed_data.h"
    ]
  },
  "pki_test": {
    "srcs": [
      "crypto/test/gtest_main.cc",
      "pki/cert_issuer_source_static_unittest.cc",
      "pki/certificate_policies_unittest.cc",
      "pki/certificate_unittest.cc",
      "pki/crl_unittest.cc",
      "pki/encode_values_unittest.cc",
      "pki/extended_key_usage_unittest.cc",
      "pki/general_names_unittest.cc",
      "pki/input_unittest.cc",
      "pki/ip_util_unittest.cc",
      "pki/mock_signature_verify_cache.cc",
      "pki/name_constraints_unittest.cc",
      "pki/nist_pkits_unittest.cc",
      "pki/ocsp_unittest.cc",
      "pki/parse_certificate_unittest.cc",
      "pki/parse_name_unittest.cc",
      "pki/parse_values_unittest.cc",
      "pki/parsed_certificate_unittest.cc",
      "pki/parser_unittest.cc",
      "pki/path_builder_pkits_unittest.cc",
      "pki/path_builder_unittest.cc",
      "pki/path_builder_verify_certificate_chain_unittest.cc",
      "pki/pem_unittest.cc",
      "pki/signature_algorithm_unittest.cc",
      "pki/simple_path_builder_delegate_unittest.cc",
      "pki/string_util_unittest.cc",
      "pki/test_helpers.cc",
      "pki/trust_store_collection_unittest.cc",
      "pki/trust_store_in_memory_unittest.cc",
      "pki/verify_certificate_chain_pkits_unittest.cc",
      "pki/verify_certificate_chain_unittest.cc",
      "pki/verify_name_match_unittest.cc",
      "pki/verify_signed_data_unittest.cc",
      "pki/verify_unittest.cc"
    ],
    "data": [
      "pki/testdata/cert_issuer_source_static_unittest/c1.pem",
      "pki/testdata/cert_issuer_source_static_unittest/c2.pem",
      "pki/testdata/cert_issuer_source_static_unittest/d.pem",
      "pki/testdata/cert_issuer_source_static_unittest/e1.pem",
      "pki/testdata/cert_issuer_source_static_unittest/e2.pem",
      "pki/testdata/cert_issuer_source_static_unittest/i1_1.pem",
      "pki/testdata/cert_issuer_source_static_unittest/i1_2.pem",
      "pki/testdata/cert_issuer_source_static_unittest/i2.pem",
      "pki/testdata/cert_issuer_source_static_unittest/i3_1.pem",
      "pki/testdata/cert_issuer_source_static_unittest/i3_2.pem",
      "pki/testdata/cert_issuer_source_static_unittest/root.pem",
      "pki/testdata/certificate_policies_unittest/anypolicy.pem",
      "pki/testdata/certificate_policies_unittest/anypolicy_with_qualifier.pem",
      "pki/testdata/certificate_policies_unittest/invalid-anypolicy_with_custom_qualifier.pem",
      "pki/testdata/certificate_policies_unittest/invalid-empty.pem",
      "pki/testdata/certificate_policies_unittest/invalid-policy_1_2_3_dupe.pem",
      "pki/testdata/certificate_policies_unittest/invalid-policy_1_2_3_policyinformation_unconsumed_data.pem",
      "pki/testdata/certificate_policies_unittest/invalid-policy_1_2_3_policyqualifierinfo_unconsumed_data.pem",
      "pki/testdata/certificate_policies_unittest/invalid-policy_1_2_3_with_empty_qualifiers_sequence.pem",
      "pki/testdata/certificate_policies_unittest/invalid-policy_identifier_not_oid.pem",
      "pki/testdata/certificate_policies_unittest/policy_1_2_3.pem",
      "pki/testdata/certificate_policies_unittest/policy_1_2_3_and_1_2_4.pem",
      "pki/testdata/certificate_policies_unittest/policy_1_2_3_and_1_2_4_with_qualifiers.pem",
      "pki/testdata/certificate_policies_unittest/policy_1_2_3_with_custom_qualifier.pem",
      "pki/testdata/certificate_policies_unittest/policy_1_2_3_with_qualifier.pem",
      "pki/testdata/crl_unittest/bad_crldp_has_crlissuer.pem",
      "pki/testdata/crl_unittest/bad_fake_critical_crlentryextension.pem",
      "pki/testdata/crl_unittest/bad_fake_critical_extension.pem",
      "pki/testdata/crl_unittest/bad_idp_contains_wrong_uri.pem",
      "pki/testdata/crl_unittest/bad_idp_indirectcrl.pem",
      "pki/testdata/crl_unittest/bad_idp_onlycontainscacerts.pem",
      "pki/testdata/crl_unittest/bad_idp_onlycontainscacerts_no_basic_constraints.pem",
      "pki/testdata/crl_unittest/bad_idp_onlycontainsusercerts.pem",
      "pki/testdata/crl_unittest/bad_idp_uri_and_onlycontainscacerts.pem",
      "pki/testdata/crl_unittest/bad_idp_uri_and_onlycontainsusercerts.pem",
      "pki/testdata/crl_unittest/bad_key_rollover_signature.pem",
      "pki/testdata/crl_unittest/bad_nextupdate_too_old.pem",
      "pki/testdata/crl_unittest/bad_signature.pem",
      "pki/testdata/crl_unittest/bad_thisupdate_in_future.pem",
      "pki/testdata/crl_unittest/bad_thisupdate_too_old.pem",
      "pki/testdata/crl_unittest/bad_wrong_issuer.pem",
      "pki/testdata/crl_unittest/good.pem",
      "pki/testdata/crl_unittest/good_fake_extension.pem",
      "pki/testdata/crl_unittest/good_fake_extension_no_nextupdate.pem",
      "pki/testdata/crl_unittest/good_generalizedtime.pem",
      "pki/testdata/crl_unittest/good_idp_contains_uri.pem",
      "pki/testdata/crl_unittest/good_idp_onlycontainscacerts.pem",
      "pki/testdata/crl_unittest/good_idp_onlycontainsusercerts.pem",
      "pki/testdata/crl_unittest/good_idp_onlycontainsusercerts_no_basic_constraints.pem",
      "pki/testdata/crl_unittest/good_idp_uri_and_onlycontainscacerts.pem",
      "pki/testdata/crl_unittest/good_idp_uri_and_onlycontainsusercerts.pem",
      "pki/testdata/crl_unittest/good_issuer_name_normalization.pem",
      "pki/testdata/crl_unittest/good_issuer_no_keyusage.pem",
      "pki/testdata/crl_unittest/good_key_rollover.pem",
      "pki/testdata/crl_unittest/good_no_crldp.pem",
      "pki/testdata/crl_unittest/good_no_nextupdate.pem",
      "pki/testdata/crl_unittest/good_no_version.pem",
      "pki/testdata/crl_unittest/invalid_garbage_after_crlentryextensions.pem",
      "pki/testdata/crl_unittest/invalid_garbage_after_extensions.pem",
      "pki/testdata/crl_unittest/invalid_garbage_after_nextupdate.pem",
      "pki/testdata/crl_unittest/invalid_garbage_after_revocationdate.pem",
      "pki/testdata/crl_unittest/invalid_garbage_after_revokedcerts.pem",
      "pki/testdata/crl_unittest/invalid_garbage_after_signaturevalue.pem",
      "pki/testdata/crl_unittest/invalid_garbage_after_thisupdate.pem",
      "pki/testdata/crl_unittest/invalid_garbage_crlentry.pem",
      "pki/testdata/crl_unittest/invalid_garbage_issuer_name.pem",
      "pki/testdata/crl_unittest/invalid_garbage_revocationdate.pem",
      "pki/testdata/crl_unittest/invalid_garbage_revoked_serial_number.pem",
      "pki/testdata/crl_unittest/invalid_garbage_signaturealgorithm.pem",
      "pki/testdata/crl_unittest/invalid_garbage_signaturevalue.pem",
      "pki/testdata/crl_unittest/invalid_garbage_tbs_signature_algorithm.pem",
      "pki/testdata/crl_unittest/invalid_garbage_tbscertlist.pem",
      "pki/testdata/crl_unittest/invalid_garbage_thisupdate.pem",
      "pki/testdata/crl_unittest/invalid_garbage_version.pem",
      "pki/testdata/crl_unittest/invalid_idp_dpname_choice_extra_data.pem",
      "pki/testdata/crl_unittest/invalid_idp_empty_sequence.pem",
      "pki/testdata/crl_unittest/invalid_idp_onlycontains_user_and_ca_certs.pem",
      "pki/testdata/crl_unittest/invalid_idp_onlycontainsusercerts_v1_leaf.pem",
      "pki/testdata/crl_unittest/invalid_issuer_keyusage_no_crlsign.pem",
      "pki/testdata/crl_unittest/invalid_key_rollover_issuer_keyusage_no_crlsign.pem",
      "pki/testdata/crl_unittest/invalid_mismatched_signature_algorithm.pem",
      "pki/testdata/crl_unittest/invalid_revoked_empty_sequence.pem",
      "pki/testdata/crl_unittest/invalid_v1_explicit.pem",
      "pki/testdata/crl_unittest/invalid_v1_with_crlentryextension.pem",
      "pki/testdata/crl_unittest/invalid_v1_with_extension.pem",
      "pki/testdata/crl_unittest/invalid_v3.pem",
      "pki/testdata/crl_unittest/revoked.pem",
      "pki/testdata/crl_unittest/revoked_fake_crlentryextension.pem",
      "pki/testdata/crl_unittest/revoked_generalized_revocationdate.pem",
      "pki/testdata/crl_unittest/revoked_key_rollover.pem",
      "pki/testdata/crl_unittest/revoked_no_nextupdate.pem",
      "pki/testdata/name_constraints_unittest/directoryname-excludeall.pem",
      "pki/testdata/name_constraints_unittest/directoryname-excluded.pem",
      "pki/testdata/name_constraints_unittest/directoryname.pem",
      "pki/testdata/name_constraints_unittest/directoryname_and_dnsname.pem",
      "pki/testdata/name_constraints_unittest/directoryname_and_dnsname_and_ipaddress.pem",
      "pki/testdata/name_constraints_unittest/dnsname-exclude_dot.pem",
      "pki/testdata/name_constraints_unittest/dnsname-excludeall.pem",
      "pki/testdata/name_constraints_unittest/dnsname-excluded.pem",
      "pki/testdata/name_constraints_unittest/dnsname-excluded_with_leading_dot.pem",
      "pki/testdata/name_constraints_unittest/dnsname-permitted_two_dot.pem",
      "pki/testdata/name_constraints_unittest/dnsname-permitted_with_leading_dot.pem",
      "pki/testdata/name_constraints_unittest/dnsname-with_max.pem",
      "pki/testdata/name_constraints_unittest/dnsname-with_min_0.pem",
      "pki/testdata/name_constraints_unittest/dnsname-with_min_0_and_max.pem",
      "pki/testdata/name_constraints_unittest/dnsname-with_min_1.pem",
      "pki/testdata/name_constraints_unittest/dnsname-with_min_1_and_max.pem",
      "pki/testdata/name_constraints_unittest/dnsname.pem",
      "pki/testdata/name_constraints_unittest/dnsname2.pem",
      "pki/testdata/name_constraints_unittest/edipartyname-excluded.pem",
      "pki/testdata/name_constraints_unittest/edipartyname-permitted.pem",
      "pki/testdata/name_constraints_unittest/invalid-empty_excluded_subtree.pem",
      "pki/testdata/name_constraints_unittest/invalid-empty_permitted_subtree.pem",
      "pki/testdata/name_constraints_unittest/invalid-no_subtrees.pem",
      "pki/testdata/name_constraints_unittest/ipaddress-excludeall.pem",
      "pki/testdata/name_constraints_unittest/ipaddress-excluded.pem",
      "pki/testdata/name_constraints_unittest/ipaddress-invalid_addr.pem",
      "pki/testdata/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_1.pem",
      "pki/testdata/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_2.pem",
      "pki/testdata/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_3.pem",
      "pki/testdata/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_4.pem",
      "pki/testdata/name_constraints_unittest/ipaddress-mapped_addrs.pem",
      "pki/testdata/name_constraints_unittest/ipaddress-permit_all.pem",
      "pki/testdata/name_constraints_unittest/ipaddress-permit_prefix1.pem",
      "pki/testdata/name_constraints_unittest/ipaddress-permit_prefix31.pem",
      "pki/testdata/name_constraints_unittest/ipaddress-permit_singlehost.pem",
      "pki/testdata/name_constraints_unittest/ipaddress.pem",
      "pki/testdata/name_constraints_unittest/name-ca.pem",
      "pki/testdata/name_constraints_unittest/name-de.pem",
      "pki/testdata/name_constraints_unittest/name-empty.pem",
      "pki/testdata/name_constraints_unittest/name-jp-tokyo.pem",
      "pki/testdata/name_constraints_unittest/name-jp.pem",
      "pki/testdata/name_constraints_unittest/name-us-arizona-1.1.1.1.pem",
      "pki/testdata/name_constraints_unittest/name-us-arizona-192.168.1.1.pem",
      "pki/testdata/name_constraints_unittest/name-us-arizona-email-invalidstring.pem",
      "pki/testdata/name_constraints_unittest/name-us-arizona-email-localpartcase.pem",
      "pki/testdata/name_constraints_unittest/name-us-arizona-email-multiple.pem",
      "pki/testdata/name_constraints_unittest/name-us-arizona-email.pem",
      "pki/testdata/name_constraints_unittest/name-us-arizona-foo.com.pem",
      "pki/testdata/name_constraints_unittest/name-us-arizona-ipv6.pem",
      "pki/testdata/name_constraints_unittest/name-us-arizona-permitted.example.com.pem",
      "pki/testdata/name_constraints_unittest/name-us-arizona.pem",
      "pki/testdata/name_constraints_unittest/name-us-california-192.168.1.1.pem",
      "pki/testdata/name_constraints_unittest/name-us-california-mountain_view.pem",
      "pki/testdata/name_constraints_unittest/name-us-california-permitted.example.com.pem",
      "pki/testdata/name_constraints_unittest/name-us-california.pem",
      "pki/testdata/name_constraints_unittest/name-us.pem",
      "pki/testdata/name_constraints_unittest/othername-excluded.pem",
      "pki/testdata/name_constraints_unittest/othername-permitted.pem",
      "pki/testdata/name_constraints_unittest/registeredid-excluded.pem",
      "pki/testdata/name_constraints_unittest/registeredid-permitted.pem",
      "pki/testdata/name_constraints_unittest/rfc822name-excluded-empty.pem",
      "pki/testdata/name_constraints_unittest/rfc822name-excluded-hostname.pem",
      "pki/testdata/name_constraints_unittest/rfc822name-excluded-hostnamewithat.pem",
      "pki/testdata/name_constraints_unittest/rfc822name-excluded-ipv4.pem",
      "pki/testdata/name_constraints_unittest/rfc822name-excluded-quoted.pem",
      "pki/testdata/name_constraints_unittest/rfc822name-excluded-subdomains.pem",
      "pki/testdata/name_constraints_unittest/rfc822name-excluded.pem",
      "pki/testdata/name_constraints_unittest/rfc822name-permitted-empty.pem",
      "pki/testdata/name_constraints_unittest/rfc822name-permitted-hostname.pem",
      "pki/testdata/name_constraints_unittest/rfc822name-permitted-hostnamewithat.pem",
      "pki/testdata/name_constraints_unittest/rfc822name-permitted-ipv4.pem",
      "pki/testdata/name_constraints_unittest/rfc822name-permitted-quoted.pem",
      "pki/testdata/name_constraints_unittest/rfc822name-permitted-subdomains.pem",
      "pki/testdata/name_constraints_unittest/rfc822name-permitted.pem",
      "pki/testdata/name_constraints_unittest/san-directoryname.pem",
      "pki/testdata/name_constraints_unittest/san-dnsname.pem",
      "pki/testdata/name_constraints_unittest/san-edipartyname.pem",
      "pki/testdata/name_constraints_unittest/san-excluded-directoryname.pem",
      "pki/testdata/name_constraints_unittest/san-excluded-dnsname.pem",
      "pki/testdata/name_constraints_unittest/san-excluded-ipaddress.pem",
      "pki/testdata/name_constraints_unittest/san-invalid-empty.pem",
      "pki/testdata/name_constraints_unittest/san-invalid-ipaddress.pem",
      "pki/testdata/name_constraints_unittest/san-ipaddress4.pem",
      "pki/testdata/name_constraints_unittest/san-ipaddress6.pem",
      "pki/testdata/name_constraints_unittest/san-othername.pem",
      "pki/testdata/name_constraints_unittest/san-permitted.pem",
      "pki/testdata/name_constraints_unittest/san-registeredid.pem",
      "pki/testdata/name_constraints_unittest/san-rfc822name-domaincase.pem",
      "pki/testdata/name_constraints_unittest/san-rfc822name-empty-localpart.pem",
      "pki/testdata/name_constraints_unittest/san-rfc822name-empty.pem",
      "pki/testdata/name_constraints_unittest/san-rfc822name-ipv4.pem",
      "pki/testdata/name_constraints_unittest/san-rfc822name-localpartcase.pem",
      "pki/testdata/name_constraints_unittest/san-rfc822name-multiple.pem",
      "pki/testdata/name_constraints_unittest/san-rfc822name-no-at.pem",
      "pki/testdata/name_constraints_unittest/san-rfc822name-quoted.pem",
      "pki/testdata/name_constraints_unittest/san-rfc822name-subdomain-no-at.pem",
      "pki/testdata/name_constraints_unittest/san-rfc822name-subdomain-two-ats.pem",
      "pki/testdata/name_constraints_unittest/san-rfc822name-subdomain.pem",
      "pki/testdata/name_constraints_unittest/san-rfc822name-subdomaincase.pem",
      "pki/testdata/name_constraints_unittest/san-rfc822name-two-ats.pem",
      "pki/testdata/name_constraints_unittest/san-rfc822name.pem",
      "pki/testdata/name_constraints_unittest/san-uri.pem",
      "pki/testdata/name_constraints_unittest/san-x400address.pem",
      "pki/testdata/name_constraints_unittest/uri-excluded.pem",
      "pki/testdata/name_constraints_unittest/uri-permitted.pem",
      "pki/testdata/name_constraints_unittest/x400address-excluded.pem",
      "pki/testdata/name_constraints_unittest/x400address-permitted.pem",
      "pki/testdata/nist-pkits/certs/AllCertificatesNoPoliciesTest2EE.crt",
      "pki/testdata/nist-pkits/certs/AllCertificatesSamePoliciesTest10EE.crt",
      "pki/testdata/nist-pkits/certs/AllCertificatesSamePoliciesTest13EE.crt",
      "pki/testdata/nist-pkits/certs/AllCertificatesanyPolicyTest11EE.crt",
      "pki/testdata/nist-pkits/certs/AnyPolicyTest14EE.crt",
      "pki/testdata/nist-pkits/certs/BadCRLIssuerNameCACert.crt",
      "pki/testdata/nist-pkits/certs/BadCRLSignatureCACert.crt",
      "pki/testdata/nist-pkits/certs/BadSignedCACert.crt",
      "pki/testdata/nist-pkits/certs/BadnotAfterDateCACert.crt",
      "pki/testdata/nist-pkits/certs/BadnotBeforeDateCACert.crt",
      "pki/testdata/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCACert.crt",
      "pki/testdata/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCRLCert.crt",
      "pki/testdata/nist-pkits/certs/BasicSelfIssuedNewKeyCACert.crt",
      "pki/testdata/nist-pkits/certs/BasicSelfIssuedNewKeyOldWithNewCACert.crt",
      "pki/testdata/nist-pkits/certs/BasicSelfIssuedOldKeyCACert.crt",
      "pki/testdata/nist-pkits/certs/BasicSelfIssuedOldKeyNewWithOldCACert.crt",
      "pki/testdata/nist-pkits/certs/CPSPointerQualifierTest20EE.crt",
      "pki/testdata/nist-pkits/certs/DSACACert.crt",
      "pki/testdata/nist-pkits/certs/DSAParametersInheritedCACert.crt",
      "pki/testdata/nist-pkits/certs/DifferentPoliciesTest12EE.crt",
      "pki/testdata/nist-pkits/certs/DifferentPoliciesTest3EE.crt",
      "pki/testdata/nist-pkits/certs/DifferentPoliciesTest4EE.crt",
      "pki/testdata/nist-pkits/certs/DifferentPoliciesTest5EE.crt",
      "pki/testdata/nist-pkits/certs/DifferentPoliciesTest7EE.crt",
      "pki/testdata/nist-pkits/certs/DifferentPoliciesTest8EE.crt",
      "pki/testdata/nist-pkits/certs/DifferentPoliciesTest9EE.crt",
      "pki/testdata/nist-pkits/certs/GeneralizedTimeCRLnextUpdateCACert.crt",
      "pki/testdata/nist-pkits/certs/GoodCACert.crt",
      "pki/testdata/nist-pkits/certs/GoodsubCACert.crt",
      "pki/testdata/nist-pkits/certs/GoodsubCAPanyPolicyMapping1to2CACert.crt",
      "pki/testdata/nist-pkits/certs/InvalidBadCRLIssuerNameTest5EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidBadCRLSignatureTest4EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest7EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest8EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidBasicSelfIssuedNewWithOldTest5EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidBasicSelfIssuedOldWithNewTest2EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidCASignatureTest2EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidCAnotAfterDateTest5EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidCAnotBeforeDateTest1EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNSnameConstraintsTest31EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNSnameConstraintsTest33EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNSnameConstraintsTest38EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest28EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest29EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest10EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest12EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest13EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest15EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest16EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest17EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest20EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest2EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest3EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest7EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest8EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest9EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidDSASignatureTest6EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidEESignatureTest3EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidEEnotAfterDateTest6EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidEEnotBeforeDateTest2EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidIDPwithindirectCRLTest23EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidIDPwithindirectCRLTest26EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidLongSerialNumberTest18EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidMappingFromanyPolicyTest7EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidMappingToanyPolicyTest8EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidMissingCRLTest1EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidMissingbasicConstraintsTest1EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidNameChainingOrderTest2EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidNameChainingTest1EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidNegativeSerialNumberTest15EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidOldCRLnextUpdateTest11EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidPolicyMappingTest10EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidPolicyMappingTest2EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidPolicyMappingTest4EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidRFC822nameConstraintsTest22EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidRFC822nameConstraintsTest24EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidRFC822nameConstraintsTest26EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidRevokedCATest2EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidRevokedEETest3EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest10EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest8EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest10EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest11EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest8EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest9EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidSelfIssuedpathLenConstraintTest16EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest7EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest8EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest20EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest21EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidURInameConstraintsTest35EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidURInameConstraintsTest37EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidUnknownCRLEntryExtensionTest8EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidUnknownCRLExtensionTest10EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidUnknownCRLExtensionTest9EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidUnknownCriticalCertificateExtensionTest2EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidWrongCRLTest6EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidcAFalseTest2EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidcAFalseTest3EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidcRLIssuerTest27EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidcRLIssuerTest31EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidcRLIssuerTest32EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidcRLIssuerTest34EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidcRLIssuerTest35EE.crt",
      "pki/testdata/nist-pkits/certs/InvaliddeltaCRLIndicatorNoBaseTest1EE.crt",
      "pki/testdata/nist-pkits/certs/InvaliddeltaCRLTest10EE.crt",
      "pki/testdata/nist-pkits/certs/InvaliddeltaCRLTest3EE.crt",
      "pki/testdata/nist-pkits/certs/InvaliddeltaCRLTest4EE.crt",
      "pki/testdata/nist-pkits/certs/InvaliddeltaCRLTest6EE.crt",
      "pki/testdata/nist-pkits/certs/InvaliddeltaCRLTest9EE.crt",
      "pki/testdata/nist-pkits/certs/InvaliddistributionPointTest2EE.crt",
      "pki/testdata/nist-pkits/certs/InvaliddistributionPointTest3EE.crt",
      "pki/testdata/nist-pkits/certs/InvaliddistributionPointTest6EE.crt",
      "pki/testdata/nist-pkits/certs/InvaliddistributionPointTest8EE.crt",
      "pki/testdata/nist-pkits/certs/InvaliddistributionPointTest9EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidinhibitAnyPolicyTest1EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidinhibitAnyPolicyTest4EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidinhibitAnyPolicyTest5EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidinhibitAnyPolicyTest6EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidinhibitPolicyMappingTest1EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidinhibitPolicyMappingTest3EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidinhibitPolicyMappingTest5EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidinhibitPolicyMappingTest6EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidkeyUsageCriticalcRLSignFalseTest4EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidkeyUsageCriticalkeyCertSignFalseTest1EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidkeyUsageNotCriticalcRLSignFalseTest5EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidkeyUsageNotCriticalkeyCertSignFalseTest2EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidonlyContainsAttributeCertsTest14EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidonlyContainsCACertsTest12EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidonlyContainsUserCertsTest11EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidonlySomeReasonsTest15EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidonlySomeReasonsTest16EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidonlySomeReasonsTest17EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidonlySomeReasonsTest20EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidonlySomeReasonsTest21EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidpathLenConstraintTest10EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidpathLenConstraintTest11EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidpathLenConstraintTest12EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidpathLenConstraintTest5EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidpathLenConstraintTest6EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidpathLenConstraintTest9EE.crt",
      "pki/testdata/nist-pkits/certs/Invalidpre2000CRLnextUpdateTest12EE.crt",
      "pki/testdata/nist-pkits/certs/Invalidpre2000UTCEEnotAfterDateTest7EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidrequireExplicitPolicyTest3EE.crt",
      "pki/testdata/nist-pkits/certs/InvalidrequireExplicitPolicyTest5EE.crt",
      "pki/testdata/nist-pkits/certs/LongSerialNumberCACert.crt",
      "pki/testdata/nist-pkits/certs/Mapping1to2CACert.crt",
      "pki/testdata/nist-pkits/certs/MappingFromanyPolicyCACert.crt",
      "pki/testdata/nist-pkits/certs/MappingToanyPolicyCACert.crt",
      "pki/testdata/nist-pkits/certs/MissingbasicConstraintsCACert.crt",
      "pki/testdata/nist-pkits/certs/NameOrderingCACert.crt",
      "pki/testdata/nist-pkits/certs/NegativeSerialNumberCACert.crt",
      "pki/testdata/nist-pkits/certs/NoCRLCACert.crt",
      "pki/testdata/nist-pkits/certs/NoPoliciesCACert.crt",
      "pki/testdata/nist-pkits/certs/NoissuingDistributionPointCACert.crt",
      "pki/testdata/nist-pkits/certs/OldCRLnextUpdateCACert.crt",
      "pki/testdata/nist-pkits/certs/OverlappingPoliciesTest6EE.crt",
      "pki/testdata/nist-pkits/certs/P12Mapping1to3CACert.crt",
      "pki/testdata/nist-pkits/certs/P12Mapping1to3subCACert.crt",
      "pki/testdata/nist-pkits/certs/P12Mapping1to3subsubCACert.crt",
      "pki/testdata/nist-pkits/certs/P1Mapping1to234CACert.crt",
      "pki/testdata/nist-pkits/certs/P1Mapping1to234subCACert.crt",
      "pki/testdata/nist-pkits/certs/P1anyPolicyMapping1to2CACert.crt",
      "pki/testdata/nist-pkits/certs/PanyPolicyMapping1to2CACert.crt",
      "pki/testdata/nist-pkits/certs/PoliciesP1234CACert.crt",
      "pki/testdata/nist-pkits/certs/PoliciesP1234subCAP123Cert.crt",
      "pki/testdata/nist-pkits/certs/PoliciesP1234subsubCAP123P12Cert.crt",
      "pki/testdata/nist-pkits/certs/PoliciesP123CACert.crt",
      "pki/testdata/nist-pkits/certs/PoliciesP123subCAP12Cert.crt",
      "pki/testdata/nist-pkits/certs/PoliciesP123subsubCAP12P1Cert.crt",
      "pki/testdata/nist-pkits/certs/PoliciesP123subsubCAP12P2Cert.crt",
      "pki/testdata/nist-pkits/certs/PoliciesP123subsubsubCAP12P2P1Cert.crt",
      "pki/testdata/nist-pkits/certs/PoliciesP12CACert.crt",
      "pki/testdata/nist-pkits/certs/PoliciesP12subCAP1Cert.crt",
      "pki/testdata/nist-pkits/certs/PoliciesP12subsubCAP1P2Cert.crt",
      "pki/testdata/nist-pkits/certs/PoliciesP2subCA2Cert.crt",
      "pki/testdata/nist-pkits/certs/PoliciesP2subCACert.crt",
      "pki/testdata/nist-pkits/certs/PoliciesP3CACert.crt",
      "pki/testdata/nist-pkits/certs/RFC3280MandatoryAttributeTypesCACert.crt",
      "pki/testdata/nist-pkits/certs/RFC3280OptionalAttributeTypesCACert.crt",
      "pki/testdata/nist-pkits/certs/RevokedsubCACert.crt",
      "pki/testdata/nist-pkits/certs/RolloverfromPrintableStringtoUTF8StringCACert.crt",
      "pki/testdata/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CRLSigningCert.crt",
      "pki/testdata/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CertificateSigningCACert.crt",
      "pki/testdata/nist-pkits/certs/SeparateCertificateandCRLKeysCRLSigningCert.crt",
      "pki/testdata/nist-pkits/certs/SeparateCertificateandCRLKeysCertificateSigningCACert.crt",
      "pki/testdata/nist-pkits/certs/TrustAnchorRootCertificate.crt",
      "pki/testdata/nist-pkits/certs/TwoCRLsCACert.crt",
      "pki/testdata/nist-pkits/certs/UIDCACert.crt",
      "pki/testdata/nist-pkits/certs/UTF8StringCaseInsensitiveMatchCACert.crt",
      "pki/testdata/nist-pkits/certs/UTF8StringEncodedNamesCACert.crt",
      "pki/testdata/nist-pkits/certs/UnknownCRLEntryExtensionCACert.crt",
      "pki/testdata/nist-pkits/certs/UnknownCRLExtensionCACert.crt",
      "pki/testdata/nist-pkits/certs/UserNoticeQualifierTest15EE.crt",
      "pki/testdata/nist-pkits/certs/UserNoticeQualifierTest16EE.crt",
      "pki/testdata/nist-pkits/certs/UserNoticeQualifierTest17EE.crt",
      "pki/testdata/nist-pkits/certs/UserNoticeQualifierTest18EE.crt",
      "pki/testdata/nist-pkits/certs/UserNoticeQualifierTest19EE.crt",
      "pki/testdata/nist-pkits/certs/ValidBasicSelfIssuedCRLSigningKeyTest6EE.crt",
      "pki/testdata/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest3EE.crt",
      "pki/testdata/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest4EE.crt",
      "pki/testdata/nist-pkits/certs/ValidBasicSelfIssuedOldWithNewTest1EE.crt",
      "pki/testdata/nist-pkits/certs/ValidCertificatePathTest1EE.crt",
      "pki/testdata/nist-pkits/certs/ValidDNSnameConstraintsTest30EE.crt",
      "pki/testdata/nist-pkits/certs/ValidDNSnameConstraintsTest32EE.crt",
      "pki/testdata/nist-pkits/certs/ValidDNandRFC822nameConstraintsTest27EE.crt",
      "pki/testdata/nist-pkits/certs/ValidDNnameConstraintsTest11EE.crt",
      "pki/testdata/nist-pkits/certs/ValidDNnameConstraintsTest14EE.crt",
      "pki/testdata/nist-pkits/certs/ValidDNnameConstraintsTest18EE.crt",
      "pki/testdata/nist-pkits/certs/ValidDNnameConstraintsTest19EE.crt",
      "pki/testdata/nist-pkits/certs/ValidDNnameConstraintsTest1EE.crt",
      "pki/testdata/nist-pkits/certs/ValidDNnameConstraintsTest4EE.crt",
      "pki/testdata/nist-pkits/certs/ValidDNnameConstraintsTest5EE.crt",
      "pki/testdata/nist-pkits/certs/ValidDNnameConstraintsTest6EE.crt",
      "pki/testdata/nist-pkits/certs/ValidDSAParameterInheritanceTest5EE.crt",
      "pki/testdata/nist-pkits/certs/ValidDSASignaturesTest4EE.crt",
      "pki/testdata/nist-pkits/certs/ValidGeneralizedTimeCRLnextUpdateTest13EE.crt",
      "pki/testdata/nist-pkits/certs/ValidGeneralizedTimenotAfterDateTest8EE.crt",
      "pki/testdata/nist-pkits/certs/ValidGeneralizedTimenotBeforeDateTest4EE.crt",
      "pki/testdata/nist-pkits/certs/ValidIDPwithindirectCRLTest22EE.crt",
      "pki/testdata/nist-pkits/certs/ValidIDPwithindirectCRLTest24EE.crt",
      "pki/testdata/nist-pkits/certs/ValidIDPwithindirectCRLTest25EE.crt",
      "pki/testdata/nist-pkits/certs/ValidLongSerialNumberTest16EE.crt",
      "pki/testdata/nist-pkits/certs/ValidLongSerialNumberTest17EE.crt",
      "pki/testdata/nist-pkits/certs/ValidNameChainingCapitalizationTest5EE.crt",
      "pki/testdata/nist-pkits/certs/ValidNameChainingWhitespaceTest3EE.crt",
      "pki/testdata/nist-pkits/certs/ValidNameChainingWhitespaceTest4EE.crt",
      "pki/testdata/nist-pkits/certs/ValidNameUIDsTest6EE.crt",
      "pki/testdata/nist-pkits/certs/ValidNegativeSerialNumberTest14EE.crt",
      "pki/testdata/nist-pkits/certs/ValidNoissuingDistributionPointTest10EE.crt",
      "pki/testdata/nist-pkits/certs/ValidPolicyMappingTest11EE.crt",
      "pki/testdata/nist-pkits/certs/ValidPolicyMappingTest12EE.crt",
      "pki/testdata/nist-pkits/certs/ValidPolicyMappingTest13EE.crt",
      "pki/testdata/nist-pkits/certs/ValidPolicyMappingTest14EE.crt",
      "pki/testdata/nist-pkits/certs/ValidPolicyMappingTest1EE.crt",
      "pki/testdata/nist-pkits/certs/ValidPolicyMappingTest3EE.crt",
      "pki/testdata/nist-pkits/certs/ValidPolicyMappingTest5EE.crt",
      "pki/testdata/nist-pkits/certs/ValidPolicyMappingTest6EE.crt",
      "pki/testdata/nist-pkits/certs/ValidPolicyMappingTest9EE.crt",
      "pki/testdata/nist-pkits/certs/ValidRFC3280MandatoryAttributeTypesTest7EE.crt",
      "pki/testdata/nist-pkits/certs/ValidRFC3280OptionalAttributeTypesTest8EE.crt",
      "pki/testdata/nist-pkits/certs/ValidRFC822nameConstraintsTest21EE.crt",
      "pki/testdata/nist-pkits/certs/ValidRFC822nameConstraintsTest23EE.crt",
      "pki/testdata/nist-pkits/certs/ValidRFC822nameConstraintsTest25EE.crt",
      "pki/testdata/nist-pkits/certs/ValidRolloverfromPrintableStringtoUTF8StringTest10EE.crt",
      "pki/testdata/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest7EE.crt",
      "pki/testdata/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest9EE.crt",
      "pki/testdata/nist-pkits/certs/ValidSelfIssuedinhibitPolicyMappingTest7EE.crt",
      "pki/testdata/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest15EE.crt",
      "pki/testdata/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest17EE.crt",
      "pki/testdata/nist-pkits/certs/ValidSelfIssuedrequireExplicitPolicyTest6EE.crt",
      "pki/testdata/nist-pkits/certs/ValidSeparateCertificateandCRLKeysTest19EE.crt",
      "pki/testdata/nist-pkits/certs/ValidTwoCRLsTest7EE.crt",
      "pki/testdata/nist-pkits/certs/ValidURInameConstraintsTest34EE.crt",
      "pki/testdata/nist-pkits/certs/ValidURInameConstraintsTest36EE.crt",
      "pki/testdata/nist-pkits/certs/ValidUTF8StringCaseInsensitiveMatchTest11EE.crt",
      "pki/testdata/nist-pkits/certs/ValidUTF8StringEncodedNamesTest9EE.crt",
      "pki/testdata/nist-pkits/certs/ValidUnknownNotCriticalCertificateExtensionTest1EE.crt",
      "pki/testdata/nist-pkits/certs/ValidbasicConstraintsNotCriticalTest4EE.crt",
      "pki/testdata/nist-pkits/certs/ValidcRLIssuerTest28EE.crt",
      "pki/testdata/nist-pkits/certs/ValidcRLIssuerTest29EE.crt",
      "pki/testdata/nist-pkits/certs/ValidcRLIssuerTest30EE.crt",
      "pki/testdata/nist-pkits/certs/ValidcRLIssuerTest33EE.crt",
      "pki/testdata/nist-pkits/certs/ValiddeltaCRLTest2EE.crt",
      "pki/testdata/nist-pkits/certs/ValiddeltaCRLTest5EE.crt",
      "pki/testdata/nist-pkits/certs/ValiddeltaCRLTest7EE.crt",
      "pki/testdata/nist-pkits/certs/ValiddeltaCRLTest8EE.crt",
      "pki/testdata/nist-pkits/certs/ValiddistributionPointTest1EE.crt",
      "pki/testdata/nist-pkits/certs/ValiddistributionPointTest4EE.crt",
      "pki/testdata/nist-pkits/certs/ValiddistributionPointTest5EE.crt",
      "pki/testdata/nist-pkits/certs/ValiddistributionPointTest7EE.crt",
      "pki/testdata/nist-pkits/certs/ValidinhibitAnyPolicyTest2EE.crt",
      "pki/testdata/nist-pkits/certs/ValidinhibitPolicyMappingTest2EE.crt",
      "pki/testdata/nist-pkits/certs/ValidinhibitPolicyMappingTest4EE.crt",
      "pki/testdata/nist-pkits/certs/ValidkeyUsageNotCriticalTest3EE.crt",
      "pki/testdata/nist-pkits/certs/ValidonlyContainsCACertsTest13EE.crt",
      "pki/testdata/nist-pkits/certs/ValidonlySomeReasonsTest18EE.crt",
      "pki/testdata/nist-pkits/certs/ValidonlySomeReasonsTest19EE.crt",
      "pki/testdata/nist-pkits/certs/ValidpathLenConstraintTest13EE.crt",
      "pki/testdata/nist-pkits/certs/ValidpathLenConstraintTest14EE.crt",
      "pki/testdata/nist-pkits/certs/ValidpathLenConstraintTest7EE.crt",
      "pki/testdata/nist-pkits/certs/ValidpathLenConstraintTest8EE.crt",
      "pki/testdata/nist-pkits/certs/Validpre2000UTCnotBeforeDateTest3EE.crt",
      "pki/testdata/nist-pkits/certs/ValidrequireExplicitPolicyTest1EE.crt",
      "pki/testdata/nist-pkits/certs/ValidrequireExplicitPolicyTest2EE.crt",
      "pki/testdata/nist-pkits/certs/ValidrequireExplicitPolicyTest4EE.crt",
      "pki/testdata/nist-pkits/certs/WrongCRLCACert.crt",
      "pki/testdata/nist-pkits/certs/anyPolicyCACert.crt",
      "pki/testdata/nist-pkits/certs/basicConstraintsCriticalcAFalseCACert.crt",
      "pki/testdata/nist-pkits/certs/basicConstraintsNotCriticalCACert.crt",
      "pki/testdata/nist-pkits/certs/basicConstraintsNotCriticalcAFalseCACert.crt",
      "pki/testdata/nist-pkits/certs/deltaCRLCA1Cert.crt",
      "pki/testdata/nist-pkits/certs/deltaCRLCA2Cert.crt",
      "pki/testdata/nist-pkits/certs/deltaCRLCA3Cert.crt",
      "pki/testdata/nist-pkits/certs/deltaCRLIndicatorNoBaseCACert.crt",
      "pki/testdata/nist-pkits/certs/distributionPoint1CACert.crt",
      "pki/testdata/nist-pkits/certs/distributionPoint2CACert.crt",
      "pki/testdata/nist-pkits/certs/indirectCRLCA1Cert.crt",
      "pki/testdata/nist-pkits/certs/indirectCRLCA2Cert.crt",
      "pki/testdata/nist-pkits/certs/indirectCRLCA3Cert.crt",
      "pki/testdata/nist-pkits/certs/indirectCRLCA3cRLIssuerCert.crt",
      "pki/testdata/nist-pkits/certs/indirectCRLCA4Cert.crt",
      "pki/testdata/nist-pkits/certs/indirectCRLCA4cRLIssuerCert.crt",
      "pki/testdata/nist-pkits/certs/indirectCRLCA5Cert.crt",
      "pki/testdata/nist-pkits/certs/indirectCRLCA6Cert.crt",
      "pki/testdata/nist-pkits/certs/inhibitAnyPolicy0CACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitAnyPolicy1CACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedCACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedsubCA2Cert.crt",
      "pki/testdata/nist-pkits/certs/inhibitAnyPolicy1subCA1Cert.crt",
      "pki/testdata/nist-pkits/certs/inhibitAnyPolicy1subCA2Cert.crt",
      "pki/testdata/nist-pkits/certs/inhibitAnyPolicy1subCAIAP5Cert.crt",
      "pki/testdata/nist-pkits/certs/inhibitAnyPolicy1subsubCA2Cert.crt",
      "pki/testdata/nist-pkits/certs/inhibitAnyPolicy5CACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitAnyPolicy5subCACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitAnyPolicy5subsubCACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitAnyPolicyTest3EE.crt",
      "pki/testdata/nist-pkits/certs/inhibitPolicyMapping0CACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitPolicyMapping0subCACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P12CACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P12subCACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P12subCAIPM5Cert.crt",
      "pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P12subsubCACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P12subsubCAIPM5Cert.crt",
      "pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P1CACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedCACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedsubCACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P1subCACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P1subsubCACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitPolicyMapping5CACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitPolicyMapping5subCACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitPolicyMapping5subsubCACert.crt",
      "pki/testdata/nist-pkits/certs/inhibitPolicyMapping5subsubsubCACert.crt",
      "pki/testdata/nist-pkits/certs/keyUsageCriticalcRLSignFalseCACert.crt",
      "pki/testdata/nist-pkits/certs/keyUsageCriticalkeyCertSignFalseCACert.crt",
      "pki/testdata/nist-pkits/certs/keyUsageNotCriticalCACert.crt",
      "pki/testdata/nist-pkits/certs/keyUsageNotCriticalcRLSignFalseCACert.crt",
      "pki/testdata/nist-pkits/certs/keyUsageNotCriticalkeyCertSignFalseCACert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsDN1CACert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsDN1SelfIssuedCACert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsDN1subCA1Cert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsDN1subCA2Cert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsDN1subCA3Cert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsDN2CACert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsDN3CACert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsDN3subCA1Cert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsDN3subCA2Cert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsDN4CACert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsDN5CACert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsDNS1CACert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsDNS2CACert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsRFC822CA1Cert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsRFC822CA2Cert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsRFC822CA3Cert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsURI1CACert.crt",
      "pki/testdata/nist-pkits/certs/nameConstraintsURI2CACert.crt",
      "pki/testdata/nist-pkits/certs/onlyContainsAttributeCertsCACert.crt",
      "pki/testdata/nist-pkits/certs/onlyContainsCACertsCACert.crt",
      "pki/testdata/nist-pkits/certs/onlyContainsUserCertsCACert.crt",
      "pki/testdata/nist-pkits/certs/onlySomeReasonsCA1Cert.crt",
      "pki/testdata/nist-pkits/certs/onlySomeReasonsCA2Cert.crt",
      "pki/testdata/nist-pkits/certs/onlySomeReasonsCA3Cert.crt",
      "pki/testdata/nist-pkits/certs/onlySomeReasonsCA4Cert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint0CACert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint0SelfIssuedCACert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint0subCA2Cert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint0subCACert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint1CACert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint1SelfIssuedCACert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint1SelfIssuedsubCACert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint1subCACert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint6CACert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint6subCA0Cert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint6subCA1Cert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint6subCA4Cert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint6subsubCA00Cert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint6subsubCA11Cert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint6subsubCA41Cert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint6subsubsubCA11XCert.crt",
      "pki/testdata/nist-pkits/certs/pathLenConstraint6subsubsubCA41XCert.crt",
      "pki/testdata/nist-pkits/certs/pre2000CRLnextUpdateCACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy0CACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy0subCACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy0subsubCACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy0subsubsubCACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy10CACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy10subCACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy10subsubCACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy10subsubsubCACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy2CACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy2SelfIssuedCACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy2SelfIssuedsubCACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy2subCACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy4CACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy4subCACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy4subsubCACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy4subsubsubCACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy5CACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy5subCACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy5subsubCACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy5subsubsubCACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy7CACert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy7subCARE2Cert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy7subsubCARE2RE4Cert.crt",
      "pki/testdata/nist-pkits/certs/requireExplicitPolicy7subsubsubCARE2RE4Cert.crt",
      "pki/testdata/nist-pkits/crls/BadCRLIssuerNameCACRL.crl",
      "pki/testdata/nist-pkits/crls/BadCRLSignatureCACRL.crl",
      "pki/testdata/nist-pkits/crls/BadSignedCACRL.crl",
      "pki/testdata/nist-pkits/crls/BadnotAfterDateCACRL.crl",
      "pki/testdata/nist-pkits/crls/BadnotBeforeDateCACRL.crl",
      "pki/testdata/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCACRL.crl",
      "pki/testdata/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCRLCertCRL.crl",
      "pki/testdata/nist-pkits/crls/BasicSelfIssuedNewKeyCACRL.crl",
      "pki/testdata/nist-pkits/crls/BasicSelfIssuedOldKeyCACRL.crl",
      "pki/testdata/nist-pkits/crls/BasicSelfIssuedOldKeySelfIssuedCertCRL.crl",
      "pki/testdata/nist-pkits/crls/DSACACRL.crl",
      "pki/testdata/nist-pkits/crls/DSAParametersInheritedCACRL.crl",
      "pki/testdata/nist-pkits/crls/GeneralizedTimeCRLnextUpdateCACRL.crl",
      "pki/testdata/nist-pkits/crls/GoodCACRL.crl",
      "pki/testdata/nist-pkits/crls/GoodsubCACRL.crl",
      "pki/testdata/nist-pkits/crls/GoodsubCAPanyPolicyMapping1to2CACRL.crl",
      "pki/testdata/nist-pkits/crls/LongSerialNumberCACRL.crl",
      "pki/testdata/nist-pkits/crls/Mapping1to2CACRL.crl",
      "pki/testdata/nist-pkits/crls/MappingFromanyPolicyCACRL.crl",
      "pki/testdata/nist-pkits/crls/MappingToanyPolicyCACRL.crl",
      "pki/testdata/nist-pkits/crls/MissingbasicConstraintsCACRL.crl",
      "pki/testdata/nist-pkits/crls/NameOrderCACRL.crl",
      "pki/testdata/nist-pkits/crls/NegativeSerialNumberCACRL.crl",
      "pki/testdata/nist-pkits/crls/NoPoliciesCACRL.crl",
      "pki/testdata/nist-pkits/crls/NoissuingDistributionPointCACRL.crl",
      "pki/testdata/nist-pkits/crls/OldCRLnextUpdateCACRL.crl",
      "pki/testdata/nist-pkits/crls/P12Mapping1to3CACRL.crl",
      "pki/testdata/nist-pkits/crls/P12Mapping1to3subCACRL.crl",
      "pki/testdata/nist-pkits/crls/P12Mapping1to3subsubCACRL.crl",
      "pki/testdata/nist-pkits/crls/P1Mapping1to234CACRL.crl",
      "pki/testdata/nist-pkits/crls/P1Mapping1to234subCACRL.crl",
      "pki/testdata/nist-pkits/crls/P1anyPolicyMapping1to2CACRL.crl",
      "pki/testdata/nist-pkits/crls/PanyPolicyMapping1to2CACRL.crl",
      "pki/testdata/nist-pkits/crls/PoliciesP1234CACRL.crl",
      "pki/testdata/nist-pkits/crls/PoliciesP1234subCAP123CRL.crl",
      "pki/testdata/nist-pkits/crls/PoliciesP1234subsubCAP123P12CRL.crl",
      "pki/testdata/nist-pkits/crls/PoliciesP123CACRL.crl",
      "pki/testdata/nist-pkits/crls/PoliciesP123subCAP12CRL.crl",
      "pki/testdata/nist-pkits/crls/PoliciesP123subsubCAP12P1CRL.crl",
      "pki/testdata/nist-pkits/crls/PoliciesP123subsubCAP2P2CRL.crl",
      "pki/testdata/nist-pkits/crls/PoliciesP123subsubsubCAP12P2P1CRL.crl",
      "pki/testdata/nist-pkits/crls/PoliciesP12CACRL.crl",
      "pki/testdata/nist-pkits/crls/PoliciesP12subCAP1CRL.crl",
      "pki/testdata/nist-pkits/crls/PoliciesP12subsubCAP1P2CRL.crl",
      "pki/testdata/nist-pkits/crls/PoliciesP2subCA2CRL.crl",
      "pki/testdata/nist-pkits/crls/PoliciesP2subCACRL.crl",
      "pki/testdata/nist-pkits/crls/PoliciesP3CACRL.crl",
      "pki/testdata/nist-pkits/crls/RFC3280MandatoryAttributeTypesCACRL.crl",
      "pki/testdata/nist-pkits/crls/RFC3280OptionalAttributeTypesCACRL.crl",
      "pki/testdata/nist-pkits/crls/RevokedsubCACRL.crl",
      "pki/testdata/nist-pkits/crls/RolloverfromPrintableStringtoUTF8StringCACRL.crl",
      "pki/testdata/nist-pkits/crls/SeparateCertificateandCRLKeysCA2CRL.crl",
      "pki/testdata/nist-pkits/crls/SeparateCertificateandCRLKeysCRL.crl",
      "pki/testdata/nist-pkits/crls/TrustAnchorRootCRL.crl",
      "pki/testdata/nist-pkits/crls/TwoCRLsCABadCRL.crl",
      "pki/testdata/nist-pkits/crls/TwoCRLsCAGoodCRL.crl",
      "pki/testdata/nist-pkits/crls/UIDCACRL.crl",
      "pki/testdata/nist-pkits/crls/UTF8StringCaseInsensitiveMatchCACRL.crl",
      "pki/testdata/nist-pkits/crls/UTF8StringEncodedNamesCACRL.crl",
      "pki/testdata/nist-pkits/crls/UnknownCRLEntryExtensionCACRL.crl",
      "pki/testdata/nist-pkits/crls/UnknownCRLExtensionCACRL.crl",
      "pki/testdata/nist-pkits/crls/WrongCRLCACRL.crl",
      "pki/testdata/nist-pkits/crls/anyPolicyCACRL.crl",
      "pki/testdata/nist-pkits/crls/basicConstraintsCriticalcAFalseCACRL.crl",
      "pki/testdata/nist-pkits/crls/basicConstraintsNotCriticalCACRL.crl",
      "pki/testdata/nist-pkits/crls/basicConstraintsNotCriticalcAFalseCACRL.crl",
      "pki/testdata/nist-pkits/crls/deltaCRLCA1CRL.crl",
      "pki/testdata/nist-pkits/crls/deltaCRLCA1deltaCRL.crl",
      "pki/testdata/nist-pkits/crls/deltaCRLCA2CRL.crl",
      "pki/testdata/nist-pkits/crls/deltaCRLCA2deltaCRL.crl",
      "pki/testdata/nist-pkits/crls/deltaCRLCA3CRL.crl",
      "pki/testdata/nist-pkits/crls/deltaCRLCA3deltaCRL.crl",
      "pki/testdata/nist-pkits/crls/deltaCRLIndicatorNoBaseCACRL.crl",
      "pki/testdata/nist-pkits/crls/distributionPoint1CACRL.crl",
      "pki/testdata/nist-pkits/crls/distributionPoint2CACRL.crl",
      "pki/testdata/nist-pkits/crls/indirectCRLCA1CRL.crl",
      "pki/testdata/nist-pkits/crls/indirectCRLCA3CRL.crl",
      "pki/testdata/nist-pkits/crls/indirectCRLCA3cRLIssuerCRL.crl",
      "pki/testdata/nist-pkits/crls/indirectCRLCA4cRLIssuerCRL.crl",
      "pki/testdata/nist-pkits/crls/indirectCRLCA5CRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitAnyPolicy0CACRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitAnyPolicy1CACRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitAnyPolicy1subCA1CRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitAnyPolicy1subCA2CRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitAnyPolicy1subCAIAP5CRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitAnyPolicy1subsubCA2CRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitAnyPolicy5CACRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitAnyPolicy5subCACRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitAnyPolicy5subsubCACRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitPolicyMapping0CACRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitPolicyMapping0subCACRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitPolicyMapping1P12CACRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitPolicyMapping1P12subCACRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitPolicyMapping1P12subCAIPM5CRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitPolicyMapping1P12subsubCACRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitPolicyMapping1P12subsubCAIPM5CRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitPolicyMapping1P1CACRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitPolicyMapping1P1subCACRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitPolicyMapping1P1subsubCACRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitPolicyMapping5CACRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitPolicyMapping5subCACRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitPolicyMapping5subsubCACRL.crl",
      "pki/testdata/nist-pkits/crls/inhibitPolicyMapping5subsubsubCACRL.crl",
      "pki/testdata/nist-pkits/crls/keyUsageCriticalcRLSignFalseCACRL.crl",
      "pki/testdata/nist-pkits/crls/keyUsageCriticalkeyCertSignFalseCACRL.crl",
      "pki/testdata/nist-pkits/crls/keyUsageNotCriticalCACRL.crl",
      "pki/testdata/nist-pkits/crls/keyUsageNotCriticalcRLSignFalseCACRL.crl",
      "pki/testdata/nist-pkits/crls/keyUsageNotCriticalkeyCertSignFalseCACRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsDN1CACRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsDN1subCA1CRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsDN1subCA2CRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsDN1subCA3CRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsDN2CACRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsDN3CACRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsDN3subCA1CRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsDN3subCA2CRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsDN4CACRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsDN5CACRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsDNS1CACRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsDNS2CACRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsRFC822CA1CRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsRFC822CA2CRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsRFC822CA3CRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsURI1CACRL.crl",
      "pki/testdata/nist-pkits/crls/nameConstraintsURI2CACRL.crl",
      "pki/testdata/nist-pkits/crls/onlyContainsAttributeCertsCACRL.crl",
      "pki/testdata/nist-pkits/crls/onlyContainsCACertsCACRL.crl",
      "pki/testdata/nist-pkits/crls/onlyContainsUserCertsCACRL.crl",
      "pki/testdata/nist-pkits/crls/onlySomeReasonsCA1compromiseCRL.crl",
      "pki/testdata/nist-pkits/crls/onlySomeReasonsCA1otherreasonsCRL.crl",
      "pki/testdata/nist-pkits/crls/onlySomeReasonsCA2CRL1.crl",
      "pki/testdata/nist-pkits/crls/onlySomeReasonsCA2CRL2.crl",
      "pki/testdata/nist-pkits/crls/onlySomeReasonsCA3compromiseCRL.crl",
      "pki/testdata/nist-pkits/crls/onlySomeReasonsCA3otherreasonsCRL.crl",
      "pki/testdata/nist-pkits/crls/onlySomeReasonsCA4compromiseCRL.crl",
      "pki/testdata/nist-pkits/crls/onlySomeReasonsCA4otherreasonsCRL.crl",
      "pki/testdata/nist-pkits/crls/pathLenConstraint0CACRL.crl",
      "pki/testdata/nist-pkits/crls/pathLenConstraint0subCA2CRL.crl",
      "pki/testdata/nist-pkits/crls/pathLenConstraint0subCACRL.crl",
      "pki/testdata/nist-pkits/crls/pathLenConstraint1CACRL.crl",
      "pki/testdata/nist-pkits/crls/pathLenConstraint1subCACRL.crl",
      "pki/testdata/nist-pkits/crls/pathLenConstraint6CACRL.crl",
      "pki/testdata/nist-pkits/crls/pathLenConstraint6subCA0CRL.crl",
      "pki/testdata/nist-pkits/crls/pathLenConstraint6subCA1CRL.crl",
      "pki/testdata/nist-pkits/crls/pathLenConstraint6subCA4CRL.crl",
      "pki/testdata/nist-pkits/crls/pathLenConstraint6subsubCA00CRL.crl",
      "pki/testdata/nist-pkits/crls/pathLenConstraint6subsubCA11CRL.crl",
      "pki/testdata/nist-pkits/crls/pathLenConstraint6subsubCA41CRL.crl",
      "pki/testdata/nist-pkits/crls/pathLenConstraint6subsubsubCA11XCRL.crl",
      "pki/testdata/nist-pkits/crls/pathLenConstraint6subsubsubCA41XCRL.crl",
      "pki/testdata/nist-pkits/crls/pre2000CRLnextUpdateCACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy0CACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy0subCACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy0subsubCACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy0subsubsubCACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy10CACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy10subCACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy10subsubCACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy10subsubsubCACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy2CACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy2subCACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy4CACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy4subCACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy4subsubCACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy4subsubsubCACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy5CACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy7CACRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl",
      "pki/testdata/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.crl",
      "pki/testdata/ocsp_unittest/bad_ocsp_type.pem",
      "pki/testdata/ocsp_unittest/bad_signature.pem",
      "pki/testdata/ocsp_unittest/bad_status.pem",
      "pki/testdata/ocsp_unittest/good_response.pem",
      "pki/testdata/ocsp_unittest/good_response_next_update.pem",
      "pki/testdata/ocsp_unittest/good_response_sha256.pem",
      "pki/testdata/ocsp_unittest/has_critical_ct_extension.pem",
      "pki/testdata/ocsp_unittest/has_critical_response_extension.pem",
      "pki/testdata/ocsp_unittest/has_critical_single_extension.pem",
      "pki/testdata/ocsp_unittest/has_extension.pem",
      "pki/testdata/ocsp_unittest/has_single_extension.pem",
      "pki/testdata/ocsp_unittest/has_version.pem",
      "pki/testdata/ocsp_unittest/malformed_request.pem",
      "pki/testdata/ocsp_unittest/missing_response.pem",
      "pki/testdata/ocsp_unittest/multiple_response.pem",
      "pki/testdata/ocsp_unittest/no_response.pem",
      "pki/testdata/ocsp_unittest/ocsp_extra_certs.pem",
      "pki/testdata/ocsp_unittest/ocsp_sign_bad_indirect.pem",
      "pki/testdata/ocsp_unittest/ocsp_sign_direct.pem",
      "pki/testdata/ocsp_unittest/ocsp_sign_indirect.pem",
      "pki/testdata/ocsp_unittest/ocsp_sign_indirect_missing.pem",
      "pki/testdata/ocsp_unittest/other_response.pem",
      "pki/testdata/ocsp_unittest/responder_id.pem",
      "pki/testdata/ocsp_unittest/responder_name.pem",
      "pki/testdata/ocsp_unittest/revoke_response.pem",
      "pki/testdata/ocsp_unittest/revoke_response_reason.pem",
      "pki/testdata/ocsp_unittest/unknown_response.pem",
      "pki/testdata/parse_certificate_unittest/authority_key_identifier/empty_sequence.pem",
      "pki/testdata/parse_certificate_unittest/authority_key_identifier/extra_contents_after_extension_sequence.pem",
      "pki/testdata/parse_certificate_unittest/authority_key_identifier/extra_contents_after_issuer_and_serial.pem",
      "pki/testdata/parse_certificate_unittest/authority_key_identifier/invalid_contents.pem",
      "pki/testdata/parse_certificate_unittest/authority_key_identifier/invalid_issuer.pem",
      "pki/testdata/parse_certificate_unittest/authority_key_identifier/invalid_key_identifier.pem",
      "pki/testdata/parse_certificate_unittest/authority_key_identifier/invalid_serial.pem",
      "pki/testdata/parse_certificate_unittest/authority_key_identifier/issuer_and_serial.pem",
      "pki/testdata/parse_certificate_unittest/authority_key_identifier/issuer_only.pem",
      "pki/testdata/parse_certificate_unittest/authority_key_identifier/key_identifier.pem",
      "pki/testdata/parse_certificate_unittest/authority_key_identifier/key_identifier_and_issuer_and_serial.pem",
      "pki/testdata/parse_certificate_unittest/authority_key_identifier/serial_only.pem",
      "pki/testdata/parse_certificate_unittest/authority_key_identifier/url_issuer_and_serial.pem",
      "pki/testdata/parse_certificate_unittest/authority_key_identifier_not_sequence.pem",
      "pki/testdata/parse_certificate_unittest/bad_key_usage.pem",
      "pki/testdata/parse_certificate_unittest/bad_policy_qualifiers.pem",
      "pki/testdata/parse_certificate_unittest/bad_signature_algorithm_oid.pem",
      "pki/testdata/parse_certificate_unittest/bad_validity.pem",
      "pki/testdata/parse_certificate_unittest/basic_constraints_ca_false.pem",
      "pki/testdata/parse_certificate_unittest/basic_constraints_ca_no_path.pem",
      "pki/testdata/parse_certificate_unittest/basic_constraints_ca_path_9.pem",
      "pki/testdata/parse_certificate_unittest/basic_constraints_negative_path.pem",
      "pki/testdata/parse_certificate_unittest/basic_constraints_not_ca.pem",
      "pki/testdata/parse_certificate_unittest/basic_constraints_path_too_large.pem",
      "pki/testdata/parse_certificate_unittest/basic_constraints_pathlen_255.pem",
      "pki/testdata/parse_certificate_unittest/basic_constraints_pathlen_256.pem",
      "pki/testdata/parse_certificate_unittest/basic_constraints_pathlen_not_ca.pem",
      "pki/testdata/parse_certificate_unittest/basic_constraints_unconsumed_data.pem",
      "pki/testdata/parse_certificate_unittest/cert_algorithm_not_sequence.pem",
      "pki/testdata/parse_certificate_unittest/cert_data_after_signature.pem",
      "pki/testdata/parse_certificate_unittest/cert_empty_sequence.pem",
      "pki/testdata/parse_certificate_unittest/cert_missing_signature.pem",
      "pki/testdata/parse_certificate_unittest/cert_not_sequence.pem",
      "pki/testdata/parse_certificate_unittest/cert_signature_not_bit_string.pem",
      "pki/testdata/parse_certificate_unittest/cert_skeleton.pem",
      "pki/testdata/parse_certificate_unittest/cert_version3.pem",
      "pki/testdata/parse_certificate_unittest/crldp_1uri_noissuer.pem",
      "pki/testdata/parse_certificate_unittest/crldp_3uri_noissuer.pem",
      "pki/testdata/parse_certificate_unittest/crldp_full_name_as_dirname.pem",
      "pki/testdata/parse_certificate_unittest/crldp_issuer_as_dirname.pem",
      "pki/testdata/parse_certificate_unittest/extended_key_usage.pem",
      "pki/testdata/parse_certificate_unittest/extension_critical.pem",
      "pki/testdata/parse_certificate_unittest/extension_critical_0.pem",
      "pki/testdata/parse_certificate_unittest/extension_critical_3.pem",
      "pki/testdata/parse_certificate_unittest/extension_not_critical.pem",
      "pki/testdata/parse_certificate_unittest/extensions_data_after_sequence.pem",
      "pki/testdata/parse_certificate_unittest/extensions_duplicate_key_usage.pem",
      "pki/testdata/parse_certificate_unittest/extensions_empty_sequence.pem",
      "pki/testdata/parse_certificate_unittest/extensions_not_sequence.pem",
      "pki/testdata/parse_certificate_unittest/extensions_real.pem",
      "pki/testdata/parse_certificate_unittest/failed_signature_algorithm.pem",
      "pki/testdata/parse_certificate_unittest/inhibit_any_policy.pem",
      "pki/testdata/parse_certificate_unittest/issuer_bad_printable_string.pem",
      "pki/testdata/parse_certificate_unittest/key_usage.pem",
      "pki/testdata/parse_certificate_unittest/name_constraints_bad_ip.pem",
      "pki/testdata/parse_certificate_unittest/policies.pem",
      "pki/testdata/parse_certificate_unittest/policy_constraints_empty.pem",
      "pki/testdata/parse_certificate_unittest/policy_constraints_inhibit.pem",
      "pki/testdata/parse_certificate_unittest/policy_constraints_inhibit_require.pem",
      "pki/testdata/parse_certificate_unittest/policy_constraints_require.pem",
      "pki/testdata/parse_certificate_unittest/policy_qualifiers_empty_sequence.pem",
      "pki/testdata/parse_certificate_unittest/serial_37_bytes.pem",
      "pki/testdata/parse_certificate_unittest/serial_negative.pem",
      "pki/testdata/parse_certificate_unittest/serial_not_minimal.pem",
      "pki/testdata/parse_certificate_unittest/serial_not_number.pem",
      "pki/testdata/parse_certificate_unittest/serial_zero.pem",
      "pki/testdata/parse_certificate_unittest/serial_zero_padded.pem",
      "pki/testdata/parse_certificate_unittest/serial_zero_padded_21_bytes.pem",
      "pki/testdata/parse_certificate_unittest/signature_algorithm_null.pem",
      "pki/testdata/parse_certificate_unittest/subject_alt_name.pem",
      "pki/testdata/parse_certificate_unittest/subject_blank_subjectaltname_not_critical.pem",
      "pki/testdata/parse_certificate_unittest/subject_key_identifier_not_octet_string.pem",
      "pki/testdata/parse_certificate_unittest/subject_not_ascii.pem",
      "pki/testdata/parse_certificate_unittest/subject_not_printable_string.pem",
      "pki/testdata/parse_certificate_unittest/subject_printable_string_containing_utf8_client_cert.pem",
      "pki/testdata/parse_certificate_unittest/subject_t61string.pem",
      "pki/testdata/parse_certificate_unittest/subject_t61string_1-32.pem",
      "pki/testdata/parse_certificate_unittest/subject_t61string_126-160.pem",
      "pki/testdata/parse_certificate_unittest/subject_t61string_actual.pem",
      "pki/testdata/parse_certificate_unittest/subjectaltname_bad_ip.pem",
      "pki/testdata/parse_certificate_unittest/subjectaltname_dns_not_ascii.pem",
      "pki/testdata/parse_certificate_unittest/subjectaltname_general_names_empty_sequence.pem",
      "pki/testdata/parse_certificate_unittest/subjectaltname_trailing_data.pem",
      "pki/testdata/parse_certificate_unittest/tbs_explicit_v1.pem",
      "pki/testdata/parse_certificate_unittest/tbs_v1.pem",
      "pki/testdata/parse_certificate_unittest/tbs_v1_extensions.pem",
      "pki/testdata/parse_certificate_unittest/tbs_v2_extensions.pem",
      "pki/testdata/parse_certificate_unittest/tbs_v2_issuer_and_subject_unique_id.pem",
      "pki/testdata/parse_certificate_unittest/tbs_v2_issuer_unique_id.pem",
      "pki/testdata/parse_certificate_unittest/tbs_v2_no_optionals.pem",
      "pki/testdata/parse_certificate_unittest/tbs_v3_all_optionals.pem",
      "pki/testdata/parse_certificate_unittest/tbs_v3_data_after_extensions.pem",
      "pki/testdata/parse_certificate_unittest/tbs_v3_extensions.pem",
      "pki/testdata/parse_certificate_unittest/tbs_v3_extensions_not_sequence.pem",
      "pki/testdata/parse_certificate_unittest/tbs_v3_no_optionals.pem",
      "pki/testdata/parse_certificate_unittest/tbs_v3_real.pem",
      "pki/testdata/parse_certificate_unittest/tbs_v4.pem",
      "pki/testdata/parse_certificate_unittest/tbs_validity_both_generalized_time.pem",
      "pki/testdata/parse_certificate_unittest/tbs_validity_both_utc_time.pem",
      "pki/testdata/parse_certificate_unittest/tbs_validity_generalized_time_and_utc_time.pem",
      "pki/testdata/parse_certificate_unittest/tbs_validity_relaxed.pem",
      "pki/testdata/parse_certificate_unittest/tbs_validity_utc_time_and_generalized_time.pem",
      "pki/testdata/parse_certificate_unittest/v1_explicit_version.pem",
      "pki/testdata/path_builder_unittest/key_id_name_and_serial_prioritization/int_match_name_only.pem",
      "pki/testdata/path_builder_unittest/key_id_name_and_serial_prioritization/int_matching.pem",
      "pki/testdata/path_builder_unittest/key_id_name_and_serial_prioritization/int_mismatch.pem",
      "pki/testdata/path_builder_unittest/key_id_name_and_serial_prioritization/root.pem",
      "pki/testdata/path_builder_unittest/key_id_name_and_serial_prioritization/root2.pem",
      "pki/testdata/path_builder_unittest/key_id_name_and_serial_prioritization/target.pem",
      "pki/testdata/path_builder_unittest/key_id_prioritization/int_different_ski_a.pem",
      "pki/testdata/path_builder_unittest/key_id_prioritization/int_different_ski_b.pem",
      "pki/testdata/path_builder_unittest/key_id_prioritization/int_different_ski_c.pem",
      "pki/testdata/path_builder_unittest/key_id_prioritization/int_matching_ski_a.pem",
      "pki/testdata/path_builder_unittest/key_id_prioritization/int_matching_ski_b.pem",
      "pki/testdata/path_builder_unittest/key_id_prioritization/int_matching_ski_c.pem",
      "pki/testdata/path_builder_unittest/key_id_prioritization/int_no_ski_a.pem",
      "pki/testdata/path_builder_unittest/key_id_prioritization/int_no_ski_b.pem",
      "pki/testdata/path_builder_unittest/key_id_prioritization/int_no_ski_c.pem",
      "pki/testdata/path_builder_unittest/key_id_prioritization/root.pem",
      "pki/testdata/path_builder_unittest/key_id_prioritization/target.pem",
      "pki/testdata/path_builder_unittest/multi-root-A-by-B.pem",
      "pki/testdata/path_builder_unittest/multi-root-B-by-C.pem",
      "pki/testdata/path_builder_unittest/multi-root-B-by-F.pem",
      "pki/testdata/path_builder_unittest/multi-root-C-by-D.pem",
      "pki/testdata/path_builder_unittest/multi-root-C-by-E.pem",
      "pki/testdata/path_builder_unittest/multi-root-D-by-D.pem",
      "pki/testdata/path_builder_unittest/multi-root-E-by-E.pem",
      "pki/testdata/path_builder_unittest/multi-root-F-by-E.pem",
      "pki/testdata/path_builder_unittest/precertificate/precertificate.pem",
      "pki/testdata/path_builder_unittest/precertificate/root.pem",
      "pki/testdata/path_builder_unittest/self_issued_prioritization/root1.pem",
      "pki/testdata/path_builder_unittest/self_issued_prioritization/root1_cross.pem",
      "pki/testdata/path_builder_unittest/self_issued_prioritization/root2.pem",
      "pki/testdata/path_builder_unittest/self_issued_prioritization/target.pem",
      "pki/testdata/path_builder_unittest/validity_date_prioritization/int_ac.pem",
      "pki/testdata/path_builder_unittest/validity_date_prioritization/int_ad.pem",
      "pki/testdata/path_builder_unittest/validity_date_prioritization/int_bc.pem",
      "pki/testdata/path_builder_unittest/validity_date_prioritization/int_bd.pem",
      "pki/testdata/path_builder_unittest/validity_date_prioritization/root.pem",
      "pki/testdata/path_builder_unittest/validity_date_prioritization/target.pem",
      "pki/testdata/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/main.test",
      "pki/testdata/verify_certificate_chain_unittest/expired-intermediate/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/expired-intermediate/not-after.test",
      "pki/testdata/verify_certificate_chain_unittest/expired-intermediate/not-before.test",
      "pki/testdata/verify_certificate_chain_unittest/expired-root/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/expired-root/not-after-ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/expired-root/not-after-ta-with-expiration-and-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/expired-root/not-after-ta-with-expiration.test",
      "pki/testdata/verify_certificate_chain_unittest/expired-root/not-after.test",
      "pki/testdata/verify_certificate_chain_unittest/expired-root/not-before-ta-with-expiration.test",
      "pki/testdata/verify_certificate_chain_unittest/expired-root/not-before.test",
      "pki/testdata/verify_certificate_chain_unittest/expired-target/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/expired-target/not-after.test",
      "pki/testdata/verify_certificate_chain_unittest/expired-target/not-before.test",
      "pki/testdata/verify_certificate_chain_unittest/incorrect-trust-anchor/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/incorrect-trust-anchor/main.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-and-target-wrong-signature/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-and-target-wrong-signature/main.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/main.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/main.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/any.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/clientauth-strict-leaf.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/clientauth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/clientauth.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/serverauth-strict-leaf.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/serverauth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/serverauth.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-clientauth/any.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-clientauth/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-clientauth/clientauth-strict-leaf.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-clientauth/clientauth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-clientauth/clientauth.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-clientauth/serverauth-strict-leaf.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-clientauth/serverauth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-clientauth/serverauth.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-any.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-clientAuth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-clientAuth.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-serverAuth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-serverAuth.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-any.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-clientAuth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-clientAuth.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-serverAuth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-serverAuth.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-invalid-spki/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-invalid-spki/main.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/main.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/main.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-signed-with-sha1/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-signed-with-sha1/main.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/main.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/main.test",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-wrong-signature-no-authority-key-identifier/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/intermediate-wrong-signature-no-authority-key-identifier/main.test",
      "pki/testdata/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.pem",
      "pki/testdata/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.test",
      "pki/testdata/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.pem",
      "pki/testdata/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.test",
      "pki/testdata/verify_certificate_chain_unittest/key-rollover/longrolloverchain.pem",
      "pki/testdata/verify_certificate_chain_unittest/key-rollover/longrolloverchain.test",
      "pki/testdata/verify_certificate_chain_unittest/key-rollover/newchain.pem",
      "pki/testdata/verify_certificate_chain_unittest/key-rollover/newchain.test",
      "pki/testdata/verify_certificate_chain_unittest/key-rollover/oldchain.pem",
      "pki/testdata/verify_certificate_chain_unittest/key-rollover/oldchain.test",
      "pki/testdata/verify_certificate_chain_unittest/key-rollover/rolloverchain.pem",
      "pki/testdata/verify_certificate_chain_unittest/key-rollover/rolloverchain.test",
      "pki/testdata/verify_certificate_chain_unittest/many-names/ok-all-types.pem",
      "pki/testdata/verify_certificate_chain_unittest/many-names/ok-all-types.test",
      "pki/testdata/verify_certificate_chain_unittest/many-names/toomany-all-types.pem",
      "pki/testdata/verify_certificate_chain_unittest/many-names/toomany-all-types.test",
      "pki/testdata/verify_certificate_chain_unittest/many-names/toomany-dirnames-excluded.pem",
      "pki/testdata/verify_certificate_chain_unittest/many-names/toomany-dirnames-excluded.test",
      "pki/testdata/verify_certificate_chain_unittest/many-names/toomany-dirnames-permitted.pem",
      "pki/testdata/verify_certificate_chain_unittest/many-names/toomany-dirnames-permitted.test",
      "pki/testdata/verify_certificate_chain_unittest/many-names/toomany-dns-excluded.pem",
      "pki/testdata/verify_certificate_chain_unittest/many-names/toomany-dns-excluded.test",
      "pki/testdata/verify_certificate_chain_unittest/many-names/toomany-dns-permitted.pem",
      "pki/testdata/verify_certificate_chain_unittest/many-names/toomany-dns-permitted.test",
      "pki/testdata/verify_certificate_chain_unittest/many-names/toomany-ips-excluded.pem",
      "pki/testdata/verify_certificate_chain_unittest/many-names/toomany-ips-excluded.test",
      "pki/testdata/verify_certificate_chain_unittest/many-names/toomany-ips-permitted.pem",
      "pki/testdata/verify_certificate_chain_unittest/many-names/toomany-ips-permitted.test",
      "pki/testdata/verify_certificate_chain_unittest/non-self-signed-root/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/non-self-signed-root/main.test",
      "pki/testdata/verify_certificate_chain_unittest/non-self-signed-root/ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.1.2.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.1.3.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.1.4.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.1.5.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.1.6.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.10.1.2.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.10.1.3.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.10.10.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.10.13.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.10.2.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.10.3.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.10.4.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.10.5.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.10.6.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.10.7.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.10.8.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.11.1.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.11.10.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.11.11.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.11.3.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.11.5.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.11.6.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.11.8.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.11.9.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.12.1.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.12.10.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.12.3.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.12.4.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.12.5.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.12.6.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.12.8.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.10.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.12.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.13.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.15.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.16.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.17.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.2.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.20.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.21.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.22.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.23.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.24.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.25.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.26.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.27.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.28.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.29.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.3.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.31.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.33.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.34.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.35.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.36.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.37.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.38.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.7.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.8.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.13.9.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.16.2.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.2.1.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.2.2.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.2.5.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.2.6.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.2.7.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.3.1.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.3.2.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.6.1.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.6.10.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.6.11.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.6.12.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.6.16.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.6.2.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.6.3.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.6.5.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.6.6.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.6.9.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.7.1.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.7.2.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.8.1.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.8.12.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.8.14.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.8.2.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.8.3.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.8.4.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.8.5.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.8.6.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.8.7.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.8.8.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.8.9.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.9.3.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.9.5.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.9.7.txt",
      "pki/testdata/verify_certificate_chain_unittest/pkits_errors/4.9.8.txt",
      "pki/testdata/verify_certificate_chain_unittest/policies-inhibit-anypolicy-by-root-fail/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/policies-inhibit-anypolicy-by-root-fail/main.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-inhibit-anypolicy-by-root-fail/ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-inhibit-anypolicy-by-root-ok/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/policies-inhibit-anypolicy-by-root-ok/main.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-inhibit-anypolicy-by-root-ok/ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-inhibit-mapping-by-root-fail/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/policies-inhibit-mapping-by-root-fail/main.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-inhibit-mapping-by-root-fail/ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-inhibit-mapping-by-root-ok/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/policies-inhibit-mapping-by-root-ok/main.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-inhibit-mapping-by-root-ok/ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-ok/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/policies-ok/main.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-ok/ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-on-root-ok/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/policies-on-root-ok/main.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-on-root-ok/ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-on-root-wrong/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/policies-on-root-wrong/main.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-on-root-wrong/ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-required-by-root-fail/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/policies-required-by-root-fail/main.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-required-by-root-fail/ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-required-by-root-ok/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/policies-required-by-root-ok/main.test",
      "pki/testdata/verify_certificate_chain_unittest/policies-required-by-root-ok/ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/policy-mappings-on-root-fail/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/policy-mappings-on-root-fail/main.test",
      "pki/testdata/verify_certificate_chain_unittest/policy-mappings-on-root-fail/ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/policy-mappings-on-root-ok/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/policy-mappings-on-root-ok/main.test",
      "pki/testdata/verify_certificate_chain_unittest/policy-mappings-on-root-ok/ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/root-basic-constraints-ca-false/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/root-basic-constraints-ca-false/main.test",
      "pki/testdata/verify_certificate_chain_unittest/root-basic-constraints-ca-false/ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/root-eku-clientauth/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/root-eku-clientauth/serverauth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/root-eku-clientauth/serverauth-ta-with-constraints-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/root-eku-clientauth/serverauth-ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/root-eku-clientauth/serverauth-ta-with-expiration-and-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/root-eku-clientauth/serverauth-ta-with-expiration.test",
      "pki/testdata/verify_certificate_chain_unittest/root-eku-clientauth/serverauth.test",
      "pki/testdata/verify_certificate_chain_unittest/root-lacks-basic-constraints/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/root-lacks-basic-constraints/main.test",
      "pki/testdata/verify_certificate_chain_unittest/root-lacks-basic-constraints/ta-with-constraints-require-basic-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/root-lacks-basic-constraints/ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/root-lacks-basic-constraints/ta-with-require-basic-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/root-lacks-keycertsign-key-usage/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/root-lacks-keycertsign-key-usage/main.test",
      "pki/testdata/verify_certificate_chain_unittest/root-lacks-keycertsign-key-usage/ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/target-and-intermediate/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root-expired.test",
      "pki/testdata/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root.test",
      "pki/testdata/verify_certificate_chain_unittest/target-and-intermediate/main.test",
      "pki/testdata/verify_certificate_chain_unittest/target-and-intermediate/ta-with-constraints.test",
      "pki/testdata/verify_certificate_chain_unittest/target-and-intermediate/ta-with-expiration.test",
      "pki/testdata/verify_certificate_chain_unittest/target-and-intermediate/trusted_leaf-and-trust_anchor.test",
      "pki/testdata/verify_certificate_chain_unittest/target-and-intermediate/trusted_leaf-root.test",
      "pki/testdata/verify_certificate_chain_unittest/target-and-intermediate/unspecified-trust-root.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-any/any.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-any/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-any/clientauth-strict-leaf.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-any/clientauth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-any/clientauth.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-any/serverauth-strict-leaf.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-any/serverauth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-any/serverauth.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-clientauth/any.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-clientauth/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-clientauth/clientauth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-clientauth/clientauth.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-clientauth/serverauth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-clientauth/serverauth.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-many/any.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-many/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-many/clientauth-strict-leaf.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-many/clientauth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-many/clientauth.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-many/serverauth-strict-leaf.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-many/serverauth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-many/serverauth.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-none/any.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-none/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-none/clientauth-strict-leaf.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-none/clientauth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-none/clientauth.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-none/serverauth-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/target-eku-none/serverauth.test",
      "pki/testdata/verify_certificate_chain_unittest/target-has-512bit-rsa-key/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-has-512bit-rsa-key/main.test",
      "pki/testdata/verify_certificate_chain_unittest/target-has-ca-basic-constraints/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-has-ca-basic-constraints/main.test",
      "pki/testdata/verify_certificate_chain_unittest/target-has-ca-basic-constraints/strict.test",
      "pki/testdata/verify_certificate_chain_unittest/target-has-ca-basic-constraints/target_only-trusted_leaf-strict.test",
      "pki/testdata/verify_certificate_chain_unittest/target-has-ca-basic-constraints/target_only-trusted_leaf.test",
      "pki/testdata/verify_certificate_chain_unittest/target-has-ca-basic-constraints/target_only.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/main.test",
      "pki/testdata/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/main.test",
      "pki/testdata/verify_certificate_chain_unittest/target-msapplicationpolicies-and-eku/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-msapplicationpolicies-and-eku/main.test",
      "pki/testdata/verify_certificate_chain_unittest/target-msapplicationpolicies-no-eku/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-msapplicationpolicies-no-eku/main.test",
      "pki/testdata/verify_certificate_chain_unittest/target-not-end-entity/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-not-end-entity/main.test",
      "pki/testdata/verify_certificate_chain_unittest/target-not-end-entity/strict-leaf.test",
      "pki/testdata/verify_certificate_chain_unittest/target-not-end-entity/strict.test",
      "pki/testdata/verify_certificate_chain_unittest/target-only/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-only/trusted_anchor.test",
      "pki/testdata/verify_certificate_chain_unittest/target-only/trusted_leaf-and-trust_anchor.test",
      "pki/testdata/verify_certificate_chain_unittest/target-only/trusted_leaf-not_after.test",
      "pki/testdata/verify_certificate_chain_unittest/target-only/trusted_leaf-wrong_eku.test",
      "pki/testdata/verify_certificate_chain_unittest/target-only/trusted_leaf.test",
      "pki/testdata/verify_certificate_chain_unittest/target-only/trusted_leaf_require_self_signed.test",
      "pki/testdata/verify_certificate_chain_unittest/target-selfissued/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-selfissued/trusted_anchor.test",
      "pki/testdata/verify_certificate_chain_unittest/target-selfissued/trusted_leaf-and-trust_anchor.test",
      "pki/testdata/verify_certificate_chain_unittest/target-selfissued/trusted_leaf.test",
      "pki/testdata/verify_certificate_chain_unittest/target-selfissued/trusted_leaf_require_self_signed.test",
      "pki/testdata/verify_certificate_chain_unittest/target-selfsigned/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-selfsigned/trusted_leaf-and-trust_anchor.test",
      "pki/testdata/verify_certificate_chain_unittest/target-selfsigned/trusted_leaf-not_after.test",
      "pki/testdata/verify_certificate_chain_unittest/target-selfsigned/trusted_leaf-wrong_eku.test",
      "pki/testdata/verify_certificate_chain_unittest/target-selfsigned/trusted_leaf.test",
      "pki/testdata/verify_certificate_chain_unittest/target-selfsigned/trusted_leaf_require_self_signed.test",
      "pki/testdata/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.test",
      "pki/testdata/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.test",
      "pki/testdata/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.test",
      "pki/testdata/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.test",
      "pki/testdata/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.test",
      "pki/testdata/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.test",
      "pki/testdata/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.test",
      "pki/testdata/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.test",
      "pki/testdata/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/main.test",
      "pki/testdata/verify_certificate_chain_unittest/target-signed-using-ecdsa/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-signed-using-ecdsa/main.test",
      "pki/testdata/verify_certificate_chain_unittest/target-signed-with-sha1/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-signed-with-sha1/main.test",
      "pki/testdata/verify_certificate_chain_unittest/target-unknown-critical-extension/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-unknown-critical-extension/main.test",
      "pki/testdata/verify_certificate_chain_unittest/target-unknown-critical-extension/target_only-trusted_leaf.test",
      "pki/testdata/verify_certificate_chain_unittest/target-unknown-critical-extension/target_only.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-wrong-signature-no-authority-key-identifier/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-wrong-signature-no-authority-key-identifier/main.test",
      "pki/testdata/verify_certificate_chain_unittest/target-wrong-signature/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/target-wrong-signature/main.test",
      "pki/testdata/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/main.test",
      "pki/testdata/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/main.test",
      "pki/testdata/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/main.test",
      "pki/testdata/verify_certificate_chain_unittest/violates-pathlen-1-from-root/chain.pem",
      "pki/testdata/verify_certificate_chain_unittest/violates-pathlen-1-from-root/main.test",
      "pki/testdata/verify_certificate_chain_unittest/violates-pathlen-1-from-root/ta-with-constraints.test",
      "pki/testdata/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-dupe_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_rdn.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-dupe_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_rdn.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-dupe_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_rdn.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-dupe_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_rdn.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-dupe_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_rdn.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_1.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_2.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-dupe_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_rdn.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-T61STRING-case_swap-dupe_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_rdn.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-T61STRING-case_swap.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-dupe_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_rdn.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-T61STRING-unmangled-dupe_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_rdn.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-T61STRING-unmangled.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-dupe_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_rdn.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-dupe_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_rdn.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-dupe_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_rdn.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UTF8-case_swap-dupe_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_rdn.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UTF8-case_swap.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-dupe_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_rdn.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UTF8-unmangled-dupe_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_attr.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_rdn.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-UTF8-unmangled.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_1.pem",
      "pki/testdata/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_2.pem",
      "pki/testdata/verify_name_match_unittest/names/custom-custom-normalized.pem",
      "pki/testdata/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-badAttributeType.pem",
      "pki/testdata/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-empty.pem",
      "pki/testdata/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-extradata.pem",
      "pki/testdata/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-onlyOneElement.pem",
      "pki/testdata/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-setNotSequence.pem",
      "pki/testdata/verify_name_match_unittest/names/invalid-Name-setInsteadOfSequence.pem",
      "pki/testdata/verify_name_match_unittest/names/invalid-RDN-empty.pem",
      "pki/testdata/verify_name_match_unittest/names/invalid-RDN-sequenceInsteadOfSet.pem",
      "pki/testdata/verify_name_match_unittest/names/unicode-mixed-normalized.pem",
      "pki/testdata/verify_name_match_unittest/names/unicode-mixed-unnormalized.pem",
      "pki/testdata/verify_name_match_unittest/names/unicode_bmp-BMPSTRING-unmangled.pem",
      "pki/testdata/verify_name_match_unittest/names/unicode_bmp-UNIVERSALSTRING-unmangled.pem",
      "pki/testdata/verify_name_match_unittest/names/unicode_bmp-UTF8-unmangled.pem",
      "pki/testdata/verify_name_match_unittest/names/unicode_supplementary-UNIVERSALSTRING-unmangled.pem",
      "pki/testdata/verify_name_match_unittest/names/unicode_supplementary-UTF8-unmangled.pem",
      "pki/testdata/verify_name_match_unittest/names/valid-Name-empty.pem",
      "pki/testdata/verify_name_match_unittest/names/valid-minimal.pem",
      "pki/testdata/verify_signed_data_unittest/ecdsa-prime256v1-sha512-spki-params-null.pem",
      "pki/testdata/verify_signed_data_unittest/ecdsa-prime256v1-sha512-unused-bits-signature.pem",
      "pki/testdata/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecdh-key.pem",
      "pki/testdata/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecmqv-key.pem",
      "pki/testdata/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-rsa-algorithm.pem",
      "pki/testdata/verify_signed_data_unittest/ecdsa-prime256v1-sha512-wrong-signature-format.pem",
      "pki/testdata/verify_signed_data_unittest/ecdsa-prime256v1-sha512.pem",
      "pki/testdata/verify_signed_data_unittest/ecdsa-secp384r1-sha256-corrupted-data.pem",
      "pki/testdata/verify_signed_data_unittest/ecdsa-secp384r1-sha256.pem",
      "pki/testdata/verify_signed_data_unittest/ecdsa-using-rsa-key.pem",
      "pki/testdata/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-length.pem",
      "pki/testdata/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-null.pem",
      "pki/testdata/verify_signed_data_unittest/rsa-pkcs1-sha1-key-params-absent.pem",
      "pki/testdata/verify_signed_data_unittest/rsa-pkcs1-sha1-using-pss-key-no-params.pem",
      "pki/testdata/verify_signed_data_unittest/rsa-pkcs1-sha1-wrong-algorithm.pem",
      "pki/testdata/verify_signed_data_unittest/rsa-pkcs1-sha1.pem",
      "pki/testdata/verify_signed_data_unittest/rsa-pkcs1-sha256-key-encoded-ber.pem",
      "pki/testdata/verify_signed_data_unittest/rsa-pkcs1-sha256-spki-non-null-params.pem",
      "pki/testdata/verify_signed_data_unittest/rsa-pkcs1-sha256-using-ecdsa-algorithm.pem",
      "pki/testdata/verify_signed_data_unittest/rsa-pkcs1-sha256-using-id-ea-rsa.pem",
      "pki/testdata/verify_signed_data_unittest/rsa-pkcs1-sha256.pem",
      "pki/testdata/verify_signed_data_unittest/rsa-pss-sha256-using-pss-key-with-params.pem",
      "pki/testdata/verify_signed_data_unittest/rsa-pss-sha256-wrong-salt.pem",
      "pki/testdata/verify_signed_data_unittest/rsa-pss-sha256.pem",
      "pki/testdata/verify_signed_data_unittest/rsa-using-ec-key.pem",
      "pki/testdata/verify_signed_data_unittest/rsa2048-pkcs1-sha512.pem",
      "pki/testdata/verify_unittest/google-intermediate1.der",
      "pki/testdata/verify_unittest/google-intermediate2.der",
      "pki/testdata/verify_unittest/google-leaf.der",
      "pki/testdata/verify_unittest/lencr-intermediate-r3.der",
      "pki/testdata/verify_unittest/lencr-leaf.der",
      "pki/testdata/verify_unittest/lencr-root-dst-x3.der",
      "pki/testdata/verify_unittest/lencr-root-x1-cross-signed.der",
      "pki/testdata/verify_unittest/lencr-root-x1.der",
      "pki/testdata/verify_unittest/mozilla_roots.der",
      "pki/testdata/verify_unittest/self-issued.pem"
    ]
  },
  "ssl": {
    "srcs": [
      "ssl/bio_ssl.cc",
      "ssl/d1_both.cc",
      "ssl/d1_lib.cc",
      "ssl/d1_pkt.cc",
      "ssl/d1_srtp.cc",
      "ssl/dtls_method.cc",
      "ssl/dtls_record.cc",
      "ssl/encrypted_client_hello.cc",
      "ssl/extensions.cc",
      "ssl/handoff.cc",
      "ssl/handshake.cc",
      "ssl/handshake_client.cc",
      "ssl/handshake_server.cc",
      "ssl/s3_both.cc",
      "ssl/s3_lib.cc",
      "ssl/s3_pkt.cc",
      "ssl/ssl_aead_ctx.cc",
      "ssl/ssl_asn1.cc",
      "ssl/ssl_buffer.cc",
      "ssl/ssl_cert.cc",
      "ssl/ssl_cipher.cc",
      "ssl/ssl_credential.cc",
      "ssl/ssl_file.cc",
      "ssl/ssl_key_share.cc",
      "ssl/ssl_lib.cc",
      "ssl/ssl_privkey.cc",
      "ssl/ssl_session.cc",
      "ssl/ssl_stat.cc",
      "ssl/ssl_transcript.cc",
      "ssl/ssl_versions.cc",
      "ssl/ssl_x509.cc",
      "ssl/t1_enc.cc",
      "ssl/tls13_both.cc",
      "ssl/tls13_client.cc",
      "ssl/tls13_enc.cc",
      "ssl/tls13_server.cc",
      "ssl/tls_method.cc",
      "ssl/tls_record.cc"
    ],
    "hdrs": [
      "include/openssl/dtls1.h",
      "include/openssl/srtp.h",
      "include/openssl/ssl.h",
      "include/openssl/ssl3.h",
      "include/openssl/tls1.h"
    ],
    "internal_hdrs": [
      "ssl/internal.h"
    ]
  },
  "ssl_test": {
    "srcs": [
      "crypto/test/gtest_main.cc",
      "ssl/span_test.cc",
      "ssl/ssl_c_test.c",
      "ssl/ssl_test.cc"
    ]
  },
  "test_support": {
    "srcs": [
      "crypto/test/abi_test.cc",
      "crypto/test/file_test.cc",
      "crypto/test/file_test_gtest.cc",
      "crypto/test/file_util.cc",
      "crypto/test/test_data.cc",
      "crypto/test/test_util.cc",
      "crypto/test/wycheproof_util.cc"
    ],
    "internal_hdrs": [
      "crypto/test/abi_test.h",
      "crypto/test/file_test.h",
      "crypto/test/file_util.h",
      "crypto/test/gtest_main.h",
      "crypto/test/test_data.h",
      "crypto/test/test_util.h",
      "crypto/test/wycheproof_util.h",
      "ssl/test/async_bio.h",
      "ssl/test/fuzzer.h",
      "ssl/test/fuzzer_tags.h",
      "ssl/test/handshake_util.h",
      "ssl/test/mock_quic_transport.h",
      "ssl/test/packeted_bio.h",
      "ssl/test/settings_writer.h",
      "ssl/test/test_config.h",
      "ssl/test/test_state.h"
    ],
    "asm": [
      "gen/test_support/trampoline-armv4-linux.S",
      "gen/test_support/trampoline-armv8-apple.S",
      "gen/test_support/trampoline-armv8-linux.S",
      "gen/test_support/trampoline-armv8-win.S",
      "gen/test_support/trampoline-x86-apple.S",
      "gen/test_support/trampoline-x86-linux.S",
      "gen/test_support/trampoline-x86_64-apple.S",
      "gen/test_support/trampoline-x86_64-linux.S"
    ],
    "nasm": [
      "gen/test_support/trampoline-x86-win.asm",
      "gen/test_support/trampoline-x86_64-win.asm"
    ]
  },
  "urandom_test": {
    "srcs": [
      "crypto/fipsmodule/rand/urandom_test.cc"
    ]
  }
}