Skip to content

Commit f5f0eee

Browse files
committed
eddsa-0.2.0
1 parent 309c816 commit f5f0eee

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Download the latest .jar from the releases tab and place it in your classpath.
1818
Gradle users:
1919

2020
```
21-
compile 'net.i2p.crypto:eddsa:0.1.0'
21+
compile 'net.i2p.crypto:eddsa:0.2.0'
2222
```
2323

2424
The code requires Java 6 (for e.g. the `Arrays.copyOfRange()` calls in `EdDSAEngine.engineVerify()`).

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>net.i2p.crypto</groupId>
55
<artifactId>eddsa</artifactId>
6-
<version>0.2.0-SNAPSHOT</version>
6+
<version>0.2.0</version>
77
<name>EdDSA-Java</name>
88
<packaging>bundle</packaging>
99
<description>Implementation of EdDSA in Java</description>

src/net/i2p/crypto/eddsa/EdDSASecurityProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class EdDSASecurityProvider extends Provider {
2626
public static final String PROVIDER_NAME = "EdDSA";
2727

2828
public EdDSASecurityProvider() {
29-
super(PROVIDER_NAME, 0.1 /* should match POM major.minor version */, "str4d " + PROVIDER_NAME + " security provider wrapper");
29+
super(PROVIDER_NAME, 0.2 /* should match POM major.minor version */, "str4d " + PROVIDER_NAME + " security provider wrapper");
3030

3131
AccessController.doPrivileged(new PrivilegedAction<Object>() {
3232
@Override

0 commit comments

Comments
 (0)