summaryrefslogtreecommitdiff
path: root/src/lib/libssl/t1_hash.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Clean up and simplify the handshake transcript code.jsing2018-11-081-6/+81
| | | | | | | This provides a cleaner, simpler and more readable API, with code that uses a BUF_MEM instead of a BIO. ok beck@ ("hurry up") and tb@.
* Use the newer/more sensible names for EVP_MD_CTX_* functions.jsing2018-09-051-5/+5
| | | | | | | | | | EVP_MD_CTX_create -> EVP_MD_CTX_new EVP_MD_CTX_destroy -> EVP_MD_CTX_free This should make the intent more obvious and reduce head scratching during code reviews. Raised by tb@
* Add missing $OpenBSD$ tags.jsing2017-05-061-0/+1
|
* Provide a rolling handshake hash that commences as soon as the cipherjsing2017-03-051-0/+110
suite has been selected, and convert the final finish MAC to use this handshake hash. This is a first step towards cleaning up the current handshake buffer/digest code. ok beck@ inoguchi@