mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-13 04:46:38 +01:00
whitespace cleanup
This commit is contained in:
parent
cd59ca8376
commit
098b2e968e
1 changed files with 2 additions and 0 deletions
|
@ -291,6 +291,7 @@ namespace transport
|
||||||
buf += paddingSize;
|
buf += paddingSize;
|
||||||
len += paddingSize;
|
len += paddingSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
SignedData s;
|
SignedData s;
|
||||||
s.Insert (m_Establisher->phase1.pubKey, 256); // x
|
s.Insert (m_Establisher->phase1.pubKey, 256); // x
|
||||||
s.Insert (m_Establisher->phase2.pubKey, 256); // y
|
s.Insert (m_Establisher->phase2.pubKey, 256); // y
|
||||||
|
@ -298,6 +299,7 @@ namespace transport
|
||||||
s.Insert (tsA); // tsA
|
s.Insert (tsA); // tsA
|
||||||
s.Insert (m_Establisher->phase2.encrypted.timestamp, 4); // tsB
|
s.Insert (m_Establisher->phase2.encrypted.timestamp, 4); // tsB
|
||||||
s.Sign (keys, buf);
|
s.Sign (keys, buf);
|
||||||
|
|
||||||
m_Encryption.Encrypt(m_ReceiveBuffer, len, m_ReceiveBuffer);
|
m_Encryption.Encrypt(m_ReceiveBuffer, len, m_ReceiveBuffer);
|
||||||
boost::asio::async_write (m_Socket, boost::asio::buffer (m_ReceiveBuffer, len), boost::asio::transfer_all (),
|
boost::asio::async_write (m_Socket, boost::asio::buffer (m_ReceiveBuffer, len), boost::asio::transfer_all (),
|
||||||
std::bind(&NTCPSession::HandlePhase3Sent, shared_from_this (), std::placeholders::_1, std::placeholders::_2, tsA));
|
std::bind(&NTCPSession::HandlePhase3Sent, shared_from_this (), std::placeholders::_1, std::placeholders::_2, tsA));
|
||||||
|
|
Loading…
Add table
Reference in a new issue