mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-13 04:46:38 +01:00
enale tunnl test encryption back
This commit is contained in:
parent
bb05bcf39f
commit
cb06f8e0bb
1 changed files with 10 additions and 4 deletions
|
@ -208,10 +208,16 @@ namespace tunnel
|
||||||
}
|
}
|
||||||
if (!failed)
|
if (!failed)
|
||||||
{
|
{
|
||||||
|
uint8_t key[32], tag[32];
|
||||||
|
rnd.GenerateBlock (key, 32); // random session key
|
||||||
|
rnd.GenerateBlock (tag, 32); // random session tag
|
||||||
|
m_LocalDestination.SubmitSessionKey (key, tag);
|
||||||
|
i2p::garlic::GarlicRoutingSession garlic (key, tag);
|
||||||
|
|
||||||
uint32_t msgID = rnd.GenerateWord32 ();
|
uint32_t msgID = rnd.GenerateWord32 ();
|
||||||
m_Tests[msgID] = std::make_pair (*it1, *it2);
|
m_Tests[msgID] = std::make_pair (*it1, *it2);
|
||||||
(*it1)->SendTunnelDataMsg ((*it2)->GetNextIdentHash (), (*it2)->GetNextTunnelID (),
|
(*it1)->SendTunnelDataMsg ((*it2)->GetNextIdentHash (), (*it2)->GetNextTunnelID (),
|
||||||
CreateDeliveryStatusMsg (msgID));
|
garlic.WrapSingleMessage (CreateDeliveryStatusMsg (msgID)));
|
||||||
it1++; it2++;
|
it1++; it2++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue