update the invalid packet limit for AES

This commit is contained in:
Marten Seemann 2020-10-16 10:51:05 +07:00
parent 51fd3c33b2
commit eff36f3057

View file

@ -91,7 +91,7 @@ const MaxConnIDLen = 20
// InvalidPacketLimitAES is the maximum number of packets that we can fail to decrypt when using
// AEAD_AES_128_GCM or AEAD_AES_265_GCM.
const InvalidPacketLimitAES = 1 << 54
const InvalidPacketLimitAES = 1 << 52
// InvalidPacketLimitChaCha is the maximum number of packets that we can fail to decrypt when using AEAD_CHACHA20_POLY1305.
const InvalidPacketLimitChaCha = 1 << 36