summary refs log tree commit diff
diff options
context:
space:
mode:
authorOren Novotny <oren@novotny.org>2018-09-30 09:02:05 -0400
committerOren Novotny <oren@novotny.org>2018-09-30 09:03:18 -0400
commitfbd5450baffdc1ce1de3a0102442bd1f656e9776 (patch)
tree4a93d0b357fe9083d8c25162cf3d396a25cd948c
parentRewrite Synchronized in terms of locks as netstandard <2.0 doesn't support it. (diff)
downloadBouncyCastle.NET-ed25519-fbd5450baffdc1ce1de3a0102442bd1f656e9776.tar.xz
rename entrypoint
-rw-r--r--crypto/test/src/crypto/test/Ed25519Test.cs2
-rw-r--r--crypto/test/src/crypto/test/Ed448Test.cs2
-rw-r--r--crypto/test/src/crypto/test/SM4Test.cs2
-rw-r--r--crypto/test/src/crypto/test/X25519Test.cs2
-rw-r--r--crypto/test/src/crypto/test/X448Test.cs2
-rw-r--r--crypto/test/src/test/SM4Test.cs2
6 files changed, 6 insertions, 6 deletions
diff --git a/crypto/test/src/crypto/test/Ed25519Test.cs b/crypto/test/src/crypto/test/Ed25519Test.cs
index 82e36d991..c6403446b 100644
--- a/crypto/test/src/crypto/test/Ed25519Test.cs
+++ b/crypto/test/src/crypto/test/Ed25519Test.cs
@@ -22,7 +22,7 @@ namespace Org.BouncyCastle.Crypto.Tests
             get { return "Ed25519"; }
         }
 
-        public static void Main(string[] args)
+        public static void MainOld(string[] args)
         {
             RunTest(new Ed25519Test());
         }
diff --git a/crypto/test/src/crypto/test/Ed448Test.cs b/crypto/test/src/crypto/test/Ed448Test.cs
index b035f554e..bdc6c5841 100644
--- a/crypto/test/src/crypto/test/Ed448Test.cs
+++ b/crypto/test/src/crypto/test/Ed448Test.cs
@@ -22,7 +22,7 @@ namespace Org.BouncyCastle.Crypto.Tests
             get { return "Ed448"; }
         }
 
-        public static void Main(string[] args)
+        public static void MainOld(string[] args)
         {
             RunTest(new Ed448Test());
         }
diff --git a/crypto/test/src/crypto/test/SM4Test.cs b/crypto/test/src/crypto/test/SM4Test.cs
index ae2f18b00..3b7290e60 100644
--- a/crypto/test/src/crypto/test/SM4Test.cs
+++ b/crypto/test/src/crypto/test/SM4Test.cs
@@ -77,7 +77,7 @@ namespace Org.BouncyCastle.Crypto.Tests
             get { return "SM4"; }
         }
 
-        public static void Main(string[] args)
+        public static void MainOld(string[] args)
         {
             RunTest(new SM4Test());
         }
diff --git a/crypto/test/src/crypto/test/X25519Test.cs b/crypto/test/src/crypto/test/X25519Test.cs
index 29466e0c6..1c315001e 100644
--- a/crypto/test/src/crypto/test/X25519Test.cs
+++ b/crypto/test/src/crypto/test/X25519Test.cs
@@ -21,7 +21,7 @@ namespace Org.BouncyCastle.Crypto.Tests
             get { return "X25519"; }
         }
 
-        public static void Main(string[] args)
+        public static void MainOld(string[] args)
         {
             RunTest(new X25519Test());
         }
diff --git a/crypto/test/src/crypto/test/X448Test.cs b/crypto/test/src/crypto/test/X448Test.cs
index 5d4b14b63..a6d18396d 100644
--- a/crypto/test/src/crypto/test/X448Test.cs
+++ b/crypto/test/src/crypto/test/X448Test.cs
@@ -21,7 +21,7 @@ namespace Org.BouncyCastle.Crypto.Tests
             get { return "X448"; }
         }
 
-        public static void Main(string[] args)
+        public static void MainOld(string[] args)
         {
             RunTest(new X448Test());
         }
diff --git a/crypto/test/src/test/SM4Test.cs b/crypto/test/src/test/SM4Test.cs
index 5d36b3431..8ce4486ad 100644
--- a/crypto/test/src/test/SM4Test.cs
+++ b/crypto/test/src/test/SM4Test.cs
@@ -141,7 +141,7 @@ namespace Org.BouncyCastle.Tests
             }
         }
 
-        public static void Main(string[] args)
+        public static void MainOld(string[] args)
         {
             RunTest(new SM4Test());
         }