mirror of
https://github.com/curl/curl.git
synced 2026-08-26 11:13:36 +03:00
Merge branch 'master' of github.com:bagder/curl
This commit is contained in:
commit
7af5e3c39e
4 changed files with 34 additions and 10 deletions
16
lib/md5.c
16
lib/md5.c
|
|
@ -371,13 +371,15 @@ static void Decode (UINT4 *output,
|
|||
|
||||
#endif /* USE_GNUTLS */
|
||||
|
||||
const HMAC_params Curl_HMAC_MD5[1] = {
|
||||
(HMAC_hinit_func) MD5_Init, /* Hash initialization function. */
|
||||
(HMAC_hupdate_func) MD5_Update, /* Hash update function. */
|
||||
(HMAC_hfinal_func) MD5_Final, /* Hash computation end function. */
|
||||
sizeof(MD5_CTX), /* Size of hash context structure. */
|
||||
64, /* Maximum key length. */
|
||||
16 /* Result size. */
|
||||
const HMAC_params Curl_HMAC_MD5[] = {
|
||||
{
|
||||
(HMAC_hinit_func) MD5_Init, /* Hash initialization function. */
|
||||
(HMAC_hupdate_func) MD5_Update, /* Hash update function. */
|
||||
(HMAC_hfinal_func) MD5_Final, /* Hash computation end function. */
|
||||
sizeof(MD5_CTX), /* Size of hash context structure. */
|
||||
64, /* Maximum key length. */
|
||||
16 /* Result size. */
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue