-
Notifications
You must be signed in to change notification settings - Fork 3
/
sources.json
2785 lines (2785 loc) · 163 KB
/
sources.json
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
{
"bcm": {
"srcs": [
"crypto/fipsmodule/bcm.c"
],
"internal_hdrs": [
"crypto/fipsmodule/aes/aes.c.inc",
"crypto/fipsmodule/aes/aes_nohw.c.inc",
"crypto/fipsmodule/aes/key_wrap.c.inc",
"crypto/fipsmodule/aes/mode_wrappers.c.inc",
"crypto/fipsmodule/bn/add.c.inc",
"crypto/fipsmodule/bn/asm/x86_64-gcc.c.inc",
"crypto/fipsmodule/bn/bn.c.inc",
"crypto/fipsmodule/bn/bytes.c.inc",
"crypto/fipsmodule/bn/cmp.c.inc",
"crypto/fipsmodule/bn/ctx.c.inc",
"crypto/fipsmodule/bn/div.c.inc",
"crypto/fipsmodule/bn/div_extra.c.inc",
"crypto/fipsmodule/bn/exponentiation.c.inc",
"crypto/fipsmodule/bn/gcd.c.inc",
"crypto/fipsmodule/bn/gcd_extra.c.inc",
"crypto/fipsmodule/bn/generic.c.inc",
"crypto/fipsmodule/bn/jacobi.c.inc",
"crypto/fipsmodule/bn/montgomery.c.inc",
"crypto/fipsmodule/bn/montgomery_inv.c.inc",
"crypto/fipsmodule/bn/mul.c.inc",
"crypto/fipsmodule/bn/prime.c.inc",
"crypto/fipsmodule/bn/random.c.inc",
"crypto/fipsmodule/bn/rsaz_exp.c.inc",
"crypto/fipsmodule/bn/shift.c.inc",
"crypto/fipsmodule/bn/sqrt.c.inc",
"crypto/fipsmodule/cipher/aead.c.inc",
"crypto/fipsmodule/cipher/cipher.c.inc",
"crypto/fipsmodule/cipher/e_aes.c.inc",
"crypto/fipsmodule/cipher/e_aesccm.c.inc",
"crypto/fipsmodule/cmac/cmac.c.inc",
"crypto/fipsmodule/dh/check.c.inc",
"crypto/fipsmodule/dh/dh.c.inc",
"crypto/fipsmodule/digest/digest.c.inc",
"crypto/fipsmodule/digest/digests.c.inc",
"crypto/fipsmodule/digestsign/digestsign.c.inc",
"crypto/fipsmodule/ec/ec.c.inc",
"crypto/fipsmodule/ec/ec_key.c.inc",
"crypto/fipsmodule/ec/ec_montgomery.c.inc",
"crypto/fipsmodule/ec/felem.c.inc",
"crypto/fipsmodule/ec/oct.c.inc",
"crypto/fipsmodule/ec/p224-64.c.inc",
"crypto/fipsmodule/ec/p256-nistz.c.inc",
"crypto/fipsmodule/ec/p256.c.inc",
"crypto/fipsmodule/ec/scalar.c.inc",
"crypto/fipsmodule/ec/simple.c.inc",
"crypto/fipsmodule/ec/simple_mul.c.inc",
"crypto/fipsmodule/ec/util.c.inc",
"crypto/fipsmodule/ec/wnaf.c.inc",
"crypto/fipsmodule/ecdh/ecdh.c.inc",
"crypto/fipsmodule/ecdsa/ecdsa.c.inc",
"crypto/fipsmodule/hkdf/hkdf.c.inc",
"crypto/fipsmodule/hmac/hmac.c.inc",
"crypto/fipsmodule/modes/cbc.c.inc",
"crypto/fipsmodule/modes/cfb.c.inc",
"crypto/fipsmodule/modes/ctr.c.inc",
"crypto/fipsmodule/modes/gcm.c.inc",
"crypto/fipsmodule/modes/gcm_nohw.c.inc",
"crypto/fipsmodule/modes/ofb.c.inc",
"crypto/fipsmodule/modes/polyval.c.inc",
"crypto/fipsmodule/rand/ctrdrbg.c.inc",
"crypto/fipsmodule/rand/rand.c.inc",
"crypto/fipsmodule/rsa/blinding.c.inc",
"crypto/fipsmodule/rsa/padding.c.inc",
"crypto/fipsmodule/rsa/rsa.c.inc",
"crypto/fipsmodule/rsa/rsa_impl.c.inc",
"crypto/fipsmodule/self_check/fips.c.inc",
"crypto/fipsmodule/self_check/self_check.c.inc",
"crypto/fipsmodule/service_indicator/service_indicator.c.inc",
"crypto/fipsmodule/sha/sha1.c.inc",
"crypto/fipsmodule/sha/sha256.c.inc",
"crypto/fipsmodule/sha/sha512.c.inc",
"crypto/fipsmodule/tls/kdf.c.inc"
],
"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/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/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_aegis128l.c",
"crypto/cipher_extra/e_aegis256.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/md4/md4.c",
"crypto/md5/md5.c",
"crypto/mem.c",
"crypto/mldsa/mldsa.cc",
"crypto/mlkem/mlkem.cc",
"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/fork_detect.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/urandom.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_extra.c",
"crypto/rsa_extra/rsa_print.c",
"crypto/sha/sha1.c",
"crypto/sha/sha256.c",
"crypto/sha/sha512.c",
"crypto/siphash/siphash.c",
"crypto/slhdsa/fors.c",
"crypto/slhdsa/merkle.c",
"crypto/slhdsa/slhdsa.c",
"crypto/slhdsa/thash.c",
"crypto/slhdsa/wots.c",
"crypto/spx/spx.c",
"crypto/spx/spx_address.c",
"crypto/spx/spx_fors.c",
"crypto/spx/spx_merkle.c",
"crypto/spx/spx_thash.c",
"crypto/spx/spx_util.c",
"crypto/spx/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/bcm_public.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/mldsa.h",
"include/openssl/mlkem.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/slhdsa.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/bcm_support.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/bcm_interface.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/modes/internal.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/md5/internal.h",
"crypto/mldsa/internal.h",
"crypto/mlkem/internal.h",
"crypto/obj/obj_dat.h",
"crypto/pkcs7/internal.h",
"crypto/pkcs8/internal.h",
"crypto/poly1305/internal.h",
"crypto/pool/internal.h",
"crypto/rand_extra/getrandom_fillin.h",
"crypto/rand_extra/sysrand_internal.h",
"crypto/rsa_extra/internal.h",
"crypto/slhdsa/address.h",
"crypto/slhdsa/fors.h",
"crypto/slhdsa/internal.h",
"crypto/slhdsa/merkle.h",
"crypto/slhdsa/params.h",
"crypto/slhdsa/thash.h",
"crypto/slhdsa/wots.h",
"crypto/spx/spx_address.h",
"crypto/spx/spx_fors.h",
"crypto/spx/spx_merkle.h",
"crypto/spx/spx_params.h",
"crypto/spx/spx_thash.h",
"crypto/spx/spx_util.h",
"crypto/spx/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",
"gen/crypto/md5-586-apple.S",
"gen/crypto/md5-586-linux.S",
"gen/crypto/md5-x86_64-apple.S",
"gen/crypto/md5-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",
"gen/crypto/md5-586-win.asm",
"gen/crypto/md5-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/modes/gcm_test.cc",
"crypto/fipsmodule/rand/ctrdrbg_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/md5/md5_test.cc",
"crypto/mldsa/mldsa_test.cc",
"crypto/mlkem/mlkem_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/fork_detect_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/slhdsa/slhdsa_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/mldsa/mldsa_nist_keygen_tests.txt",
"crypto/mldsa/mldsa_nist_siggen_tests.txt",
"crypto/mlkem/mlkem1024_decap_tests.txt",
"crypto/mlkem/mlkem1024_encap_tests.txt",
"crypto/mlkem/mlkem1024_keygen_tests.txt",
"crypto/mlkem/mlkem1024_nist_decap_tests.txt",
"crypto/mlkem/mlkem1024_nist_keygen_tests.txt",
"crypto/mlkem/mlkem768_decap_tests.txt",
"crypto/mlkem/mlkem768_encap_tests.txt",
"crypto/mlkem/mlkem768_keygen_tests.txt",
"crypto/mlkem/mlkem768_nist_decap_tests.txt",
"crypto/mlkem/mlkem768_nist_keygen_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/slhdsa/slhdsa_keygen.txt",
"crypto/slhdsa/slhdsa_prehash.txt",
"crypto/slhdsa/slhdsa_siggen.txt",
"crypto/slhdsa/slhdsa_sigver.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/mldsa_65_standard_sign_test.txt",
"third_party/wycheproof_testvectors/mldsa_65_standard_verify_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",