aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--standalone/src/test/java/cz/crcs/ectester/standalone/AppTests.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/standalone/src/test/java/cz/crcs/ectester/standalone/AppTests.java b/standalone/src/test/java/cz/crcs/ectester/standalone/AppTests.java
index 1f82bb0..d401e58 100644
--- a/standalone/src/test/java/cz/crcs/ectester/standalone/AppTests.java
+++ b/standalone/src/test/java/cz/crcs/ectester/standalone/AppTests.java
@@ -94,6 +94,9 @@ public class AppTests {
if (libName.equals("Botan") || libName.equals("Crypto++")) {
args = buildCLIArgs(libName, "default", "--kpg-type", "ECDH");
}
+ if (libName.equals("wolfCrypt")) {
+ args = buildCLIArgs(libName, "default", "-b", "256");
+ }
ECTesterStandalone.main(args);
String sout = out.capturedString();
if (sout.contains("Exception")) {
@@ -124,6 +127,9 @@ public class AppTests {
if (libName.equals("Botan") || libName.equals("Crypto++")) {
args = buildCLIArgs(libName, "performance", "--kpg-type", "ECDH");
}
+ if (libName.equals("wolfCrypt")) {
+ args = buildCLIArgs(libName, "performance", "-b", "256");
+ }
ByteArrayOutputStream baos = new ByteArrayOutputStream();
PrintStream ps = new PrintStream(baos);
System.setOut(ps);