Skip to content

Commit cac2222

Browse files
Add pem module
Signed-off-by: David Horstmann <[email protected]>
1 parent 1324d85 commit cac2222

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/psa_crypto.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.*|pem\.*|padlock\.*|pkcs.*|"\
41+
"x509.*|mps.*|ssl.*|padlock\.*|pkcs.*|"\
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):
5353
def 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.*|pem\.*|padlock\.*|pkcs.*|"\
56+
".*\.o|x509.*|mps.*|ssl.*|padlock\.*|pkcs.*|"\
5757
"\.gitignore|Makefile|CMakeLists\.txt|"\
5858
"debug\.c|error\.c|net_sockets\.c"\
5959
"psa_crypto_core_common\.h", file_),
@@ -127,6 +127,7 @@ def copy_from_tests(mbedtls_root_path, psa_crypto_root_path):
127127
"test_suite_psa_crypto.*|helpers\.function|"\
128128
"host_test\.function|main_test\.function|"\
129129
"test_suite_base64.*|"\
130+
"test_suite_pem.*|"\
130131
"test_suite_nist_kw.*", \
131132
file_),
132133
os.listdir(os.path.join(source_path, "suites")))

0 commit comments

Comments
 (0)