summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2022-02-09 10:59:24 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2022-02-10 16:39:38 +0100
commit03fb5524b0649bc0585ace68e8e2cdca3e9dd577 (patch)
treea4300847a6358e7a719cdf5f96c1014ef5b0f81e /crypto
parent8a0e10335078e0ff10809893c073f3878a9376be (diff)
downloadbarebox-03fb5524b0649bc0585ace68e8e2cdca3e9dd577.tar.gz
barebox-03fb5524b0649bc0585ace68e8e2cdca3e9dd577.tar.xz
crypto: consistently name the algo digest symbols HAVE_DIGEST_...
The better naming prevents confusion (for me at least) because MACHINE_ID depends on a symbol that cannot be enabled manually. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Link: https://lore.barebox.org/20220209095924.x7p4wo47thxbeih5@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/Kconfig34
1 files changed, 17 insertions, 17 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index 3b68836b34..a2e03ae109 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -16,25 +16,25 @@ menuconfig DIGEST
if DIGEST
-config MD5
+config HAVE_DIGEST_MD5
bool
-config SHA1
+config HAVE_DIGEST_SHA1
bool
-config SHA224
+config HAVE_DIGEST_SHA224
bool
-config SHA256
+config HAVE_DIGEST_SHA256
bool
-config SHA384
+config HAVE_DIGEST_SHA384
bool
-config SHA512
+config HAVE_DIGEST_SHA512
bool
-config DIGEST_HMAC
+config HAVE_DIGEST_HMAC
bool
config DIGEST_CRC32_GENERIC
@@ -43,36 +43,36 @@ config DIGEST_CRC32_GENERIC
config DIGEST_MD5_GENERIC
bool "MD5"
- select MD5
+ select HAVE_DIGEST_MD5
config DIGEST_SHA1_GENERIC
bool "SHA1"
- select SHA1
+ select HAVE_DIGEST_SHA1
config DIGEST_SHA224_GENERIC
bool "SHA224"
- select SHA224
+ select HAVE_DIGEST_SHA224
config DIGEST_SHA256_GENERIC
bool "SHA256"
- select SHA256
+ select HAVE_DIGEST_SHA256
config DIGEST_SHA384_GENERIC
bool "SHA384"
- select SHA384
+ select HAVE_DIGEST_SHA384
config DIGEST_SHA512_GENERIC
bool "SHA512"
- select SHA512
+ select HAVE_DIGEST_SHA512
config DIGEST_HMAC_GENERIC
bool "HMAC"
- select DIGEST_HMAC
+ select HAVE_DIGEST_HMAC
config DIGEST_SHA1_ARM
tristate "SHA1 digest algorithm (ARM-asm)"
depends on ARM
- select SHA1
+ select HAVE_DIGEST_SHA1
help
SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
using optimized ARM assembler.
@@ -80,8 +80,8 @@ config DIGEST_SHA1_ARM
config DIGEST_SHA256_ARM
tristate "SHA-224/256 digest algorithm (ARM-asm and NEON)"
depends on ARM
- select SHA256
- select SHA224
+ select HAVE_DIGEST_SHA256
+ select HAVE_DIGEST_SHA224
help
SHA-256 secure hash standard (DFIPS 180-2) implemented
using optimized ARM assembler and NEON, when available.