diff options
author | Steve Holme <steve_holme@hotmail.com> | 2020-02-22 05:37:01 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2020-02-23 07:50:33 +0000 |
commit | 37dc4df270b0080442a9e36f9ea13855db9253e6 (patch) | |
tree | 7799e625b9b2ff19c83d5b06bb40a62579abe5ab /lib/curl_sha256.h | |
parent | 4959be810be3340aaa7a1efca4aba7e670d5e8b7 (diff) | |
download | curl-37dc4df270b0080442a9e36f9ea13855db9253e6.tar.gz |
md5/sha256: Updated the functions to allow non-string data to be hashed
Diffstat (limited to 'lib/curl_sha256.h')
-rw-r--r-- | lib/curl_sha256.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/curl_sha256.h b/lib/curl_sha256.h index 922e501da..35d286ceb 100644 --- a/lib/curl_sha256.h +++ b/lib/curl_sha256.h @@ -27,7 +27,8 @@ #define SHA256_DIGEST_LENGTH 32 -void Curl_sha256it(unsigned char *outbuffer, const unsigned char *input); +void Curl_sha256it(unsigned char *outbuffer, const unsigned char *input, + const size_t len); #endif |