aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/md4.h
Commit message (Collapse)AuthorAgeFilesLines
* [crypto] Simplify internal HMAC APIMichael Brown2022-10-101-0/+3
| | | | | | | | | | | | Simplify the internal HMAC API so that the key is provided only at the point of calling hmac_init(), and the (potentially reduced) key is stored as part of the context for later use by hmac_final(). This simplifies the calling code, and avoids the need for callers such as TLS to allocate a potentially variable length block in order to retain a copy of the unmodified key. Signed-off-by: Michael Brown <mcb30@ipxe.org>
* [crypto] Add MD4 message digest algorithmMichael Brown2017-11-121-0/+73
Signed-off-by: Michael Brown <mcb30@ipxe.org>