mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-23 16:19:54 +01:00
Log keys in hex on handshake
This commit is contained in:
@@ -486,9 +486,9 @@ class TransportKeyManagerImpl implements TransportKeyManager {
|
|||||||
outKeys.getTagKey(), outKeys.getHeaderKey(),
|
outKeys.getTagKey(), outKeys.getHeaderKey(),
|
||||||
outKeys.getStreamCounter(), keys.isHandshakeMode());
|
outKeys.getStreamCounter(), keys.isHandshakeMode());
|
||||||
LOG.info("Tag key: " +
|
LOG.info("Tag key: " +
|
||||||
outKeys.getTagKey().getBytes().toString());
|
StringUtils.toHexString(outKeys.getTagKey().getBytes()));
|
||||||
LOG.info("Header key: " +
|
LOG.info("Header key: " +
|
||||||
outKeys.getHeaderKey().getBytes().toString());
|
StringUtils.toHexString(outKeys.getHeaderKey().getBytes()));
|
||||||
// Increment the stream counter and write it back to the DB
|
// Increment the stream counter and write it back to the DB
|
||||||
outKeys.incrementStreamCounter();
|
outKeys.incrementStreamCounter();
|
||||||
db.incrementStreamCounter(txn, transportId,
|
db.incrementStreamCounter(txn, transportId,
|
||||||
|
|||||||
Reference in New Issue
Block a user