aboutsummaryrefslogtreecommitdiff
path: root/standalone/src
diff options
context:
space:
mode:
authorJ08nY2024-07-25 12:58:31 +0200
committerJ08nY2024-07-25 12:58:31 +0200
commit013f625d80b7f6b7e3ed4b87d77ff838754867de (patch)
treee227f07b1b803218631c364cc81c9ec35e8331e6 /standalone/src
parentc112d3e49bbbbf33cc70d12d196e109543c19a3c (diff)
downloadECTester-013f625d80b7f6b7e3ed4b87d77ff838754867de.tar.gz
ECTester-013f625d80b7f6b7e3ed4b87d77ff838754867de.tar.zst
ECTester-013f625d80b7f6b7e3ed4b87d77ff838754867de.zip
Diffstat (limited to 'standalone/src')
-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);