| 1075 | } |
| 1076 | |
| 1077 | uint64_t GarlicDestination::AddECIESx25519SessionNextTag (ReceiveRatchetTagSetPtr tagset) |
| 1078 | { |
| 1079 | auto index = tagset->GetNextIndex (); |
| 1080 | uint64_t tag = tagset->GetNextSessionTag (); |
| 1081 | if (tag) |
| 1082 | m_ECIESx25519Tags.emplace (tag, ECIESX25519AEADRatchetIndexTagset{index, tagset}); |
| 1083 | return tag; |
| 1084 | } |
| 1085 | |
| 1086 | void GarlicDestination::AddECIESx25519Session (const uint8_t * staticKey, ECIESX25519AEADRatchetSessionPtr session) |
| 1087 | { |
no test coverage detected