<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>17ec3e71 - crypto: lib/Kconfig - Hide arch options from user</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#17ec3e71</link>
        <description>crypto: lib/Kconfig - Hide arch options from userThe ARCH_MAY_HAVE patch missed arm64, mips and s390.  But it mayalso lead to arch options being enabled but ineffective becauseof modular/built-in conflicts.As the primary user of all these options wireguard is selectingthe arch options anyway, make the same selections at the lib/cryptooption level and hide the arch options from the user.Instead of selecting them centrally from lib/crypto, simply setthe default of each arch option as suggested by Eric Biggers.Change the Crypto API generic algorithms to select the top-levellib/crypto options instead of the generic one as otherwise thereis no way to enable the arch options (Eric Biggers).  Introduce aset of INTERNAL options to work around dependency cycles on theCONFIG_CRYPTO symbol.Fixes: 1047e21aecdf (&quot;crypto: lib/Kconfig - Fix lib built-in failure when arch is modular&quot;)Reported-by: kernel test robot &lt;lkp@intel.com&gt;Reported-by: Arnd Bergmann &lt;arnd@kernel.org&gt;Closes: https://lore.kernel.org/oe-kbuild-all/202502232152.JC84YDLp-lkp@intel.com/Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Thu, 27 Feb 2025 07:48:39 +0000</pubDate>
        <dc:creator>Herbert Xu &lt;herbert@gondor.apana.org.au&gt;</dc:creator>
    </item>
<item>
        <title>1047e21a - crypto: lib/Kconfig - Fix lib built-in failure when arch is modular</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#1047e21a</link>
        <description>crypto: lib/Kconfig - Fix lib built-in failure when arch is modularThe HAVE_ARCH Kconfig options in lib/crypto try to solve themodular versus built-in problem, but it still fails when thethe LIB option (e.g., CRYPTO_LIB_CURVE25519) is selected externally.Fix this by introducing a level of indirection with ARCH_MAY_HAVEKconfig options, these then go on to select the ARCH_HAVE optionsif the ARCH Kconfig options matches that of the LIB option.Reported-by: kernel test robot &lt;lkp@intel.com&gt;Closes: https://lore.kernel.org/oe-kbuild-all/202501230223.ikroNDr1-lkp@intel.com/Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Wed, 12 Feb 2025 04:48:55 +0000</pubDate>
        <dc:creator>Herbert Xu &lt;herbert@gondor.apana.org.au&gt;</dc:creator>
    </item>
<item>
        <title>db1fda2d - powerpc/crc: delete obsolete crc-vpmsum_test.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#db1fda2d</link>
        <description>powerpc/crc: delete obsolete crc-vpmsum_test.cDelete crc-vpmsum_test.c, since its functionality is now covered by thenew crc_kunit.c as well as the crypto subsystem&apos;s fuzz tests.Reviewed-by: Ard Biesheuvel &lt;ardb@kernel.org&gt;Reviewed-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;Cc: Vinicius Peixoto &lt;vpeixoto@lkcamp.dev&gt;Link: https://lore.kernel.org/r/20241202012056.209768-12-ebiggers@kernel.orgSigned-off-by: Eric Biggers &lt;ebiggers@google.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Mon, 02 Dec 2024 01:20:55 +0000</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>7439cfed - powerpc/crc-t10dif: expose CRC-T10DIF function through lib</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#7439cfed</link>
        <description>powerpc/crc-t10dif: expose CRC-T10DIF function through libMove the powerpc CRC-T10DIF assembly code into the lib directory andwire it up to the library interface.  This allows it to be used withoutgoing through the crypto API.  It remains usable via the crypto API toovia the shash algorithms that use the library interface.  Thus all thearch-specific &quot;shash&quot; code becomes unnecessary and is removed.Note: to see the diff from arch/powerpc/crypto/crct10dif-vpmsum_glue.cto arch/powerpc/lib/crc-t10dif-glue.c, view this commit with&apos;git show -M10&apos;.Reviewed-by: Ard Biesheuvel &lt;ardb@kernel.org&gt;Reviewed-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;Link: https://lore.kernel.org/r/20241202012056.209768-8-ebiggers@kernel.orgSigned-off-by: Eric Biggers &lt;ebiggers@google.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Mon, 02 Dec 2024 01:20:51 +0000</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>372ff60a - powerpc/crc32: expose CRC32 functions through lib</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#372ff60a</link>
        <description>powerpc/crc32: expose CRC32 functions through libMove the powerpc CRC32C assembly code into the lib directory and wire itup to the library interface.  This allows it to be used without goingthrough the crypto API.  It remains usable via the crypto API too viathe shash algorithms that use the library interface.  Thus all thearch-specific &quot;shash&quot; code becomes unnecessary and is removed.Note: to see the diff from arch/powerpc/crypto/crc32c-vpmsum_glue.c toarch/powerpc/lib/crc32-glue.c, view this commit with &apos;git show -M10&apos;.Reviewed-by: Ard Biesheuvel &lt;ardb@kernel.org&gt;Acked-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://lore.kernel.org/r/20241202010844.144356-9-ebiggers@kernel.orgSigned-off-by: Eric Biggers &lt;ebiggers@google.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Mon, 02 Dec 2024 01:08:33 +0000</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>8b6c1e46 - crypto: powerpc/p10-aes-gcm - Add dependency on CRYPTO_SIMDand re-enable CRYPTO_AES_GCM_P10</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#8b6c1e46</link>
        <description>crypto: powerpc/p10-aes-gcm - Add dependency on CRYPTO_SIMDand re-enable CRYPTO_AES_GCM_P10Added CRYPTO_SIMD for CRYPTO_AES_GCM_P10.Fixes: 45a4672b9a6e (&quot;crypto: p10-aes-gcm - Update Kconfig and Makefile&quot;)Signed-off-by: Danny Tsen &lt;dtsen@linux.ibm.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Mon, 23 Sep 2024 13:30:40 +0000</pubDate>
        <dc:creator>Danny Tsen &lt;dtsen@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>44ac4625 - crypto: powerpc/p10-aes-gcm - Disable CRYPTO_AES_GCM_P10</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#44ac4625</link>
        <description>crypto: powerpc/p10-aes-gcm - Disable CRYPTO_AES_GCM_P10Data mismatch found when testing ipsec tunnel with AES/GCM crypto.Disabling CRYPTO_AES_GCM_P10 in Kconfig for this feature.Fixes: fd0e9b3e2ee6 (&quot;crypto: p10-aes-gcm - An accelerated AES/GCM stitched implementation&quot;)Fixes: cdcecfd9991f (&quot;crypto: p10-aes-gcm - Glue code for AES/GCM stitched implementation&quot;)Fixes: 45a4672b9a6e2 (&quot;crypto: p10-aes-gcm - Update Kconfig and Makefile&quot;)Signed-off-by: Danny Tsen &lt;dtsen@linux.ibm.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Thu, 19 Sep 2024 11:36:37 +0000</pubDate>
        <dc:creator>Danny Tsen &lt;dtsen@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>b42519db - crypto: ppc/curve25519 - Update Kconfig and Makefile for ppc64le</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#b42519db</link>
        <description>crypto: ppc/curve25519 - Update Kconfig and Makefile for ppc64leDefined CRYPTO_CURVE25519_PPC64 to support X25519 for ppc64le.Added new module curve25519-ppc64le for X25519.Signed-off-by: Danny Tsen &lt;dtsen@linux.ibm.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Thu, 16 May 2024 15:19:57 +0000</pubDate>
        <dc:creator>Danny Tsen &lt;dtsen@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>10930333 - crypto: vmx - Move to arch/powerpc/crypto</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#10930333</link>
        <description>crypto: vmx - Move to arch/powerpc/cryptoRelocate all crypto files in vmx driver to arch/powerpc/crypto directoryand remove vmx directory.drivers/crypto/vmx/aes.c rename to arch/powerpc/crypto/aes.cdrivers/crypto/vmx/aes_cbc.c rename to arch/powerpc/crypto/aes_cbc.cdrivers/crypto/vmx/aes_ctr.c rename to arch/powerpc/crypto/aes_ctr.cdrivers/crypto/vmx/aes_xts.c rename to arch/powerpc/crypto/aes_xts.cdrivers/crypto/vmx/aesp8-ppc.h rename to arch/powerpc/crypto/aesp8-ppc.hdrivers/crypto/vmx/aesp8-ppc.pl rename to arch/powerpc/crypto/aesp8-ppc.pldrivers/crypto/vmx/ghash.c rename to arch/powerpc/crypto/ghash.cdrivers/crypto/vmx/ghashp8-ppc.pl rename to arch/powerpc/crypto/ghashp8-ppc.pldrivers/crypto/vmx/vmx.c rename to arch/powerpc/crypto/vmx.cdeleted files:drivers/crypto/vmx/Makefiledrivers/crypto/vmx/Kconfigdrivers/crypto/vmx/ppc-xlate.plThis patch has been tested has passed the selftest.  The patch is also tested withCONFIG_CRYPTO_MANAGER_EXTRA_TESTS enabled.Signed-off-by: Danny Tsen &lt;dtsen@linux.ibm.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Tue, 02 Jan 2024 20:58:56 +0000</pubDate>
        <dc:creator>Danny Tsen &lt;dtsen@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>ba22e818 - crypto: powerpc/chacha20,poly1305-p10 - Add dependency on VSX</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#ba22e818</link>
        <description>crypto: powerpc/chacha20,poly1305-p10 - Add dependency on VSXAdd dependency on VSX as otherwise the build will fail withoutit.Fixes: 161fca7e3e90 (&quot;crypto: powerpc - Add chacha20/poly1305-p10 to Kconfig and Makefile&quot;)Reported-by: kernel test robot &lt;lkp@intel.com&gt;Closes: https://lore.kernel.org/oe-kbuild-all/202308251906.SYawej6g-lkp@intel.com/Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;Acked-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt; (powerpc)Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Mon, 28 Aug 2023 09:07:42 +0000</pubDate>
        <dc:creator>Herbert Xu &lt;herbert@gondor.apana.org.au&gt;</dc:creator>
    </item>
<item>
        <title>026fa6c5 - powerpc/crypto: don&apos;t build aes-gcm-p10 by default</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#026fa6c5</link>
        <description>powerpc/crypto: don&apos;t build aes-gcm-p10 by defaultNone of the other accelerated crypto modules are built by default.Signed-off-by: Omar Sandoval &lt;osandov@fb.com&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://msgid.link/40d9c7ebe82c9a9d4ace542ac433753d2f22c6a0.1689007370.git.osandov@osandov.com

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Mon, 10 Jul 2023 16:46:47 +0000</pubDate>
        <dc:creator>Omar Sandoval &lt;osandov@fb.com&gt;</dc:creator>
    </item>
<item>
        <title>9d6e1c21 - powerpc/crypto: fix missing skcipher dependency for aes-gcm-p10</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#9d6e1c21</link>
        <description>powerpc/crypto: fix missing skcipher dependency for aes-gcm-p10My stripped down configuration fails to build with:  ERROR: modpost: &quot;skcipher_walk_aead_encrypt&quot; [arch/powerpc/crypto/aes-gcm-p10-crypto.ko] undefined!  ERROR: modpost: &quot;skcipher_walk_done&quot; [arch/powerpc/crypto/aes-gcm-p10-crypto.ko] undefined!  ERROR: modpost: &quot;skcipher_walk_aead_decrypt&quot; [arch/powerpc/crypto/aes-gcm-p10-crypto.ko] undefined!Fix it by selecting CRYPTO_SKCIPHER.Signed-off-by: Omar Sandoval &lt;osandov@fb.com&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://msgid.link/c55ad70799e027a3d2756b85ccadc0af52ae8915.1689007370.git.osandov@osandov.com

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Mon, 10 Jul 2023 16:46:46 +0000</pubDate>
        <dc:creator>Omar Sandoval &lt;osandov@fb.com&gt;</dc:creator>
    </item>
<item>
        <title>161fca7e - crypto: powerpc - Add chacha20/poly1305-p10 to Kconfig and Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#161fca7e</link>
        <description>crypto: powerpc - Add chacha20/poly1305-p10 to Kconfig and MakefileDefined CRYPTO_CHACHA20_P10 and CRYPTO POLY1305_P10 in Kconfig tosupport optimized implementation for Power10 and later CPU.Added new module driver chacha-p10-crypto and poly1305-p10-crypto.Signed-off-by: Danny Tsen &lt;dtsen@linux.ibm.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Wed, 26 Apr 2023 19:11:47 +0000</pubDate>
        <dc:creator>Danny Tsen &lt;dtsen@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>8133a3f0 - powerpc/crypto: Fix aes-gcm-p10 build when VSX=n</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#8133a3f0</link>
        <description>powerpc/crypto: Fix aes-gcm-p10 build when VSX=nWhen VSX is disabled, eg. microwatt_defconfig, the build fails with:  In function &#8216;enable_kernel_vsx&#8217;,      inlined from &#8216;vsx_begin&#8217; at arch/powerpc/crypto/aes-gcm-p10-glue.c:68:2,      inlined from &#8216;p10_aes_gcm_crypt.constprop&#8217; at arch/powerpc/crypto/aes-gcm-p10-glue.c:244:2:  ...  arch/powerpc/include/asm/switch_to.h:86:9: note: in expansion of macro &#8216;BUILD_BUG&#8217;     86 |         BUILD_BUG();        |         ^~~~~~~~~Fix it by making the p10-aes-gcm code depend on VSX.Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://msgid.link/20230515124731.122962-1-mpe%40ellerman.id.au

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Mon, 15 May 2023 12:40:08 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>9c716e1b - crypto: p10-aes-gcm - Remove POWER10_CPU dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#9c716e1b</link>
        <description>crypto: p10-aes-gcm - Remove POWER10_CPU dependencyRemove Power10 dependency in Kconfig and detect Power10 feature at runtime.Signed-off-by: Danny Tsen &lt;dtsen@linux.ibm.com&gt;Acked-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt; (powerpc)Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Thu, 13 Apr 2023 19:46:24 +0000</pubDate>
        <dc:creator>Danny Tsen &lt;dtsen@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>45a4672b - crypto: p10-aes-gcm - Update Kconfig and Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#45a4672b</link>
        <description>crypto: p10-aes-gcm - Update Kconfig and MakefileDefined CRYPTO_AES_GCM_P10 in Kconfig to support AES/GCMstitched implementation for Power10 or later CPU.Added a new module driver aes-gcm-p10-crypto.Signed-off-by: Danny Tsen &lt;dtsen@linux.ibm.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Tue, 21 Feb 2023 03:40:21 +0000</pubDate>
        <dc:creator>Danny Tsen &lt;dtsen@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>596f674d - crypto: p10-aes-gcm - Revert implementation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#596f674d</link>
        <description>crypto: p10-aes-gcm - Revert implementationRevert the changes that added p10-aes-gcm:	0781bbd7eaca (&quot;crypto: p10-aes-gcm - A perl script to process PowerPC assembler source&quot;)	41a6437ab415 (&quot;crypto: p10-aes-gcm - Supporting functions for ghash&quot;)	3b47eccaaff4 (&quot;crypto: p10-aes-gcm - Supporting functions for AES&quot;)	ca68a96c37eb (&quot;crypto: p10-aes-gcm - An accelerated AES/GCM stitched implementation&quot;)	cc40379b6e19 (&quot;crypto: p10-aes-gcm - Glue code for AES/GCM stitched implementation&quot;)	3c657e8689ab (&quot;crypto: p10-aes-gcm - Update Kconfig and Makefile&quot;)These changes fail to build in many configurations and are not readyfor prime time.Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Wed, 18 Jan 2023 09:07:19 +0000</pubDate>
        <dc:creator>Herbert Xu &lt;herbert@gondor.apana.org.au&gt;</dc:creator>
    </item>
<item>
        <title>3c657e86 - crypto: p10-aes-gcm - Update Kconfig and Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#3c657e86</link>
        <description>crypto: p10-aes-gcm - Update Kconfig and MakefileDefined CRYPTO_P10_AES_GCM in Kconfig to support AES/GCMstitched implementation for Power10+ CPU.Added a new module driver p10-aes-gcm-crypto.Signed-off-by: Danny Tsen &lt;dtsen@linux.ibm.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Mon, 05 Dec 2022 00:34:53 +0000</pubDate>
        <dc:creator>Danny Tsen &lt;dtsen@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>cf514b2a - crypto: Kconfig - simplify cipher entries</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#cf514b2a</link>
        <description>crypto: Kconfig - simplify cipher entriesShorten menu titles and make them consistent:- acronym- name- architecture features in parenthesis- no suffixes like &quot;&lt;something&gt; algorithm&quot;, &quot;support&quot;, or  &quot;hardware acceleration&quot;, or &quot;optimized&quot;Simplify help text descriptions, update references, and ensure thathttps references are still valid.Signed-off-by: Robert Elliott &lt;elliott@hpe.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Sat, 20 Aug 2022 18:41:50 +0000</pubDate>
        <dc:creator>Robert Elliott &lt;elliott@hpe.com&gt;</dc:creator>
    </item>
<item>
        <title>3f342a23 - crypto: Kconfig - simplify hash entries</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Kconfig#3f342a23</link>
        <description>crypto: Kconfig - simplify hash entriesShorten menu titles and make them consistent:- acronym- name- architecture features in parenthesis- no suffixes like &quot;&lt;something&gt; algorithm&quot;, &quot;support&quot;, or  &quot;hardware acceleration&quot;, or &quot;optimized&quot;Simplify help text descriptions, update references, and ensure thathttps references are still valid.Signed-off-by: Robert Elliott &lt;elliott@hpe.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Kconfig</description>
        <pubDate>Sat, 20 Aug 2022 18:41:48 +0000</pubDate>
        <dc:creator>Robert Elliott &lt;elliott@hpe.com&gt;</dc:creator>
    </item>
</channel>
</rss>
