diff options
author | AKASHI Takahiro <takahiro.akashi@linaro.org> | 2019-11-13 09:45:00 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-06 16:44:20 -0500 |
commit | b4adf627d5b7bdff649d3b852eab97d6f9191111 (patch) | |
tree | b945bac17c3207bdcd6ab41cc04b39c927b3c30e /lib/Makefile | |
parent | 9b933bf6f4fa4db2f8ab94d3b977b7fefa2644dd (diff) | |
download | u-boot-b4adf627d5b7bdff649d3b852eab97d6f9191111.tar.gz |
lib: crypto: add x509 parser
Imported from linux kernel v5.3:
x509.asn1 without changes
x509_akid.asn1 without changes
x509_parser.h without changes
x509_cert_parser.c with changes marked as __UBOOT__
x509_public_key.c with changes marked as __UBOOT__
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
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 d5bf1951ff..1fb650cd90 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -18,6 +18,7 @@ obj-$(CONFIG_CMD_DHRYSTONE) += dhry/ obj-$(CONFIG_ARCH_AT91) += at91/ obj-$(CONFIG_OPTEE) += optee/ obj-$(CONFIG_ASN1_DECODER) += asn1_decoder.o +obj-y += crypto/ obj-$(CONFIG_AES) += aes.o |