Ruchika Gupta | 4acd8c4 | 2015-01-23 16:01:56 +0530 | [diff] [blame] | 1 | config RSA |
| 2 | bool "Use RSA Library" |
Ricardo Salveti | 20734f6 | 2021-08-28 10:41:22 +0300 | [diff] [blame] | 3 | select RSA_FREESCALE_EXP if FSL_CAAM && !ARCH_MX7 && !ARCH_MX7ULP && !ARCH_MX6 && !ARCH_MX5 |
Chia-Wei Wang | 88b3ecf | 2021-10-27 14:17:30 +0800 | [diff] [blame] | 4 | select RSA_ASPEED_EXP if ASPEED_ACRY |
| 5 | select RSA_SOFTWARE_EXP if !RSA_FREESCALE_EXP && !RSA_ASPEED_EXP |
Ruchika Gupta | 4acd8c4 | 2015-01-23 16:01:56 +0530 | [diff] [blame] | 6 | help |
| 7 | RSA support. This enables the RSA algorithm used for FIT image |
| 8 | verification in U-Boot. |
| 9 | See doc/uImage.FIT/signature.txt for more details. |
Simon Glass | e3ee2fb | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 10 | The Modular Exponentiation algorithm in RSA is implemented using |
| 11 | driver model. So CONFIG_DM needs to be enabled by default for this |
| 12 | library to function. |
| 13 | The signing part is build into mkimage regardless of this |
| 14 | option. The software based modular exponentiation is built into |
| 15 | mkimage irrespective of this option. |
Ruchika Gupta | 4acd8c4 | 2015-01-23 16:01:56 +0530 | [diff] [blame] | 16 | |
Eugeniu Rosca | dcf36e9 | 2018-04-21 14:00:10 +0200 | [diff] [blame] | 17 | if RSA |
| 18 | |
Teddy Reed | 5021e3c | 2016-06-09 19:18:44 -0700 | [diff] [blame] | 19 | config SPL_RSA |
| 20 | bool "Use RSA Library within SPL" |
Teddy Reed | 5021e3c | 2016-06-09 19:18:44 -0700 | [diff] [blame] | 21 | |
AKASHI Takahiro | 2223c7d | 2020-02-21 15:12:55 +0900 | [diff] [blame] | 22 | config SPL_RSA_VERIFY |
| 23 | bool |
Oleksandr Suvorov | 04ab0a2 | 2021-09-16 15:03:36 +0300 | [diff] [blame] | 24 | depends on SPL_RSA |
AKASHI Takahiro | 2223c7d | 2020-02-21 15:12:55 +0900 | [diff] [blame] | 25 | help |
| 26 | Add RSA signature verification support in SPL. |
| 27 | |
| 28 | config RSA_VERIFY |
| 29 | bool |
| 30 | help |
| 31 | Add RSA signature verification support. |
| 32 | |
AKASHI Takahiro | 1f14f81 | 2020-02-21 15:12:56 +0900 | [diff] [blame] | 33 | config RSA_VERIFY_WITH_PKEY |
| 34 | bool "Execute RSA verification without key parameters from FDT" |
| 35 | select RSA_VERIFY |
AKASHI Takahiro | d4aece1 | 2020-02-21 15:12:58 +0900 | [diff] [blame] | 36 | select ASYMMETRIC_KEY_TYPE |
| 37 | select ASYMMETRIC_PUBLIC_KEY_SUBTYPE |
| 38 | select RSA_PUBLIC_KEY_PARSER |
AKASHI Takahiro | 1f14f81 | 2020-02-21 15:12:56 +0900 | [diff] [blame] | 39 | help |
| 40 | The standard RSA-signature verification code (FIT_SIGNATURE) uses |
| 41 | pre-calculated key properties, that are stored in fdt blob, in |
| 42 | decrypting a signature. |
| 43 | This does not suit the use case where there is no way defined to |
| 44 | provide such additional key properties in standardized form, |
| 45 | particularly UEFI secure boot. |
| 46 | This options enables RSA signature verification with a public key |
| 47 | directly specified in image_sign_info, where all the necessary |
| 48 | key properties will be calculated on the fly in verification code. |
| 49 | |
Ruchika Gupta | 4acd8c4 | 2015-01-23 16:01:56 +0530 | [diff] [blame] | 50 | config RSA_SOFTWARE_EXP |
| 51 | bool "Enable driver for RSA Modular Exponentiation in software" |
Eugeniu Rosca | dcf36e9 | 2018-04-21 14:00:10 +0200 | [diff] [blame] | 52 | depends on DM |
Ruchika Gupta | 4acd8c4 | 2015-01-23 16:01:56 +0530 | [diff] [blame] | 53 | help |
| 54 | Enables driver for modular exponentiation in software. This is a RSA |
| 55 | algorithm used in FIT image verification. It required RSA Key as |
| 56 | input. |
| 57 | See doc/uImage.FIT/signature.txt for more details. |
| 58 | |
| 59 | config RSA_FREESCALE_EXP |
| 60 | bool "Enable RSA Modular Exponentiation with FSL crypto accelerator" |
Ricardo Salveti | 20734f6 | 2021-08-28 10:41:22 +0300 | [diff] [blame] | 61 | depends on DM && FSL_CAAM && !ARCH_MX7 && !ARCH_MX7ULP && !ARCH_MX6 && !ARCH_MX5 |
Ruchika Gupta | 4acd8c4 | 2015-01-23 16:01:56 +0530 | [diff] [blame] | 62 | help |
| 63 | Enables driver for RSA modular exponentiation using Freescale cryptographic |
| 64 | accelerator - CAAM. |
| 65 | |
Chia-Wei Wang | 88b3ecf | 2021-10-27 14:17:30 +0800 | [diff] [blame] | 66 | config RSA_ASPEED_EXP |
| 67 | bool "Enable RSA Modular Exponentiation with ASPEED crypto accelerator" |
| 68 | depends on DM && ASPEED_ACRY |
| 69 | help |
| 70 | Enables driver for RSA modular exponentiation using ASPEED cryptographic |
| 71 | accelerator - ACRY |
| 72 | |
Ruchika Gupta | 4acd8c4 | 2015-01-23 16:01:56 +0530 | [diff] [blame] | 73 | endif |