Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
J08nY committed Mar 18, 2019
1 parent 529ab9c commit 9bd35df
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions build-applet.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

<!-- applet properties -->
<property name="pkg_aid" value="4543546573746572"/>
<property name="applet_aid_221" value="454354657374657230333262"/> <!--// VERSION v0.3.2 -->
<property name="applet_aid_222" value="454354657374657230333278"/> <!--// VERSION v0.3.2 -->
<property name="applet_aid_221" value="454354657374657230333362"/> <!--// VERSION v0.3.3 -->
<property name="applet_aid_222" value="454354657374657230333378"/> <!--// VERSION v0.3.3 -->
<property name="cap_221" value="ectester221.cap"/>
<property name="cap_222" value="ectester222.cap"/>
<property name="cap" value="${cap_222}"/>
Expand Down
2 changes: 1 addition & 1 deletion src/cz/crcs/ectester/applet/ECTesterApplet.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/
/*
* PACKAGEID: 4543546573746572
* APPLETID: 454354657374657230333262 // VERSION v0.3.2
* APPLETID: 454354657374657230333362 // VERSION v0.3.3
*/
package cz.crcs.ectester.applet;

Expand Down
2 changes: 1 addition & 1 deletion src/cz/crcs/ectester/applet/ECTesterAppletExtended.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/
/*
* PACKAGEID: 4543546573746572
* APPLETID: 454354657374657230333278 // VERSION v0.3.2
* APPLETID: 454354657374657230333378 // VERSION v0.3.3
*/
package cz.crcs.ectester.applet;

Expand Down
8 changes: 4 additions & 4 deletions src/cz/crcs/ectester/reader/ECTesterReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
*
* @author Petr Svenda petr@svenda.com
* @author Jan Jancar johny@neuromancer.sk
* @version v0.3.2
* @version v0.3.3
*/
public class ECTesterReader {
private CardMngr cardManager;
Expand All @@ -73,16 +73,16 @@ public class ECTesterReader {
private Config cfg;

private Options opts = new Options();
public static final String VERSION = "v0.3.2";
public static final String VERSION = "v0.3.3";
public static String GIT_COMMIT = "";
private static String DESCRIPTION;
private static String LICENSE = "MIT Licensed\nCopyright © 2016-2019 Petr Svenda <petr@svenda.com>\nCopyright © 2016-2019 Jan Jancar <johny@neuromancer.sk>";
private static String CLI_HEADER;
private static String CLI_FOOTER = "\n" + LICENSE;

private static final byte[] SELECT_PREFIX = {(byte) 0x00, (byte) 0xa4, (byte) 0x04, (byte) 0x00, (byte) 0x0c};
private static final byte[] AID_221 = {(byte) 0x45, (byte) 0x43, (byte) 0x54, (byte) 0x65, (byte) 0x73, (byte) 0x74, (byte) 0x65, (byte) 0x72, (byte) 0x30, (byte) 0x33, (byte) 0x32, (byte) 0x62}; // VERSION v0.3.2
private static final byte[] AID_222 = {(byte) 0x45, (byte) 0x43, (byte) 0x54, (byte) 0x65, (byte) 0x73, (byte) 0x74, (byte) 0x65, (byte) 0x72, (byte) 0x30, (byte) 0x33, (byte) 0x32, (byte) 0x78}; // VERSION v0.3.2
private static final byte[] AID_221 = {(byte) 0x45, (byte) 0x43, (byte) 0x54, (byte) 0x65, (byte) 0x73, (byte) 0x74, (byte) 0x65, (byte) 0x72, (byte) 0x30, (byte) 0x33, (byte) 0x33, (byte) 0x62}; // VERSION v0.3.3
private static final byte[] AID_222 = {(byte) 0x45, (byte) 0x43, (byte) 0x54, (byte) 0x65, (byte) 0x73, (byte) 0x74, (byte) 0x65, (byte) 0x72, (byte) 0x30, (byte) 0x33, (byte) 0x33, (byte) 0x78}; // VERSION v0.3.3
private static final byte[] INSTALL_DATA = new byte[10];

static {
Expand Down
4 changes: 2 additions & 2 deletions src/cz/crcs/ectester/standalone/ECTesterStandalone.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
* Standalone part of ECTester, a tool for testing Elliptic curve implementations in software libraries.
*
* @author Jan Jancar johny@neuromancer.sk
* @version v0.3.2
* @version v0.3.3
*/
public class ECTesterStandalone {
private ProviderECLibrary[] libs = new ProviderECLibrary[]{
Expand All @@ -84,7 +84,7 @@ public class ECTesterStandalone {
private Options opts = new Options();
private TreeParser optParser;
private TreeCommandLine cli;
public static final String VERSION = "v0.3.2";
public static final String VERSION = "v0.3.3";
private static final String DESCRIPTION = "ECTesterStandalone " + VERSION + ", an Elliptic Curve Cryptography support tester/utility.";
private static final String LICENSE = "MIT Licensed\nCopyright © 2016-2019 Petr Svenda <petr@svenda.com>\nCopyright © 2016-2019 Jan Jancar <johny@neuromancer.sk>";
private static final String CLI_HEADER = "\n" + DESCRIPTION + "\n\n";
Expand Down

0 comments on commit 9bd35df

Please sign in to comment.