I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 9e355962 authored by zzz's avatar zzz
Browse files

* OutboundEstablishState: Cleanup (ticket #671)

parent 351d582c
No related branches found
No related tags found
No related merge requests found
...@@ -369,7 +369,7 @@ class OutboundEstablishState { ...@@ -369,7 +369,7 @@ class OutboundEstablishState {
off += 4; off += 4;
DataHelper.toLong(signed, off, 4, _receivedSignedOnTime); DataHelper.toLong(signed, off, 4, _receivedSignedOnTime);
boolean valid = _context.dsa().verifySignature(_receivedSignature, signed, _remotePeer.getSigningPublicKey()); boolean valid = _context.dsa().verifySignature(_receivedSignature, signed, _remotePeer.getSigningPublicKey());
if (!valid || _log.shouldLog(Log.DEBUG)) { if (_log.shouldLog(Log.DEBUG) || (_log.shouldLog(Log.WARN) && !valid)) {
StringBuilder buf = new StringBuilder(128); StringBuilder buf = new StringBuilder(128);
buf.append("Signed sessionCreated:"); buf.append("Signed sessionCreated:");
buf.append(" Alice: ").append(Addresses.toString(_aliceIP, _alicePort)); buf.append(" Alice: ").append(Addresses.toString(_aliceIP, _alicePort));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment