diff options
| author | J08nY | 2024-08-07 20:34:48 +0200 |
|---|---|---|
| committer | J08nY | 2024-08-07 20:34:48 +0200 |
| commit | 50c576e0f28eac393985073d7d91dac1262bf5da (patch) | |
| tree | ac2dbacfbdb745587a17b28c9bb697633434ef19 /standalone/src/test/java | |
| parent | 84858177fe6c2b9bdc6ea9785a92781ba1237e04 (diff) | |
| download | ECTester-50c576e0f28eac393985073d7d91dac1262bf5da.tar.gz ECTester-50c576e0f28eac393985073d7d91dac1262bf5da.tar.zst ECTester-50c576e0f28eac393985073d7d91dac1262bf5da.zip | |
Add deterministic RNG to Crypto++.
Diffstat (limited to 'standalone/src/test/java')
| -rw-r--r-- | standalone/src/test/java/cz/crcs/ectester/standalone/AppTests.java | 4 |
1 files changed, 3 insertions, 1 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 8693b7b..6e8ec76 100644 --- a/standalone/src/test/java/cz/crcs/ectester/standalone/AppTests.java +++ b/standalone/src/test/java/cz/crcs/ectester/standalone/AppTests.java @@ -95,9 +95,11 @@ public class AppTests { String[] args = new String[]{"generate", "-ps", "123412341234123412341234123412341234123412341234123412341234123412341234123412341234123412341234", "-n", "10", "-nc", "secg/secp256r1", libName}; switch (libName) { case "Botan": - case "Crypto++": args = new String[]{"generate", "-ps", "123412341234123412341234123412341234123412341234123412341234123412341234123412341234123412341234", "-n", "10", "-nc", "secg/secp256r1", "-t", "ECDH", libName}; break; + case "Crypto++": + args = new String[]{"generate", "-ps", "12345678", "-n", "10", "-nc", "secg/secp256r1", "-t", "ECDH", libName}; + break; case "Nettle": case "libgcrypt": case "wolfCrypt": |
