1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/test/src/security/test/TestSignerUtil.cs b/crypto/test/src/security/test/TestSignerUtil.cs
index afd85ff4d..fb359d79d 100644
--- a/crypto/test/src/security/test/TestSignerUtil.cs
+++ b/crypto/test/src/security/test/TestSignerUtil.cs
@@ -140,7 +140,9 @@ namespace Org.BouncyCastle.Security.Tests
signParams = rsaPrivate;
verifyParams = rsaPublic;
}
- else if (cipherName == "ECDSA")
+ else if (cipherName == "ECDSA"
+ || cipherName == "CVC-ECDSA"
+ || cipherName == "PLAIN-ECDSA")
{
signParams = ecPriv;
verifyParams = ecPub;
|