@@ -38,7 +38,7 @@ def copy_of_mbedtls_headers(mbedtls_root_path, psa_crypto_root_path):
3838 destination_path = os .path .join (builtin_path , "include" , "mbedtls" )
3939
4040 include_files = filter (lambda file_ : not re .match (
41- "x509.*|mps.*|ssl.*|padlock\.*|pkcs .*|" \
41+ "x509.*|mps.*|ssl.*|padlock\.*|pkcs7 .*|" \
4242 "\.gitignore|debug\.h|net_sockets\.h" \
4343 "" , file_ ),
4444 os .listdir (source_path ))
@@ -53,7 +53,7 @@ def copy_of_mbedtls_headers(mbedtls_root_path, psa_crypto_root_path):
5353def copy_from_library (mbedtls_root_path , psa_crypto_root_path ):
5454 builtin_path = os .path .join (psa_crypto_root_path , "drivers" , "builtin" )
5555 library_files = filter (lambda file_ : not re .match (
56- ".*\.o|x509.*|mps.*|ssl.*|padlock\.*|pkcs .*|" \
56+ ".*\.o|x509.*|mps.*|ssl.*|padlock\.*|pkcs7 .*|" \
5757 "\.gitignore|Makefile|CMakeLists\.txt|" \
5858 "debug\.c|error\.c|net_sockets\.c" \
5959 "psa_crypto_core_common\.h" , file_ ),
@@ -128,6 +128,8 @@ def copy_from_tests(mbedtls_root_path, psa_crypto_root_path):
128128 "host_test\.function|main_test\.function|" \
129129 "test_suite_base64.*|" \
130130 "test_suite_pem.*|" \
131+ "test_suite_pkcs5.*|" \
132+ "test_suite_pkcs12.*|" \
131133 "test_suite_nist_kw.*" , \
132134 file_ ),
133135 os .listdir (os .path .join (source_path , "suites" )))
0 commit comments