diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2022-03-02 15:14:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-02 15:14:57 +0100 |
commit | e23507d3e97ce37bb15be59de5195336595cdb17 (patch) | |
tree | da162f3361d03eaf648249570c8d695b054372a1 /src/lib | |
parent | 6f431057c5e11ce24dc88a43b681e9ba9aa5a0e1 (diff) |
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
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/third_party/include/gcrypt_light.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |