2
0
mirror of https://github.com/openssl/openssl.git synced 2025-03-31 20:10:45 +08:00

Bump HMAC_MAX_MD_CBLOCK to 200 due to SHA-3

The maximum (theoretical) block size of SHA3 is 200 bytes.

Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15125)
This commit is contained in:
Tomas Mraz 2021-05-03 15:45:31 +02:00 committed by Pauli
parent 355e1f041c
commit 029875dc5b

@ -21,7 +21,7 @@
# include <openssl/evp.h>
# ifndef OPENSSL_NO_DEPRECATED_3_0
# define HMAC_MAX_MD_CBLOCK 128 /* Deprecated */
# define HMAC_MAX_MD_CBLOCK 200 /* Deprecated */
# endif
# ifdef __cplusplus