summaryrefslogtreecommitdiff
path: root/lib/curl_sha256.h
Commit message (Collapse)AuthorAgeFilesLines
* http: add hmac support for sha256Matthias Gatto2020-12-211-0/+3
| | | | | | | | | | | | It seems current hmac implementation use md5 for the hash, V4 signature require sha256, so I've added the needed struct in this commit. I've added the functions that do the hmac in v4 signature file as a static function ,in the next patch of the serie, because it's used only by this file. Signed-off-by: Matthias Gatto <matthias.gatto@outscale.com>
* curl.se: new homeDaniel Stenberg2020-11-041-1/+1
| | | | Closes #6172
* md5/sha256: Updated the functions to allow non-string data to be hashedSteve Holme2020-02-231-1/+2
|
* tests: Added a unit test for SHA256 digest generationSteve Holme2020-02-221-3/+5
| | | | | | Follow up to 2b5b37c. Closes #4968
* copyrights: fix copyright year rangeDaniel Stenberg2019-11-081-1/+1
| | | | | | | | .. because checksrc's copyright year check stopped working. Ref: https://github.com/curl/curl/pull/4547 Closes https://github.com/curl/curl/pull/4549
* auth: add support for RFC7616 - HTTP Digest access authenticationFlorin2017-10-281-0/+32
Signed-off-by: Florin <petriuc.florin@gmail.com>