don't add padding for optimal packet size

This commit is contained in:
orignal 2020-05-18 16:42:06 -04:00
parent d4bfeab36c
commit 1c8d662e30
2 changed files with 10 additions and 3 deletions

View file

@ -26,6 +26,9 @@ namespace garlic
const int ECIESX25519_MAX_NUM_GENERATED_TAGS = 160;
const int ECIESX25519_NSR_NUM_GENERATED_TAGS = 12;
const size_t ECIESX25519_OPTIMAL_PAYLOAD_SIZE = 1912; // 1912 = 1956 /* to fit 2 tunnel messages */
// - 16 /* I2NP header */ - 16 /* poly hash */ - 8 /* tag */ - 4 /* garlic length */
class ECIESX25519AEADRatchetSession;
class RatchetTagSet
{