summary refs log tree commit diff
path: root/crypto/test
diff options
context:
space:
mode:
authorOren Novotny <oren@novotny.org>2018-10-16 21:29:47 -0400
committerOren Novotny <oren@novotny.org>2018-10-16 21:29:47 -0400
commitb249a506034cd0d1a03a6e9bb23e5faecc7d370e (patch)
treef5c94cfec87cfa860dbb5d4306d2e44c31eb3c2a /crypto/test
parentmerge from master (diff)
parentMove generic "...withRSA" handler after PSSwithRSA (diff)
downloadBouncyCastle.NET-ed25519-b249a506034cd0d1a03a6e9bb23e5faecc7d370e.tar.xz
merge from master pcl-v1.8.3.37
Diffstat (limited to 'crypto/test')
-rw-r--r--crypto/test/src/security/test/TestSignerUtil.cs4
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;