]> Git Repo - u-boot.git/blame - lib/rsa/Kconfig
image: fdt: copy possible optee nodes to a loaded devicetree
[u-boot.git] / lib / rsa / Kconfig
CommitLineData
d9f23c7f
RG
1config RSA
2 bool "Use RSA Library"
f4e9ff71 3 select RSA_FREESCALE_EXP if FSL_CAAM && !ARCH_MX7 && !ARCH_MX6 && !ARCH_MX5
d9f23c7f
RG
4 select RSA_SOFTWARE_EXP if !RSA_FREESCALE_EXP
5 help
6 RSA support. This enables the RSA algorithm used for FIT image
7 verification in U-Boot.
8 See doc/uImage.FIT/signature.txt for more details.
73223f0e
SG
9 The Modular Exponentiation algorithm in RSA is implemented using
10 driver model. So CONFIG_DM needs to be enabled by default for this
11 library to function.
12 The signing part is build into mkimage regardless of this
13 option. The software based modular exponentiation is built into
14 mkimage irrespective of this option.
d9f23c7f 15
39883af3
ER
16if RSA
17
51c14cd1
TR
18config SPL_RSA
19 bool "Use RSA Library within SPL"
51c14cd1 20
d9f23c7f
RG
21config RSA_SOFTWARE_EXP
22 bool "Enable driver for RSA Modular Exponentiation in software"
39883af3 23 depends on DM
d9f23c7f
RG
24 help
25 Enables driver for modular exponentiation in software. This is a RSA
26 algorithm used in FIT image verification. It required RSA Key as
27 input.
28 See doc/uImage.FIT/signature.txt for more details.
29
30config RSA_FREESCALE_EXP
31 bool "Enable RSA Modular Exponentiation with FSL crypto accelerator"
39883af3 32 depends on DM && FSL_CAAM && !ARCH_MX7 && !ARCH_MX6 && !ARCH_MX5
d9f23c7f
RG
33 help
34 Enables driver for RSA modular exponentiation using Freescale cryptographic
35 accelerator - CAAM.
36
37endif
This page took 0.16963 seconds and 4 git commands to generate.