diff --git a/core/java/src/net/i2p/client/I2PSession.java b/core/java/src/net/i2p/client/I2PSession.java index 981d2dc3332834d6c9e7863cf95bc66758005fb6..1982563ba6fffd1f41b45f21b9f5cddf34a25895 100644 --- a/core/java/src/net/i2p/client/I2PSession.java +++ b/core/java/src/net/i2p/client/I2PSession.java @@ -298,8 +298,9 @@ public interface I2PSession { /** * Retrieve the decryption PrivateKey associated with the Destination - * + * @deprecated this key is unused */ + @Deprecated public PrivateKey getDecryptionKey(); /** diff --git a/core/java/src/net/i2p/client/impl/I2PSessionImpl.java b/core/java/src/net/i2p/client/impl/I2PSessionImpl.java index d5a9c2d128e3e355322115f9804c00d2fc0621da..ec334fdb7721494b02baea51f304004e003b8138 100644 --- a/core/java/src/net/i2p/client/impl/I2PSessionImpl.java +++ b/core/java/src/net/i2p/client/impl/I2PSessionImpl.java @@ -370,7 +370,7 @@ public abstract class I2PSessionImpl implements I2PSession, I2CPMessageReader.I2 throw new I2PSessionException("Subsession request already pending"); sub = new SubSession(this, privateKeyStream, opts); for (SubSession ss : _subsessions) { - if (ss.getDecryptionKey().equals(sub.getDecryptionKey()) && + if (/* ss.getDecryptionKey().equals(sub.getDecryptionKey()) && */ ss.getPrivateKey().equals(sub.getPrivateKey())) { throw new I2PSessionException("Dup subsession"); } @@ -1145,7 +1145,9 @@ public abstract class I2PSessionImpl implements I2PSession, I2CPMessageReader.I2 /** * Retrieve the decryption PrivateKey + * @deprecated this key is unused */ + @Deprecated public PrivateKey getDecryptionKey() { return _privateKey; } /** diff --git a/core/java/src/net/i2p/client/impl/SubSession.java b/core/java/src/net/i2p/client/impl/SubSession.java index 057c64cc4daaa532aa2adda31ddd4b7a695cf782..1474e57a69699654808491eec009389bdfda98e5 100644 --- a/core/java/src/net/i2p/client/impl/SubSession.java +++ b/core/java/src/net/i2p/client/impl/SubSession.java @@ -47,8 +47,8 @@ class SubSession extends I2PSessionMuxedImpl { public SubSession(I2PSession primary, InputStream destKeyStream, Properties options) throws I2PSessionException { super((I2PSessionMuxedImpl)primary, destKeyStream, options); _primary = (I2PSessionMuxedImpl) primary; - if (!getDecryptionKey().equals(_primary.getDecryptionKey())) - throw new I2PSessionException("encryption key mismatch"); + //if (!getDecryptionKey().equals(_primary.getDecryptionKey())) + // throw new I2PSessionException("encryption key mismatch"); if (getPrivateKey().equals(_primary.getPrivateKey())) throw new I2PSessionException("signing key must differ"); // state management diff --git a/core/java/src/net/i2p/data/PrivateKeyFile.java b/core/java/src/net/i2p/data/PrivateKeyFile.java index d5c7aeef2358cddabe5b042fd1a9b3438a671d50..a03cca1ebca0cd34981385799f05ac61b02086cc 100644 --- a/core/java/src/net/i2p/data/PrivateKeyFile.java +++ b/core/java/src/net/i2p/data/PrivateKeyFile.java @@ -824,7 +824,9 @@ public class PrivateKeyFile { * Private key may be random data or all zeros for Destinations as of 0.9.57 * * @return null on error or if not initialized + * @deprecated this key is unused */ + @Deprecated public PrivateKey getPrivKey() { try { // call this to force initialization