mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-15 12: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.getStreamCounter(), keys.isHandshakeMode());
|
||||
LOG.info("Tag key: " +
|
||||
outKeys.getTagKey().getBytes().toString());
|
||||
StringUtils.toHexString(outKeys.getTagKey().getBytes()));
|
||||
LOG.info("Header key: " +
|
||||
outKeys.getHeaderKey().getBytes().toString());
|
||||
StringUtils.toHexString(outKeys.getHeaderKey().getBytes()));
|
||||
// Increment the stream counter and write it back to the DB
|
||||
outKeys.incrementStreamCounter();
|
||||
db.incrementStreamCounter(txn, transportId,
|
||||
|
||||
Reference in New Issue
Block a user