diff options
author | AKASHI Takahiro | 2019-11-13 09:45:00 +0900 |
---|---|---|
committer | Tom Rini | 2019-12-06 16:44:20 -0500 |
commit | b4adf627d5b7bdff649d3b852eab97d6f9191111 (patch) | |
tree | b945bac17c3207bdcd6ab41cc04b39c927b3c30e /lib/crypto/Kconfig | |
parent | 9b933bf6f4fa4db2f8ab94d3b977b7fefa2644dd (diff) |
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/crypto/Kconfig')
-rw-r--r-- | lib/crypto/Kconfig | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/crypto/Kconfig b/lib/crypto/Kconfig index 9572ea8c87f..aeb599c593a 100644 --- a/lib/crypto/Kconfig +++ b/lib/crypto/Kconfig @@ -27,4 +27,16 @@ config RSA_PUBLIC_KEY_PARSER public key data and provides the ability to instantiate a public key. +config X509_CERTIFICATE_PARSER + bool "X.509 certificate parser" + depends on ASYMMETRIC_PUBLIC_KEY_SUBTYPE + select ASN1_DECODER + select ASN1_COMPILER + select OID_REGISTRY + select LIB_DATE + help + This option provides support for parsing X.509 format blobs for key + data and provides the ability to instantiate a crypto key from a + public key packet found inside the certificate. + endif # ASYMMETRIC_KEY_TYPE |