261-lib-arc4-unhide.patch 778 B

12345678910111213141516171819202122232425262728
  1. From 241e5d3f7b0dd3c01f8c7fa83cbc9a3882286d53 Mon Sep 17 00:00:00 2001
  2. From: OpenWrt community <[email protected]>
  3. Date: Wed, 13 Jul 2022 13:35:18 +0200
  4. Subject: [PATCH] lib/crypto: add tristate string for ARC4
  5. This makes it possible to select CONFIG_CRYPTO_LIB_ARC4 directly. We
  6. need this to be able to compile this into the kernel and make use of it
  7. from backports.
  8. ---
  9. lib/crypto/Kconfig | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. diff --git a/lib/crypto/Kconfig b/lib/crypto/Kconfig
  12. index 5056663c2aff..8a4d4e5bcd7a 100644
  13. --- a/lib/crypto/Kconfig
  14. +++ b/lib/crypto/Kconfig
  15. @@ -6,7 +6,7 @@ config CRYPTO_LIB_AES
  16. tristate
  17. config CRYPTO_LIB_ARC4
  18. - tristate
  19. + tristate "ARC4 cipher library"
  20. config CRYPTO_ARCH_HAVE_LIB_BLAKE2S
  21. bool
  22. --