diff options
author | Andy Polyakov <appro@openssl.org> | 2004-05-31 15:28:23 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2004-05-31 15:28:23 +0200 |
commit | 057cfaf2f88756f7a6029a318a86f0bd44efc652 (patch) | |
tree | 5f6b6acef79709b1d10b1c721bbc24cafca7e1e7 /crypto/hmac | |
parent | make update (diff) | |
download | openssl-057cfaf2f88756f7a6029a318a86f0bd44efc652.tar.xz openssl-057cfaf2f88756f7a6029a318a86f0bd44efc652.zip |
Extend HMAC_MAX_MD_CBLOCK to accomodate SHA-512.
Diffstat (limited to 'crypto/hmac')
-rw-r--r-- | crypto/hmac/hmac.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/hmac/hmac.h b/crypto/hmac/hmac.h index 251c95fade..719fc408ac 100644 --- a/crypto/hmac/hmac.h +++ b/crypto/hmac/hmac.h @@ -66,7 +66,7 @@ #include <openssl/evp.h> -#define HMAC_MAX_MD_CBLOCK 64 +#define HMAC_MAX_MD_CBLOCK 128 /* largest known is SHA512 */ #ifdef __cplusplus extern "C" { |