Archana | 6f21e45 | 2021-11-23 14:46:51 +0530 | [diff] [blame] | 1 | @rem Generate automatically-generated configuration-independent source files
|
| 2 | @rem and build scripts.
|
| 3 | @rem Perl and Python 3 must be on the PATH.
|
Xiaokang Qian | 845693c | 2023-09-12 03:14:54 +0000 | [diff] [blame] | 4 | @rem psa_crypto_driver_wrappers.h needs to be generated prior to
|
Archana | 6f21e45 | 2021-11-23 14:46:51 +0530 | [diff] [blame] | 5 | @rem generate_visualc_files.pl being invoked.
|
| 6 | python scripts\generate_driver_wrappers.py || exit /b 1
|
| 7 | perl scripts\generate_errors.pl || exit /b 1
|
| 8 | perl scripts\generate_query_config.pl || exit /b 1
|
| 9 | perl scripts\generate_features.pl || exit /b 1
|
| 10 | python scripts\generate_ssl_debug_helpers.py || exit /b 1
|
| 11 | perl scripts\generate_visualc_files.pl || exit /b 1
|
Bence Szépkúti | d2968bd | 2021-05-06 09:55:44 +0200 | [diff] [blame] | 12 | python scripts\generate_psa_constants.py || exit /b 1
|
Werner Lewis | 8b2df74 | 2022-07-08 13:54:57 +0100 | [diff] [blame] | 13 | python tests\scripts\generate_bignum_tests.py || exit /b 1
|
Gabor Mezei | 4721bb9 | 2023-01-30 18:08:12 +0100 | [diff] [blame] | 14 | python tests\scripts\generate_ecp_tests.py || exit /b 1
|
Bence Szépkúti | d2968bd | 2021-05-06 09:55:44 +0200 | [diff] [blame] | 15 | python tests\scripts\generate_psa_tests.py || exit /b 1
|
Valerio Setti | 85a0066 | 2024-04-11 11:50:46 +0200 | [diff] [blame^] | 16 | python tests\scripts\generate_test_keys.py --output tests\src\test_keys.h || exit /b 1
|
| 17 | python tests\scripts\generate_test_cert_macros.py --output tests\src\test_certs.h ^
|
| 18 | --string TEST_CA_CRT_EC_PEM=tests\data_files\test-ca2.crt ^
|
| 19 | --binary TEST_CA_CRT_EC_DER=tests\data_files\test-ca2.crt.der ^
|
| 20 | --string TEST_CA_KEY_EC_PEM=tests\data_files\test-ca2.key.enc ^
|
| 21 | --password TEST_CA_PWD_EC_PEM=PolarSSLTest ^
|
| 22 | --binary TEST_CA_KEY_EC_DER=tests\data_files\test-ca2.key.der ^
|
| 23 | --string TEST_CA_CRT_RSA_SHA256_PEM=tests\data_files\test-ca-sha256.crt ^
|
| 24 | --binary TEST_CA_CRT_RSA_SHA256_DER=tests\data_files\test-ca-sha256.crt.der ^
|
| 25 | --string TEST_CA_CRT_RSA_SHA1_PEM=tests\data_files\test-ca-sha1.crt ^
|
| 26 | --binary TEST_CA_CRT_RSA_SHA1_DER=tests\data_files\test-ca-sha1.crt.der ^
|
| 27 | --string TEST_CA_KEY_RSA_PEM=tests\data_files\test-ca.key ^
|
| 28 | --password TEST_CA_PWD_RSA_PEM=PolarSSLTest ^
|
| 29 | --binary TEST_CA_KEY_RSA_DER=tests\data_files\test-ca.key.der ^
|
| 30 | --string TEST_SRV_CRT_EC_PEM=tests\data_files\server5.crt ^
|
| 31 | --binary TEST_SRV_CRT_EC_DER=tests\data_files\server5.crt.der ^
|
| 32 | --string TEST_SRV_KEY_EC_PEM=tests\data_files\server5.key ^
|
| 33 | --binary TEST_SRV_KEY_EC_DER=tests\data_files\server5.key.der ^
|
| 34 | --string TEST_SRV_CRT_RSA_SHA256_PEM=tests\data_files\server2-sha256.crt ^
|
| 35 | --binary TEST_SRV_CRT_RSA_SHA256_DER=tests\data_files\server2-sha256.crt.der ^
|
| 36 | --string TEST_SRV_CRT_RSA_SHA1_PEM=tests\data_files\server2.crt ^
|
| 37 | --binary TEST_SRV_CRT_RSA_SHA1_DER=tests\data_files\server2.crt.der ^
|
| 38 | --string TEST_SRV_KEY_RSA_PEM=tests\data_files\server2.key ^
|
| 39 | --binary TEST_SRV_KEY_RSA_DER=tests\data_files\server2.key.der ^
|
| 40 | --string TEST_CLI_CRT_EC_PEM=tests\data_files\cli2.crt ^
|
| 41 | --binary TEST_CLI_CRT_EC_DER=tests\data_files\cli2.crt.der ^
|
| 42 | --string TEST_CLI_KEY_EC_PEM=tests\data_files\cli2.key ^
|
| 43 | --binary TEST_CLI_KEY_EC_DER=tests\data_files\cli2.key.der ^
|
| 44 | --string TEST_CLI_CRT_RSA_PEM=tests\data_files\cli-rsa-sha256.crt ^
|
| 45 | --binary TEST_CLI_CRT_RSA_DER=tests\data_files\cli-rsa-sha256.crt.der ^
|
| 46 | --string TEST_CLI_KEY_RSA_PEM=tests\data_files\cli-rsa.key ^
|
| 47 | --binary TEST_CLI_KEY_RSA_DER=tests\data_files\cli-rsa.key.der || exit /b 1
|