-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,7 +60,7 @@ | |
* | ||
* @author Petr Svenda [email protected] | ||
* @author Jan Jancar [email protected] | ||
* @version v0.2.0 | ||
* @version v0.3.0 | ||
*/ | ||
public class ECTesterReader { | ||
private CardMngr cardManager; | ||
|
@@ -69,7 +69,7 @@ public class ECTesterReader { | |
private Config cfg; | ||
|
||
private Options opts = new Options(); | ||
public static final String VERSION = "v0.2.0"; | ||
public static final String VERSION = "v0.3.0"; | ||
public static String GIT_COMMIT = ""; | ||
private static String DESCRIPTION; | ||
private static String LICENSE = "MIT Licensed\nCopyright (c) 2016-2018 Petr Svenda <[email protected]>"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,7 +63,7 @@ | |
* Standalone part of ECTester, a tool for testing Elliptic curve implementations in software libraries. | ||
* | ||
* @author Jan Jancar [email protected] | ||
* @version v0.2.0 | ||
* @version v0.3.0 | ||
*/ | ||
public class ECTesterStandalone { | ||
private ProviderECLibrary[] libs = new ProviderECLibrary[]{new SunECLib(), new BouncyCastleLib(), new TomcryptLib(), new BotanLib(), new CryptoppLib(), new OpensslLib(), new MscngLib()}; | ||
|
@@ -72,7 +72,7 @@ public class ECTesterStandalone { | |
private Options opts = new Options(); | ||
private TreeParser optParser; | ||
private TreeCommandLine cli; | ||
public static final String VERSION = "v0.2.0"; | ||
public static final String VERSION = "v0.3.0"; | ||
private static final String DESCRIPTION = "ECTesterStandalone " + VERSION + ", an Elliptic Curve Cryptography support tester/utility."; | ||
private static final String LICENSE = "MIT Licensed\nCopyright (c) 2016-2018 Petr Svenda <[email protected]>"; | ||
private static final String CLI_HEADER = "\n" + DESCRIPTION + "\n\n"; | ||
|