diff options
author | beck <> | 2000-03-19 11:13:58 +0000 |
---|---|---|
committer | beck <> | 2000-03-19 11:13:58 +0000 |
commit | 796d609550df3a33fc11468741c5d2f6d3df4c11 (patch) | |
tree | 6c6d539061caa20372dad0ac4ddb1dfae2fbe7fe /src/lib/libcrypto/hmac/hmac.h | |
parent | 5be3114c1fd7e0dfea1e38d3abb4cbba75244419 (diff) | |
download | openbsd-796d609550df3a33fc11468741c5d2f6d3df4c11.tar.gz openbsd-796d609550df3a33fc11468741c5d2f6d3df4c11.tar.bz2 openbsd-796d609550df3a33fc11468741c5d2f6d3df4c11.zip |
OpenSSL 0.9.5 merge
*warning* this bumps shared lib minors for libssl and libcrypto from 2.1 to 2.2
if you are using the ssl26 packages for ssh and other things to work you will
need to get new ones (see ~beck/libsslsnap/<arch>) on cvs or ~beck/src-patent.tar.gz on cvs
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 | ||