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