diff options
author | Alexandru Gagniuc | 2021-07-29 11:47:16 -0500 |
---|---|---|
committer | Patrice Chotard | 2021-08-16 10:49:35 +0200 |
commit | 928a8be79480b0e2ea2461a7b2533d3e71bcb3e6 (patch) | |
tree | 2c60bd2e21dad4826ee8afc93cb10644ea9943d5 /lib/Makefile | |
parent | 1d54af1392513c09927b97981356acadfa626d63 (diff) |
lib: ecdsa: Implement UCLASS_ECDSA verification on target
Implement the crypto_algo .verify() function for ecdsa256. Because
it backends on UCLASS_ECDSA, this change is focused on parsing the
keys from devicetree and passing this information to the specific
UCLASS driver.
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index 07c2ccd7cfd..8ba745faa08 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -60,6 +60,7 @@ endif obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi/ obj-$(CONFIG_$(SPL_)MD5) += md5.o +obj-$(CONFIG_ECDSA) += ecdsa/ obj-$(CONFIG_$(SPL_)RSA) += rsa/ obj-$(CONFIG_HASH) += hash-checksum.o obj-$(CONFIG_SHA1) += sha1.o |