Change the verify function naming
Change the naming to reflect that the function uses a new ca callback
feature to distinguish different callbacks.
diff --git a/tests/suites/test_suite_x509parse.function b/tests/suites/test_suite_x509parse.function
index b08949a..c51d54a 100644
--- a/tests/suites/test_suite_x509parse.function
+++ b/tests/suites/test_suite_x509parse.function
@@ -446,7 +446,7 @@
{
flags = 0;
- res = mbedtls_x509_crt_verify_with_cb( &crt, ca_callback, &ca, profile, cn_name, &flags, f_vrfy, NULL );
+ res = mbedtls_x509_crt_verify_with_ca_cb( &crt, ca_callback, &ca, profile, cn_name, &flags, f_vrfy, NULL );
TEST_ASSERT( res == ( result ) );
TEST_ASSERT( flags == (uint32_t)( flags_result ) );
@@ -477,7 +477,7 @@
if( strcmp( name, "NULL" ) == 0 )
name = NULL;
- ret = mbedtls_x509_crt_verify_with_cb( &crt, ca_callback_fail, &ca,
+ ret = mbedtls_x509_crt_verify_with_ca_cb( &crt, ca_callback_fail, &ca,
&compat_profile, name, &flags,
verify_all, NULL );