Skip to content

Commit 853e94e

Browse files
committed
Update API to v0.4.0
1 parent ac4ad8c commit 853e94e

File tree

9 files changed

+21
-20
lines changed

9 files changed

+21
-20
lines changed

coniks_common/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<groupId>org.coniks</groupId>
77
<artifactId>coniks-java</artifactId>
8-
<version>1.3-SNAPSHOT</version>
8+
<version>0.4.0</version>
99
</parent>
1010

1111
<groupId>org.coniks.coniks_common</groupId>
1212
<artifactId>coniks_common</artifactId>
13-
<version>1.3-SNAPSHOT</version>
13+
<version>0.4.0</version>
1414
<packaging>jar</packaging>
1515

1616
<name>CONIKS [Common]</name>

coniks_server/pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<groupId>org.coniks</groupId>
77
<artifactId>coniks-java</artifactId>
8-
<version>1.3-SNAPSHOT</version>
8+
<version>0.4.0</version>
99
</parent>
1010

1111
<groupId>org.coniks.coniks_server</groupId>
1212
<artifactId>coniks_server</artifactId>
13-
<version>1.3-SNAPSHOT</version>
13+
<version>0.4.0</version>
1414
<packaging>jar</packaging>
1515

1616
<name>CONIKS [Reference Server]</name>
@@ -22,21 +22,21 @@
2222
<dependency>
2323
<groupId>org.coniks.coniks_common</groupId>
2424
<artifactId>coniks_common</artifactId>
25-
<version>1.3-SNAPSHOT</version>
25+
<version>0.4.0</version>
2626
<scope>compile</scope>
2727
</dependency>
2828

2929
<dependency>
3030
<groupId>org.coniks.crypto</groupId>
3131
<artifactId>coniks-crypto</artifactId>
32-
<version>1.3-SNAPSHOT</version>
32+
<version>0.4.0</version>
3333
<scope>compile</scope>
3434
</dependency>
3535

3636
<dependency>
3737
<groupId>org.coniks.util</groupId>
3838
<artifactId>coniks-util</artifactId>
39-
<version>1.3-SNAPSHOT</version>
39+
<version>0.4.0</version>
4040
<scope>compile</scope>
4141
</dependency>
4242

coniks_server/src/main/java/org/coniks/coniks_server/SignatureOps.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public class SignatureOps{
6161
* of the {@code input}.
6262
*@throws A RuntimeException if there is a problem with the private key
6363
* loaded from the server's keystore.
64-
*@deprecated Replaced with {@link org.coniks.crypto.Signing#rsaSign(RSAPublicKey, byte[])}.
64+
*@deprecated Replaced with {@link org.coniks.crypto.Signing#rsaSign(RSAPrivateKey, byte[])}.
6565
*/
6666
@Deprecated
6767
public static byte[] sign(byte[] input) {

coniks_test_client/pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<groupId>org.coniks</groupId>
77
<artifactId>coniks-java</artifactId>
8-
<version>1.3-SNAPSHOT</version>
8+
<version>0.4.0</version>
99
</parent>
1010

1111
<groupId>org.coniks.coniks_test_client</groupId>
1212
<artifactId>coniks_test_client</artifactId>
13-
<version>1.3-SNAPSHOT</version>
13+
<version>0.4.0</version>
1414
<packaging>jar</packaging>
1515

1616
<name>CONIKS [Test Client]</name>
@@ -22,21 +22,21 @@
2222
<dependency>
2323
<groupId>org.coniks.coniks_common</groupId>
2424
<artifactId>coniks_common</artifactId>
25-
<version>1.3-SNAPSHOT</version>
25+
<version>0.4.0</version>
2626
<scope>compile</scope>
2727
</dependency>
2828

2929
<dependency>
3030
<groupId>org.coniks.crypto</groupId>
3131
<artifactId>coniks-crypto</artifactId>
32-
<version>1.3-SNAPSHOT</version>
32+
<version>0.4.0</version>
3333
<scope>compile</scope>
3434
</dependency>
3535

3636
<dependency>
3737
<groupId>org.coniks.util</groupId>
3838
<artifactId>coniks-util</artifactId>
39-
<version>1.3-SNAPSHOT</version>
39+
<version>0.4.0</version>
4040
<scope>compile</scope>
4141
</dependency>
4242

coniks_test_client/src/main/java/org/coniks/coniks_test_client/SignatureOps.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public static boolean verifySigFromDSA(byte[] msg, byte[] sig,
8585
/** Signs {@code msg} using DSAPrivateKey {@code prk}
8686
*
8787
*@return the signature or null on an error
88-
*@deprecated Replaced with {@link org.coniks.crypto.Signing#dsaSign(DSAPublicKey, byte[], byte[])}.
88+
*@deprecated Replaced with {@link org.coniks.crypto.Signing#dsaSign(DSAPrivateKey, byte[])}.
8989
*/
9090
@Deprecated
9191
public static byte[] signDSA(byte[] msg, DSAPrivateKey prk) throws InvalidKeyException {

crypto/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>org.coniks</groupId>
88
<artifactId>coniks-java</artifactId>
9-
<version>1.3-SNAPSHOT</version>
9+
<version>0.4.0</version>
1010
</parent>
1111

1212
<groupId>org.coniks.crypto</groupId>
1313
<artifactId>coniks-crypto</artifactId>
14-
<version>1.3-SNAPSHOT</version>
14+
<version>0.4.0</version>
1515
<packaging>jar</packaging>
1616

1717
<name>CONIKS [Crypto]</name>

crypto/src/main/java/org/coniks/crypto/Digest.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
3737
import java.security.MessageDigest;
3838
import java.security.NoSuchAlgorithmException;
3939

40-
/** Implements all cryptographic utility functions for CONIKS.
40+
/** Implements cryptographic hashing and hashed random number
41+
* generation for CONIKS.
4142
* Currently supported hash algorithms: SHA-256.
4243
*
4344
*@author Marcela S. Melara (melara@cs.princeton.edu)

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>org.coniks</groupId>
66
<artifactId>coniks-java</artifactId>
7-
<version>1.3-SNAPSHOT</version>
7+
<version>0.4.0</version>
88
<packaging>pom</packaging>
99

1010
<name>CONIKS [Parent]</name>

util/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>org.coniks</groupId>
88
<artifactId>coniks-java</artifactId>
9-
<version>1.3-SNAPSHOT</version>
9+
<version>0.4.0</version>
1010
</parent>
1111

1212
<groupId>org.coniks.util</groupId>
1313
<artifactId>coniks-util</artifactId>
14-
<version>1.3-SNAPSHOT</version>
14+
<version>0.4.0</version>
1515
<packaging>jar</packaging>
1616

1717
<name>CONIKS [Util]</name>

0 commit comments

Comments
 (0)