From ffe0cb4bb05e48a5327ef7955d7e28cf44236180 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Bal=C3=A1=C5=BEik?= Date: Sat, 24 Jun 2023 11:45:50 +0200 Subject: [PATCH] Fix ecdsa256 check in ecdsa system test setup Probably by copy-paste mistake, ecdsa384 was checked twice. (cherry picked from commit 10194baa07c888535fbd311abf434af62f332405) --- bin/tests/system/ecdsa/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/ecdsa/setup.sh b/bin/tests/system/ecdsa/setup.sh index 7dddf126ac..86cd1cf1c6 100644 --- a/bin/tests/system/ecdsa/setup.sh +++ b/bin/tests/system/ecdsa/setup.sh @@ -15,7 +15,7 @@ set -e . ../conf.sh -if $SHELL ../testcrypto.sh ecdsap384sha384; then +if $SHELL ../testcrypto.sh ecdsap256sha256; then echo "yes" > ecdsa256-supported.file fi