aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/test/j2me/org/spongycastle/crypto/test/BigIntegerTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/test/j2me/org/spongycastle/crypto/test/BigIntegerTest.java')
-rw-r--r--libraries/spongycastle/core/src/test/j2me/org/spongycastle/crypto/test/BigIntegerTest.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/libraries/spongycastle/core/src/test/j2me/org/spongycastle/crypto/test/BigIntegerTest.java b/libraries/spongycastle/core/src/test/j2me/org/spongycastle/crypto/test/BigIntegerTest.java
new file mode 100644
index 000000000..ef2236939
--- /dev/null
+++ b/libraries/spongycastle/core/src/test/j2me/org/spongycastle/crypto/test/BigIntegerTest.java
@@ -0,0 +1,32 @@
+package org.spongycastle.crypto.test;
+
+import org.spongycastle.util.test.*;
+
+public class BigIntegerTest
+{
+ public static Test[] tests = {
+ new DHTest(),
+ new ElGamalTest(),
+ new DSATest(),
+ new ECTest(),
+ new ECIESTest(),
+ new RSATest(),
+ new ISO9796Test(),
+ new OAEPTest(),
+ new PSSTest(),
+ new CTSTest(),
+ new PKCS5Test(),
+ new PKCS12Test()
+ };
+
+ public static void main(
+ String[] args)
+ {
+ for (int i = 0; i != tests.length; i++)
+ {
+ TestResult result = tests[i].perform();
+ System.out.println(result);
+ }
+ }
+}
+