always pass ECIES tag as uin64_t

This commit is contained in:
orignal
2026-06-25 14:00:38 -04:00
parent a3074aea1e
commit 62e10d09b0
5 changed files with 6 additions and 13 deletions
-7
View File
@@ -471,13 +471,6 @@ namespace garlic
}
}
void GarlicDestination::AddECIESx25519Key (const uint8_t * key, const uint8_t * tag)
{
uint64_t t;
memcpy (&t, tag, 8);
AddECIESx25519Key (key, t);
}
void GarlicDestination::AddECIESx25519Key (const uint8_t * key, uint64_t tag)
{
auto tagset = std::make_shared<SymmetricKeyTagSet>(this, key);