From e23507d3e97ce37bb15be59de5195336595cdb17 Mon Sep 17 00:00:00 2001 From: Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> Date: Wed, 2 Mar 2022 15:14:57 +0100 Subject: Internal crypto: increase size of authentication buffer (#1468) Some QUIC flows are not properly decoded while using internal crypto code: the authentication buffer is too small. The new value (like the old one) is arbitrary. Close #1463 --- src/lib/third_party/include/gcrypt_light.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/lib/third_party/include/gcrypt_light.h b/src/lib/third_party/include/gcrypt_light.h index de77c8e38..7f31f24a0 100644 --- a/src/lib/third_party/include/gcrypt_light.h +++ b/src/lib/third_party/include/gcrypt_light.h @@ -24,7 +24,7 @@ #define GCRYCTL_RESET 3 #define GCRY_AES_KEY_SIZE 32 -#define GCRY_AES_AUTH_SIZE 128 +#define GCRY_AES_AUTH_SIZE 256 #define GCRY_AES_TAG_SIZE 32 #define GCRY_AES_IV_SIZE 12 -- cgit v1.2.3