From eff36f3057c96a60a25d40a72b6eb1d6ff4aa962 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Fri, 16 Oct 2020 10:51:05 +0700 Subject: [PATCH] update the invalid packet limit for AES --- internal/protocol/protocol.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/protocol/protocol.go b/internal/protocol/protocol.go index b7f5705f..22e4a6fb 100644 --- a/internal/protocol/protocol.go +++ b/internal/protocol/protocol.go @@ -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