summaryrefslogtreecommitdiff
path: root/lib/sha256.c
Commit message (Collapse)AuthorAgeFilesLines
* http: fix for tiny "HTTP/0.9" responseDaniel Stenberg2018-08-131-5/+2
| | | | | | | | | | | Deal with tiny "HTTP/0.9" (header-less) responses by checking the status-line early, even before a full "HTTP/" is received to allow detecting 0.9 properly. Test 1266 and 1267 added to verify. Fixes #2420 Closes #2872
* cppcheck: fix warningsMarian Klymov2018-06-111-6/+6
| | | | | | | | | | | | | - Get rid of variable that was generating false positive warning (unitialized) - Fix issues in tests - Reduce scope of several variables all over etc Closes #2631
* spelling fixesViktor Szakats2018-02-231-1/+1
| | | | | | | | Detected using the `codespell` tool. Also contains one URL protocol upgrade. Closes https://github.com/curl/curl/pull/2334
* sha256: avoid redefineDaniel Stenberg2018-02-121-6/+2
|
* sha256: build with OpenSSL < 0.9.8 tooDouglas Mencken2018-02-121-0/+12
| | | | | | support for SHA-2 was introduced in OpenSSL 0.9.8 Closes #2305
* auth: add support for RFC7616 - HTTP Digest access authenticationFlorin2017-10-281-0/+262
Signed-off-by: Florin <petriuc.florin@gmail.com>