]> git.dujemihanovic.xyz Git - u-boot.git/commit
mbedtls: add digest shim layer for MbedTLS
authorRaymond Mao <raymond.mao@linaro.org>
Thu, 3 Oct 2024 21:50:19 +0000 (14:50 -0700)
committerTom Rini <trini@konsulko.com>
Mon, 14 Oct 2024 23:58:31 +0000 (17:58 -0600)
commitbdc3f44a6bf4de61d99c818b3e8e71b07a9eea52
treeeea6e753771c0f31203026663bc22b5fe4d514cb
parent988e749d9770bad0a8d8fbf45bfa8af3ca88da38
mbedtls: add digest shim layer for MbedTLS

Implement digest shim layer on top of MbedTLS crypto library.
Introduce <alg>_MBEDTLS kconfig for MbedTLS crypto implementations.

Signed-off-by: Raymond Mao <raymond.mao@linaro.org>
include/u-boot/sha1.h
lib/mbedtls/Kconfig
lib/mbedtls/Makefile
lib/mbedtls/md5.c [new file with mode: 0644]
lib/mbedtls/sha1.c [new file with mode: 0644]
lib/mbedtls/sha256.c [new file with mode: 0644]
lib/mbedtls/sha512.c [new file with mode: 0644]