diff options
author | monnerat <pm@datasphere.ch> | 2010-04-19 17:37:51 +0200 |
---|---|---|
committer | monnerat <pm@datasphere.ch> | 2010-04-19 17:37:51 +0200 |
commit | 7af5e3c39e7399f3a1c2576b575c8aa8781d9f2b (patch) | |
tree | 28e595fda7d664fecc66726a4a1c6261e71d2c7c /lib | |
parent | 42930155ab1ea66d7719b02be71eb1089d1eca47 (diff) | |
parent | e5b3246d0a5c08a3afb0d82c96bb4b5ed1e5e159 (diff) |
Merge branch 'master' of github.com:bagder/curl
Diffstat (limited to 'lib')
-rw-r--r-- | lib/md5.c | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -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. */ + } }; |