diff options
| author | Eric Biggers <ebiggers@kernel.org> | 2025-08-14 19:17:33 -0700 |
|---|---|---|
| committer | Mimi Zohar <zohar@linux.ibm.com> | 2025-10-03 07:50:56 -0400 |
| commit | 191cac349c8eeeb6d64453b8db194d3ad42ca9dc (patch) | |
| tree | 6fd90c2dcdbece325d8a1bbfb62087de0c7cbd46 /lib/Kconfig | |
| parent | 1376956c5e9e7871978153a483904dc3238e96fb (diff) | |
lib/digsig: Use SHA-1 library instead of crypto_shash
Now that a SHA-1 library API is available, use it instead of
crypto_shash. This is simpler and faster.
Signed-off-by: Eric Biggers <ebiggers@kernel.org>
Reviewed-by: Paul Menzel <pmenzel@molgen.mpg.de>
Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
Diffstat (limited to 'lib/Kconfig')
| -rw-r--r-- | lib/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index c483951b624f..e629449dd2a3 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -477,8 +477,7 @@ config MPILIB config SIGNATURE tristate depends on KEYS - select CRYPTO - select CRYPTO_SHA1 + select CRYPTO_LIB_SHA1 select MPILIB help Digital signature verification. Currently only RSA is supported. |
