diff options
Diffstat (limited to 'src/lib/libcrypto/hmac/hmac.h')
-rw-r--r-- | src/lib/libcrypto/hmac/hmac.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/hmac/hmac.h b/src/lib/libcrypto/hmac/hmac.h index f928975fcd..223eeda7f3 100644 --- a/src/lib/libcrypto/hmac/hmac.h +++ b/src/lib/libcrypto/hmac/hmac.h | |||
@@ -85,11 +85,11 @@ typedef struct hmac_ctx_st | |||
85 | 85 | ||
86 | void HMAC_Init(HMAC_CTX *ctx, const void *key, int len, | 86 | void HMAC_Init(HMAC_CTX *ctx, const void *key, int len, |
87 | const EVP_MD *md); | 87 | const EVP_MD *md); |
88 | void HMAC_Update(HMAC_CTX *ctx,unsigned char *key, int len); | 88 | void HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, int len); |
89 | void HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len); | 89 | void HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len); |
90 | void HMAC_cleanup(HMAC_CTX *ctx); | 90 | void HMAC_cleanup(HMAC_CTX *ctx); |
91 | unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len, | 91 | unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len, |
92 | unsigned char *d, int n, unsigned char *md, | 92 | const unsigned char *d, int n, unsigned char *md, |
93 | unsigned int *md_len); | 93 | unsigned int *md_len); |
94 | 94 | ||
95 | 95 | ||