diff options
Diffstat (limited to 'crypto/hmac')
-rw-r--r-- | crypto/hmac/hmac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/hmac/hmac.c b/crypto/hmac/hmac.c index 9504aada94..4e09e56f15 100644 --- a/crypto/hmac/hmac.c +++ b/crypto/hmac/hmac.c @@ -164,7 +164,7 @@ int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len) return 0; } -size_t HMAC_size(HMAC_CTX *ctx) +size_t HMAC_size(const HMAC_CTX *ctx) { return EVP_MD_size((ctx)->md); } |