update version

This commit is contained in:
zzz
2014-02-17 13:14:23 +00:00
parent 2cacded182
commit 8c98ef7328
15 changed files with 28 additions and 28 deletions

View File

@@ -41,9 +41,9 @@ public interface I2PClient {
/** @since 0.8.1 */
public final static String PROP_RELIABILITY_NONE = "none";
/** @since 0.9.11 */
/** @since 0.9.12 */
public static final String PROP_SIGTYPE = "i2cp.destination.sigType";
/** @since 0.9.11 */
/** @since 0.9.12 */
public static final SigType DEFAULT_SIGTYPE = SigType.DSA_SHA1;
/**
@@ -97,7 +97,7 @@ public interface I2PClient {
*
* @param destKeyStream location to write out the destination, PrivateKey, and SigningPrivateKey,
* format is specified in {@link net.i2p.data.PrivateKeyFile PrivateKeyFile}
* @since 0.9.11
* @since 0.9.12
*/
public Destination createDestination(OutputStream destKeyStream, SigType type) throws I2PException, IOException;

View File

@@ -58,7 +58,7 @@ class I2PClientImpl implements I2PClient {
*
* @param destKeyStream location to write out the destination, PrivateKey, and SigningPrivateKey,
* format is specified in {@link net.i2p.data.PrivateKeyFile PrivateKeyFile}
* @since 0.9.11
* @since 0.9.12
*/
public Destination createDestination(OutputStream destKeyStream, SigType type) throws I2PException, IOException {
Certificate cert;

View File

@@ -33,7 +33,7 @@ public class I2PSimpleClient implements I2PClient {
/**
* @deprecated Don't do this
* @throws UnsupportedOperationException always
* @since 0.9.11
* @since 0.9.12
*/
public Destination createDestination(OutputStream destKeyStream, SigType type) throws I2PException, IOException {
throw new UnsupportedOperationException();