From c10c9bfc1099e208906919b97bb8fa0400e48cd2 Mon Sep 17 00:00:00 2001 From: Hanno Becker Date: Wed, 21 Aug 2019 13:40:36 +0100 Subject: [PATCH] TinyCrypt Test: Add guards to ECDSA verify tests from PK test suite - The underlying test vectors are for Secp192r1, while TinyCrypt uses Secp256r1. - The test implementation is specific to the structure of legacy-ECC PK ctxs. Addition of analogous tests for TinyCrypt-based ECC PK contexts are left for a later commit. --- tests/suites/test_suite_pk.function | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/suites/test_suite_pk.function b/tests/suites/test_suite_pk.function index 89d18ada8..8b95baba9 100644 --- a/tests/suites/test_suite_pk.function +++ b/tests/suites/test_suite_pk.function @@ -669,7 +669,7 @@ exit: } /* END_CASE */ -/* BEGIN_CASE depends_on:MBEDTLS_ECDSA_C */ +/* BEGIN_CASE depends_on:MBEDTLS_ECDSA_C:!MBEDTLS_USE_TINYCRYPT */ void pk_ec_test_vec( int type, int id, data_t * key, data_t * hash, data_t * sig, int ret ) {