diff options
Diffstat (limited to 'crypto/hmac/hmac.c')
-rw-r--r-- | crypto/hmac/hmac.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/hmac/hmac.c b/crypto/hmac/hmac.c index 64c5162130..bf293804c5 100644 --- a/crypto/hmac/hmac.c +++ b/crypto/hmac/hmac.c @@ -60,7 +60,8 @@ #include <string.h> #include "hmac.h" -void HMAC_Init(HMAC_CTX *ctx, unsigned char *key, int len, const EVP_MD *md) +void HMAC_Init(HMAC_CTX *ctx, const unsigned char *key, int len, + const EVP_MD *md) { int i,j,reset=0; unsigned char pad[HMAC_MAX_MD_CBLOCK]; |