summaryrefslogtreecommitdiffstats
path: root/crypto/hmac/hmac.h
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-02-03 18:22:01 +0000
committerUlf Möller <ulf@openssl.org>2000-02-03 18:22:01 +0000
commit9dbc41d7eed7d69da54dc81082794845c50ad482 (patch)
tree3c59e6df13deb5eed99501dc7fffac681fb7e1eb /crypto/hmac/hmac.h
parent82fc1d9c28e834549f61e4c91b3f6bbdf4c48153 (diff)
Document hash functions.
Diffstat (limited to 'crypto/hmac/hmac.h')
-rw-r--r--crypto/hmac/hmac.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/hmac/hmac.h b/crypto/hmac/hmac.h
index f928975fcd..223eeda7f3 100644
--- a/crypto/hmac/hmac.h
+++ b/crypto/hmac/hmac.h
@@ -85,11 +85,11 @@ typedef struct hmac_ctx_st
void HMAC_Init(HMAC_CTX *ctx, const void *key, int len,
const EVP_MD *md);
-void HMAC_Update(HMAC_CTX *ctx,unsigned char *key, int len);
+void HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, int len);
void HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len);
void HMAC_cleanup(HMAC_CTX *ctx);
unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len,
- unsigned char *d, int n, unsigned char *md,
+ const unsigned char *d, int n, unsigned char *md,
unsigned int *md_len);