Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/test/j2me/org/spongycastle/crypto/test/BigIntegerTest.java')
-rw-r--r--core/src/test/j2me/org/spongycastle/crypto/test/BigIntegerTest.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/core/src/test/j2me/org/spongycastle/crypto/test/BigIntegerTest.java b/core/src/test/j2me/org/spongycastle/crypto/test/BigIntegerTest.java
new file mode 100644
index 00000000..ef223693
--- /dev/null
+++ b/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);
+ }
+ }
+}
+