diff options
author | monnerat <pm@datasphere.ch> | 2010-04-19 11:16:30 +0200 |
---|---|---|
committer | monnerat <pm@datasphere.ch> | 2010-04-19 11:16:30 +0200 |
commit | 4bfe07640c93f8dfd3af4bb76c8346ef4a129cc8 (patch) | |
tree | ad0163b0560ab8fb593b7f98a6c53822a57d08a4 /lib/curl_md5.h | |
parent | c5e539c312af011e312bd82a9fef6c2c44061ca9 (diff) | |
download | curl-4bfe07640c93f8dfd3af4bb76c8346ef4a129cc8.tar.gz |
Implement SMTP authentication
Diffstat (limited to 'lib/curl_md5.h')
-rw-r--r-- | lib/curl_md5.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/curl_md5.h b/lib/curl_md5.h index cab9915ce..cd520bc9d 100644 --- a/lib/curl_md5.h +++ b/lib/curl_md5.h @@ -22,7 +22,13 @@ * ***************************************************************************/ +#ifndef CURL_DISABLE_CRYPTO_AUTH +#include "curl_hmac.h" + +const HMAC_params Curl_HMAC_MD5[1]; + void Curl_md5it(unsigned char *output, const unsigned char *input); +#endif #endif /* HEADER_CURL_MD5_H */ |