Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-10-17 | Avoid typecasting a signed char to an int when using is*() functions, as that | Daniel Stenberg | |
could very well cause a negate number get passed in and thus cause reading outside of the array usually used for this purpose. We avoid this by using the uppercase macro versions introduced just now that does some extra crazy typecasts to avoid byte codes > 127 to cause negative int values. | |||
2006-05-25 | Olaf Stüben fixed a bug that caused Digest authentication with md5-sess to | Daniel Stenberg | |
fail. When using the md5-sess, the result was not Md5 encoded and Base64 transformed. | |||
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-10-06 | removed tabs and trailing whitespace from source | Daniel Stenberg | |
2004-07-31 | Joel Chen reported that we assumed content within quotes a bit too much in | Daniel Stenberg | |
the digest code. This fixes it. | |||
2004-06-24 | Replaced all uses of sprintf() with the safer snprintf(). It is just a | Daniel Stenberg | |
precaution to prevent mistakes to lead to buffer overflows. | |||
2004-06-03 | Vincent Bronner made the code use the correct user name + password when | Daniel Stenberg | |
doing proxy authentication. | |||
2004-05-13 | return CURLDIGEST_NOMEM when a memory function fails to deliver | Daniel Stenberg | |
2004-05-12 | Check that memory functions return non-NULL or return error. | Daniel Stenberg | |
2004-05-11 | curl_global_init_mem() allows the memory functions to be replaced. | Daniel Stenberg | |
memory.h is included everywhere for this. | |||
2004-05-10 | Luca fixed the nc= in the digest line since it apparantly should not have | Daniel Stenberg | |
quotes... | |||
2004-05-06 | use %ld to printf now.tv_sec | Daniel Stenberg | |
2004-05-04 | General HTTP authentication cleanup and fixes | Daniel Stenberg | |
2004-04-30 | oops, a bad strtok() was fixed by Luca | Daniel Stenberg | |
2004-04-29 | Luca Altea's major HTTP Digest update | Daniel Stenberg | |
2004-03-31 | added include to fix warning | Daniel Stenberg | |
2004-03-31 | * Fixed a memory leak when doing repeated re-negotiations. | Daniel Stenberg | |
* Made the incoming line parser more forgiving to allow "name=contents" pairs where the contents isn't within double quotes. * Made the digest code return CURLDIGEST_BADALGO if a requested algorithm isn't supported by the code. | |||
2004-03-30 | first attempt to support stale=true | Daniel Stenberg | |
2004-03-08 | size_t/int fix | Daniel Stenberg | |
2004-01-07 | updated year in the copyright string | Daniel Stenberg | |
2003-09-02 | wrap at 80 cols | Daniel Stenberg | |
2003-07-19 | Access the user and passwd fields from the connectdata struct now instead | Daniel Stenberg | |
of the sessionhandle struct, as that was not good. | |||
2003-06-26 | use CURLDEBUG instead of MALLOCDEBUG for preprocessor conditions | Daniel Stenberg | |
2003-05-22 | Better Digest stuff | Daniel Stenberg | |
2003-05-22 | hush the compiler | Daniel Stenberg | |
2003-05-22 | Initial Digest support. At least partly working. | Daniel Stenberg | |