Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-05-22 | Fixed compile error with GNUTLS+NETTLE | Tatsuhiro Tsujikawa | |
In nettle/md5.h, md5_init and md5_update are defined as macros to nettle_md5_init and nettle_md5_update respectively. This causes error when using MD5_params.md5_init and md5_update. This patch renames these members as md5_init_func and md5_update_func to avoid name conflict. For completeness, MD5_params.md5_final was also renamed as md5_final_func. The changes in curl_ntlm_core.c is conversion error and fixed by casting to proper type. | |||
2012-04-23 | Curl_MD5_init: fix OOM memory leak | Daniel Stenberg | |
Bug: http://curl.haxx.se/mail/lib-2012-04/0246.html Reported by: Michael Mueller | |||
2012-03-31 | md5: Add support for calculating the md5 sum of buffers incrementally | Gökhan Şengün | |
It is now possible to calculate the md5 sum as the stream of buffers becomes known where as previously it was only possible to calculate the md5 sum of a pre-prepared buffer. | |||
2012-03-20 | fix several compiler warnings | Yang Tse | |
2011-11-19 | Add support for using nettle instead of gcrypt as gnutls backend | Martin Storsjo | |
2011-07-26 | stdio.h, stdlib.h, string.h, stdarg.h and ctype.h inclusion done in setup_once.h | Yang Tse | |
2011-04-27 | source cleanup: unify look, style and indent levels | Daniel Stenberg | |
By the use of a the new lib/checksrc.pl script that checks that our basic source style rules are followed. | |||
2010-08-04 | build: remove unneeded cast to (void *) | Yang Tse | |
2010-04-19 | Curl_HMAC_MD5: fix the array init to not warn with picky compilers | Daniel Stenberg | |
2010-04-19 | Fix GnuTLS compilation problem in md5.c | monnerat | |
2010-04-19 | Implement SMTP authentication | monnerat | |
2010-03-24 | remove the CVSish $Id$ lines | Daniel Stenberg | |
2009-02-12 | Added support for Digest and NTLM authentication using GnuTLS. | Dan Fandrich | |
2008-08-17 | Adjust usage of conditional definition of USE_OPENSSL | Yang Tse | |
2008-08-17 | libcurl internal md5.h header file renamed to curl_md5.h | Yang Tse | |
2007-11-07 | if () => if() | Daniel Stenberg | |
while () => while() and some other minor re-indentings | |||
2005-05-02 | corrected copyright year | Daniel Stenberg | |
2005-04-26 | Cory Nelson's work on nuking compiler warnings when building on x64 with | Daniel Stenberg | |
VS2005. | |||
2004-12-15 | Add 'const' to immutable arrays. | Dan Fandrich | |
2004-11-12 | Dan Fandrich added the --disable-crypto-auth option to configure to allow | Daniel Stenberg | |
libcurl to build without Digest support. (I figure it should also explicitly disable Negotiate and NTLM.) | |||
2004-02-20 | Convert functions to ANSI-style declaration to prevent compiler warnings | Daniel Stenberg | |
2004-02-16 | removed usage of a silly macro instead of the actual functions memcpy | Daniel Stenberg | |
and memset | |||
2004-01-29 | Dan Fandrich's cleanup patch to make pedantic compiler options cause less | Daniel Stenberg | |
warnings. Minor edits by me. | |||
2004-01-07 | updated year in the copyright string | Daniel Stenberg | |
2003-09-07 | do not use 'long' to store 4 bytes, as 64bit architectures have 64bit longs. | Daniel Stenberg | |
2003-06-26 | adjusted to use the same API as the OpenSSL version of the MD5 functions | Daniel Stenberg | |
2003-05-22 | Initial Digest support. At least partly working. | Daniel Stenberg | |