• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# This file is created by generate_build_files.py. Do not edit manually.
2
3test_support_sources = [
4    "src/crypto/asn1/charmap.h",
5    "src/crypto/asn1/internal.h",
6    "src/crypto/bio/internal.h",
7    "src/crypto/bytestring/internal.h",
8    "src/crypto/chacha/internal.h",
9    "src/crypto/cipher_extra/internal.h",
10    "src/crypto/conf/conf_def.h",
11    "src/crypto/conf/internal.h",
12    "src/crypto/cpu_arm_linux.h",
13    "src/crypto/curve25519/curve25519_tables.h",
14    "src/crypto/curve25519/internal.h",
15    "src/crypto/des/internal.h",
16    "src/crypto/dsa/internal.h",
17    "src/crypto/ec_extra/internal.h",
18    "src/crypto/err/internal.h",
19    "src/crypto/evp/internal.h",
20    "src/crypto/fipsmodule/aes/internal.h",
21    "src/crypto/fipsmodule/bn/internal.h",
22    "src/crypto/fipsmodule/bn/rsaz_exp.h",
23    "src/crypto/fipsmodule/cipher/internal.h",
24    "src/crypto/fipsmodule/delocate.h",
25    "src/crypto/fipsmodule/dh/internal.h",
26    "src/crypto/fipsmodule/digest/internal.h",
27    "src/crypto/fipsmodule/digest/md32_common.h",
28    "src/crypto/fipsmodule/ec/internal.h",
29    "src/crypto/fipsmodule/ec/p256-nistz-table.h",
30    "src/crypto/fipsmodule/ec/p256-nistz.h",
31    "src/crypto/fipsmodule/ec/p256_table.h",
32    "src/crypto/fipsmodule/ecdsa/internal.h",
33    "src/crypto/fipsmodule/md5/internal.h",
34    "src/crypto/fipsmodule/modes/internal.h",
35    "src/crypto/fipsmodule/rand/fork_detect.h",
36    "src/crypto/fipsmodule/rand/getrandom_fillin.h",
37    "src/crypto/fipsmodule/rand/internal.h",
38    "src/crypto/fipsmodule/rsa/internal.h",
39    "src/crypto/fipsmodule/service_indicator/internal.h",
40    "src/crypto/fipsmodule/sha/internal.h",
41    "src/crypto/fipsmodule/tls/internal.h",
42    "src/crypto/hrss/internal.h",
43    "src/crypto/internal.h",
44    "src/crypto/lhash/internal.h",
45    "src/crypto/obj/obj_dat.h",
46    "src/crypto/pkcs7/internal.h",
47    "src/crypto/pkcs8/internal.h",
48    "src/crypto/poly1305/internal.h",
49    "src/crypto/pool/internal.h",
50    "src/crypto/test/abi_test.h",
51    "src/crypto/test/file_test.cc",
52    "src/crypto/test/file_test.h",
53    "src/crypto/test/gtest_main.h",
54    "src/crypto/test/test_util.cc",
55    "src/crypto/test/test_util.h",
56    "src/crypto/test/wycheproof_util.cc",
57    "src/crypto/test/wycheproof_util.h",
58    "src/crypto/trust_token/internal.h",
59    "src/crypto/x509/internal.h",
60    "src/crypto/x509v3/ext_dat.h",
61    "src/crypto/x509v3/internal.h",
62    "src/ssl/internal.h",
63    "src/ssl/test/async_bio.h",
64    "src/ssl/test/fuzzer.h",
65    "src/ssl/test/fuzzer_tags.h",
66    "src/ssl/test/handshake_util.h",
67    "src/ssl/test/mock_quic_transport.h",
68    "src/ssl/test/packeted_bio.h",
69    "src/ssl/test/settings_writer.h",
70    "src/ssl/test/test_config.h",
71    "src/ssl/test/test_state.h",
72    "src/third_party/fiat/curve25519_32.h",
73    "src/third_party/fiat/curve25519_64.h",
74    "src/third_party/fiat/p256_32.h",
75    "src/third_party/fiat/p256_64.h",
76]
77
78crypto_test_sources = [
79    "crypto_test_data.cc",
80    "src/crypto/abi_self_test.cc",
81    "src/crypto/asn1/asn1_test.cc",
82    "src/crypto/base64/base64_test.cc",
83    "src/crypto/bio/bio_test.cc",
84    "src/crypto/blake2/blake2_test.cc",
85    "src/crypto/buf/buf_test.cc",
86    "src/crypto/bytestring/bytestring_test.cc",
87    "src/crypto/chacha/chacha_test.cc",
88    "src/crypto/cipher_extra/aead_test.cc",
89    "src/crypto/cipher_extra/cipher_test.cc",
90    "src/crypto/compiler_test.cc",
91    "src/crypto/conf/conf_test.cc",
92    "src/crypto/constant_time_test.cc",
93    "src/crypto/cpu_arm_linux_test.cc",
94    "src/crypto/crypto_test.cc",
95    "src/crypto/curve25519/ed25519_test.cc",
96    "src/crypto/curve25519/spake25519_test.cc",
97    "src/crypto/curve25519/x25519_test.cc",
98    "src/crypto/dh_extra/dh_test.cc",
99    "src/crypto/digest_extra/digest_test.cc",
100    "src/crypto/dsa/dsa_test.cc",
101    "src/crypto/ecdh_extra/ecdh_test.cc",
102    "src/crypto/err/err_test.cc",
103    "src/crypto/evp/evp_extra_test.cc",
104    "src/crypto/evp/evp_test.cc",
105    "src/crypto/evp/pbkdf_test.cc",
106    "src/crypto/evp/scrypt_test.cc",
107    "src/crypto/fipsmodule/aes/aes_test.cc",
108    "src/crypto/fipsmodule/bn/bn_test.cc",
109    "src/crypto/fipsmodule/cmac/cmac_test.cc",
110    "src/crypto/fipsmodule/ec/ec_test.cc",
111    "src/crypto/fipsmodule/ec/p256-nistz_test.cc",
112    "src/crypto/fipsmodule/ecdsa/ecdsa_test.cc",
113    "src/crypto/fipsmodule/md5/md5_test.cc",
114    "src/crypto/fipsmodule/modes/gcm_test.cc",
115    "src/crypto/fipsmodule/rand/ctrdrbg_test.cc",
116    "src/crypto/fipsmodule/rand/fork_detect_test.cc",
117    "src/crypto/fipsmodule/service_indicator/service_indicator_test.cc",
118    "src/crypto/fipsmodule/sha/sha_test.cc",
119    "src/crypto/hkdf/hkdf_test.cc",
120    "src/crypto/hmac_extra/hmac_test.cc",
121    "src/crypto/hpke/hpke_test.cc",
122    "src/crypto/hrss/hrss_test.cc",
123    "src/crypto/impl_dispatch_test.cc",
124    "src/crypto/lhash/lhash_test.cc",
125    "src/crypto/obj/obj_test.cc",
126    "src/crypto/pem/pem_test.cc",
127    "src/crypto/pkcs7/pkcs7_test.cc",
128    "src/crypto/pkcs8/pkcs12_test.cc",
129    "src/crypto/pkcs8/pkcs8_test.cc",
130    "src/crypto/poly1305/poly1305_test.cc",
131    "src/crypto/pool/pool_test.cc",
132    "src/crypto/rand_extra/rand_test.cc",
133    "src/crypto/refcount_test.cc",
134    "src/crypto/rsa_extra/rsa_test.cc",
135    "src/crypto/self_test.cc",
136    "src/crypto/siphash/siphash_test.cc",
137    "src/crypto/stack/stack_test.cc",
138    "src/crypto/test/abi_test.cc",
139    "src/crypto/test/file_test_gtest.cc",
140    "src/crypto/test/gtest_main.cc",
141    "src/crypto/thread_test.cc",
142    "src/crypto/trust_token/trust_token_test.cc",
143    "src/crypto/x509/x509_test.cc",
144    "src/crypto/x509/x509_time_test.cc",
145    "src/crypto/x509v3/tab_test.cc",
146]
147
148ssl_test_sources = [
149    "src/crypto/test/abi_test.cc",
150    "src/crypto/test/gtest_main.cc",
151    "src/ssl/span_test.cc",
152    "src/ssl/ssl_c_test.c",
153    "src/ssl/ssl_test.cc",
154]
155
156crypto_test_data = [
157    "src/crypto/blake2/blake2b256_tests.txt",
158    "src/crypto/cipher_extra/test/aes_128_cbc_sha1_tls_implicit_iv_tests.txt",
159    "src/crypto/cipher_extra/test/aes_128_cbc_sha1_tls_tests.txt",
160    "src/crypto/cipher_extra/test/aes_128_ccm_bluetooth_8_tests.txt",
161    "src/crypto/cipher_extra/test/aes_128_ccm_bluetooth_tests.txt",
162    "src/crypto/cipher_extra/test/aes_128_ctr_hmac_sha256.txt",
163    "src/crypto/cipher_extra/test/aes_128_gcm_randnonce_tests.txt",
164    "src/crypto/cipher_extra/test/aes_128_gcm_siv_tests.txt",
165    "src/crypto/cipher_extra/test/aes_128_gcm_tests.txt",
166    "src/crypto/cipher_extra/test/aes_192_gcm_tests.txt",
167    "src/crypto/cipher_extra/test/aes_256_cbc_sha1_tls_implicit_iv_tests.txt",
168    "src/crypto/cipher_extra/test/aes_256_cbc_sha1_tls_tests.txt",
169    "src/crypto/cipher_extra/test/aes_256_ctr_hmac_sha256.txt",
170    "src/crypto/cipher_extra/test/aes_256_gcm_randnonce_tests.txt",
171    "src/crypto/cipher_extra/test/aes_256_gcm_siv_tests.txt",
172    "src/crypto/cipher_extra/test/aes_256_gcm_tests.txt",
173    "src/crypto/cipher_extra/test/chacha20_poly1305_tests.txt",
174    "src/crypto/cipher_extra/test/cipher_tests.txt",
175    "src/crypto/cipher_extra/test/des_ede3_cbc_sha1_tls_implicit_iv_tests.txt",
176    "src/crypto/cipher_extra/test/des_ede3_cbc_sha1_tls_tests.txt",
177    "src/crypto/cipher_extra/test/nist_cavp/aes_128_cbc.txt",
178    "src/crypto/cipher_extra/test/nist_cavp/aes_128_ctr.txt",
179    "src/crypto/cipher_extra/test/nist_cavp/aes_128_gcm.txt",
180    "src/crypto/cipher_extra/test/nist_cavp/aes_192_cbc.txt",
181    "src/crypto/cipher_extra/test/nist_cavp/aes_192_ctr.txt",
182    "src/crypto/cipher_extra/test/nist_cavp/aes_256_cbc.txt",
183    "src/crypto/cipher_extra/test/nist_cavp/aes_256_ctr.txt",
184    "src/crypto/cipher_extra/test/nist_cavp/aes_256_gcm.txt",
185    "src/crypto/cipher_extra/test/nist_cavp/tdes_cbc.txt",
186    "src/crypto/cipher_extra/test/nist_cavp/tdes_ecb.txt",
187    "src/crypto/cipher_extra/test/xchacha20_poly1305_tests.txt",
188    "src/crypto/curve25519/ed25519_tests.txt",
189    "src/crypto/ecdh_extra/ecdh_tests.txt",
190    "src/crypto/evp/evp_tests.txt",
191    "src/crypto/evp/scrypt_tests.txt",
192    "src/crypto/fipsmodule/aes/aes_tests.txt",
193    "src/crypto/fipsmodule/bn/bn_tests.txt",
194    "src/crypto/fipsmodule/bn/miller_rabin_tests.txt",
195    "src/crypto/fipsmodule/cmac/cavp_3des_cmac_tests.txt",
196    "src/crypto/fipsmodule/cmac/cavp_aes128_cmac_tests.txt",
197    "src/crypto/fipsmodule/cmac/cavp_aes192_cmac_tests.txt",
198    "src/crypto/fipsmodule/cmac/cavp_aes256_cmac_tests.txt",
199    "src/crypto/fipsmodule/ec/ec_scalar_base_mult_tests.txt",
200    "src/crypto/fipsmodule/ec/p256-nistz_tests.txt",
201    "src/crypto/fipsmodule/ecdsa/ecdsa_sign_tests.txt",
202    "src/crypto/fipsmodule/ecdsa/ecdsa_verify_tests.txt",
203    "src/crypto/fipsmodule/modes/gcm_tests.txt",
204    "src/crypto/fipsmodule/rand/ctrdrbg_vectors.txt",
205    "src/crypto/hmac_extra/hmac_tests.txt",
206    "src/crypto/hpke/hpke_test_vectors.txt",
207    "src/crypto/pkcs8/test/empty_password.p12",
208    "src/crypto/pkcs8/test/no_encryption.p12",
209    "src/crypto/pkcs8/test/nss.p12",
210    "src/crypto/pkcs8/test/null_password.p12",
211    "src/crypto/pkcs8/test/openssl.p12",
212    "src/crypto/pkcs8/test/pbes2_sha1.p12",
213    "src/crypto/pkcs8/test/pbes2_sha256.p12",
214    "src/crypto/pkcs8/test/unicode_password.p12",
215    "src/crypto/pkcs8/test/windows.p12",
216    "src/crypto/poly1305/poly1305_tests.txt",
217    "src/crypto/siphash/siphash_tests.txt",
218    "src/crypto/x509/test/basic_constraints_ca.pem",
219    "src/crypto/x509/test/basic_constraints_ca_pathlen_0.pem",
220    "src/crypto/x509/test/basic_constraints_ca_pathlen_1.pem",
221    "src/crypto/x509/test/basic_constraints_ca_pathlen_10.pem",
222    "src/crypto/x509/test/basic_constraints_leaf.pem",
223    "src/crypto/x509/test/basic_constraints_none.pem",
224    "src/crypto/x509/test/invalid_extension_intermediate.pem",
225    "src/crypto/x509/test/invalid_extension_intermediate_authority_key_identifier.pem",
226    "src/crypto/x509/test/invalid_extension_intermediate_basic_constraints.pem",
227    "src/crypto/x509/test/invalid_extension_intermediate_ext_key_usage.pem",
228    "src/crypto/x509/test/invalid_extension_intermediate_key_usage.pem",
229    "src/crypto/x509/test/invalid_extension_intermediate_name_constraints.pem",
230    "src/crypto/x509/test/invalid_extension_intermediate_subject_alt_name.pem",
231    "src/crypto/x509/test/invalid_extension_intermediate_subject_key_identifier.pem",
232    "src/crypto/x509/test/invalid_extension_leaf.pem",
233    "src/crypto/x509/test/invalid_extension_leaf_authority_key_identifier.pem",
234    "src/crypto/x509/test/invalid_extension_leaf_basic_constraints.pem",
235    "src/crypto/x509/test/invalid_extension_leaf_ext_key_usage.pem",
236    "src/crypto/x509/test/invalid_extension_leaf_key_usage.pem",
237    "src/crypto/x509/test/invalid_extension_leaf_name_constraints.pem",
238    "src/crypto/x509/test/invalid_extension_leaf_subject_alt_name.pem",
239    "src/crypto/x509/test/invalid_extension_leaf_subject_key_identifier.pem",
240    "src/crypto/x509/test/invalid_extension_root.pem",
241    "src/crypto/x509/test/invalid_extension_root_authority_key_identifier.pem",
242    "src/crypto/x509/test/invalid_extension_root_basic_constraints.pem",
243    "src/crypto/x509/test/invalid_extension_root_ext_key_usage.pem",
244    "src/crypto/x509/test/invalid_extension_root_key_usage.pem",
245    "src/crypto/x509/test/invalid_extension_root_name_constraints.pem",
246    "src/crypto/x509/test/invalid_extension_root_subject_alt_name.pem",
247    "src/crypto/x509/test/invalid_extension_root_subject_key_identifier.pem",
248    "src/crypto/x509/test/many_constraints.pem",
249    "src/crypto/x509/test/many_names1.pem",
250    "src/crypto/x509/test/many_names2.pem",
251    "src/crypto/x509/test/many_names3.pem",
252    "src/crypto/x509/test/some_names1.pem",
253    "src/crypto/x509/test/some_names2.pem",
254    "src/crypto/x509/test/some_names3.pem",
255    "src/crypto/x509/test/trailing_data_leaf_authority_key_identifier.pem",
256    "src/crypto/x509/test/trailing_data_leaf_basic_constraints.pem",
257    "src/crypto/x509/test/trailing_data_leaf_ext_key_usage.pem",
258    "src/crypto/x509/test/trailing_data_leaf_key_usage.pem",
259    "src/crypto/x509/test/trailing_data_leaf_name_constraints.pem",
260    "src/crypto/x509/test/trailing_data_leaf_subject_alt_name.pem",
261    "src/crypto/x509/test/trailing_data_leaf_subject_key_identifier.pem",
262    "src/third_party/wycheproof_testvectors/aes_cbc_pkcs5_test.txt",
263    "src/third_party/wycheproof_testvectors/aes_cmac_test.txt",
264    "src/third_party/wycheproof_testvectors/aes_gcm_siv_test.txt",
265    "src/third_party/wycheproof_testvectors/aes_gcm_test.txt",
266    "src/third_party/wycheproof_testvectors/chacha20_poly1305_test.txt",
267    "src/third_party/wycheproof_testvectors/dsa_test.txt",
268    "src/third_party/wycheproof_testvectors/ecdh_secp224r1_test.txt",
269    "src/third_party/wycheproof_testvectors/ecdh_secp256r1_test.txt",
270    "src/third_party/wycheproof_testvectors/ecdh_secp384r1_test.txt",
271    "src/third_party/wycheproof_testvectors/ecdh_secp521r1_test.txt",
272    "src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha224_test.txt",
273    "src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha256_test.txt",
274    "src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha512_test.txt",
275    "src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha256_test.txt",
276    "src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha512_test.txt",
277    "src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha384_test.txt",
278    "src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha512_test.txt",
279    "src/third_party/wycheproof_testvectors/ecdsa_secp521r1_sha512_test.txt",
280    "src/third_party/wycheproof_testvectors/eddsa_test.txt",
281    "src/third_party/wycheproof_testvectors/hkdf_sha1_test.txt",
282    "src/third_party/wycheproof_testvectors/hkdf_sha256_test.txt",
283    "src/third_party/wycheproof_testvectors/hkdf_sha384_test.txt",
284    "src/third_party/wycheproof_testvectors/hkdf_sha512_test.txt",
285    "src/third_party/wycheproof_testvectors/hmac_sha1_test.txt",
286    "src/third_party/wycheproof_testvectors/hmac_sha224_test.txt",
287    "src/third_party/wycheproof_testvectors/hmac_sha256_test.txt",
288    "src/third_party/wycheproof_testvectors/hmac_sha384_test.txt",
289    "src/third_party/wycheproof_testvectors/hmac_sha512_test.txt",
290    "src/third_party/wycheproof_testvectors/kw_test.txt",
291    "src/third_party/wycheproof_testvectors/kwp_test.txt",
292    "src/third_party/wycheproof_testvectors/primality_test.txt",
293    "src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha1_mgf1sha1_test.txt",
294    "src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha224_mgf1sha1_test.txt",
295    "src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha224_mgf1sha224_test.txt",
296    "src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha256_mgf1sha1_test.txt",
297    "src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha256_mgf1sha256_test.txt",
298    "src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha384_mgf1sha1_test.txt",
299    "src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha384_mgf1sha384_test.txt",
300    "src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha512_mgf1sha1_test.txt",
301    "src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha512_mgf1sha512_test.txt",
302    "src/third_party/wycheproof_testvectors/rsa_oaep_3072_sha256_mgf1sha1_test.txt",
303    "src/third_party/wycheproof_testvectors/rsa_oaep_3072_sha256_mgf1sha256_test.txt",
304    "src/third_party/wycheproof_testvectors/rsa_oaep_3072_sha512_mgf1sha1_test.txt",
305    "src/third_party/wycheproof_testvectors/rsa_oaep_3072_sha512_mgf1sha512_test.txt",
306    "src/third_party/wycheproof_testvectors/rsa_oaep_4096_sha256_mgf1sha1_test.txt",
307    "src/third_party/wycheproof_testvectors/rsa_oaep_4096_sha256_mgf1sha256_test.txt",
308    "src/third_party/wycheproof_testvectors/rsa_oaep_4096_sha512_mgf1sha1_test.txt",
309    "src/third_party/wycheproof_testvectors/rsa_oaep_4096_sha512_mgf1sha512_test.txt",
310    "src/third_party/wycheproof_testvectors/rsa_oaep_misc_test.txt",
311    "src/third_party/wycheproof_testvectors/rsa_pkcs1_2048_test.txt",
312    "src/third_party/wycheproof_testvectors/rsa_pkcs1_3072_test.txt",
313    "src/third_party/wycheproof_testvectors/rsa_pkcs1_4096_test.txt",
314    "src/third_party/wycheproof_testvectors/rsa_pss_2048_sha1_mgf1_20_test.txt",
315    "src/third_party/wycheproof_testvectors/rsa_pss_2048_sha256_mgf1_0_test.txt",
316    "src/third_party/wycheproof_testvectors/rsa_pss_2048_sha256_mgf1_32_test.txt",
317    "src/third_party/wycheproof_testvectors/rsa_pss_3072_sha256_mgf1_32_test.txt",
318    "src/third_party/wycheproof_testvectors/rsa_pss_4096_sha256_mgf1_32_test.txt",
319    "src/third_party/wycheproof_testvectors/rsa_pss_4096_sha512_mgf1_32_test.txt",
320    "src/third_party/wycheproof_testvectors/rsa_pss_misc_test.txt",
321    "src/third_party/wycheproof_testvectors/rsa_sig_gen_misc_test.txt",
322    "src/third_party/wycheproof_testvectors/rsa_signature_2048_sha224_test.txt",
323    "src/third_party/wycheproof_testvectors/rsa_signature_2048_sha256_test.txt",
324    "src/third_party/wycheproof_testvectors/rsa_signature_2048_sha384_test.txt",
325    "src/third_party/wycheproof_testvectors/rsa_signature_2048_sha512_test.txt",
326    "src/third_party/wycheproof_testvectors/rsa_signature_3072_sha256_test.txt",
327    "src/third_party/wycheproof_testvectors/rsa_signature_3072_sha384_test.txt",
328    "src/third_party/wycheproof_testvectors/rsa_signature_3072_sha512_test.txt",
329    "src/third_party/wycheproof_testvectors/rsa_signature_4096_sha384_test.txt",
330    "src/third_party/wycheproof_testvectors/rsa_signature_4096_sha512_test.txt",
331    "src/third_party/wycheproof_testvectors/rsa_signature_test.txt",
332    "src/third_party/wycheproof_testvectors/x25519_test.txt",
333    "src/third_party/wycheproof_testvectors/xchacha20_poly1305_test.txt",
334]
335
336urandom_test_sources = [
337    "src/crypto/fipsmodule/rand/urandom_test.cc",
338]
339