Skip to content

Commit 074400e

Browse files
committed
Handle CVC-ECDSA and PLAIN-ECDSA in test case
1 parent 94173c7 commit 074400e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crypto/test/src/security/test/TestSignerUtil.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,9 @@ public void TestAlgorithms()
140140
signParams = rsaPrivate;
141141
verifyParams = rsaPublic;
142142
}
143-
else if (cipherName == "ECDSA")
143+
else if (cipherName == "ECDSA"
144+
|| cipherName == "CVC-ECDSA"
145+
|| cipherName == "PLAIN-ECDSA")
144146
{
145147
signParams = ecPriv;
146148
verifyParams = ecPub;

0 commit comments

Comments
 (0)