From b84f8d4e88a3c3d809d663b0c9945e90e420c26d Mon Sep 17 00:00:00 2001 From: Thomas Daubney Date: Thu, 21 Apr 2022 08:35:29 +0100 Subject: [PATCH] Corrects flag set in tests Corrects flag value from 0xFFFFFFF to 0xFFFFFFFF in x509 parse tests. Signed-off-by: Thomas Daubney --- tests/suites/test_suite_x509parse.function | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/suites/test_suite_x509parse.function b/tests/suites/test_suite_x509parse.function index 29d28f780..00b68637c 100644 --- a/tests/suites/test_suite_x509parse.function +++ b/tests/suites/test_suite_x509parse.function @@ -35,8 +35,8 @@ const mbedtls_x509_crt_profile compat_profile = MBEDTLS_X509_ID_FLAG( MBEDTLS_MD_SHA256 ) | MBEDTLS_X509_ID_FLAG( MBEDTLS_MD_SHA384 ) | MBEDTLS_X509_ID_FLAG( MBEDTLS_MD_SHA512 ), - 0xFFFFFFF, /* Any PK alg */ - 0xFFFFFFF, /* Any curve */ + 0xFFFFFFFF, /* Any PK alg */ + 0xFFFFFFFF, /* Any curve */ 1024, }; @@ -53,8 +53,8 @@ const mbedtls_x509_crt_profile profile_rsa3072 = const mbedtls_x509_crt_profile profile_sha512 = { MBEDTLS_X509_ID_FLAG( MBEDTLS_MD_SHA512 ), - 0xFFFFFFF, /* Any PK alg */ - 0xFFFFFFF, /* Any curve */ + 0xFFFFFFFF, /* Any PK alg */ + 0xFFFFFFFF, /* Any curve */ 1024, };