<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/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>ffbb2ebd0c3a7ead6c9128bbbb62fc6d851779bb - hwrng: hisi-trng - Move hisi-trng into drivers/char/hw_random/</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#ffbb2ebd0c3a7ead6c9128bbbb62fc6d851779bb</link>
        <description>hwrng: hisi-trng - Move hisi-trng into drivers/char/hw_random/Since this file just implements a hwrng driver, move it intodrivers/char/hw_random/.  Rename the kconfig option accordingly as well.Note that this moves the file back to its original location.Signed-off-by: Eric Biggers &lt;ebiggers@kernel.org&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Sat, 30 May 2026 22:26:24 +0200</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>216a7795ec210bdabd5dad42323eee70bbfc8d90 - crypto: hisi-trng - Remove crypto_rng interface</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#216a7795ec210bdabd5dad42323eee70bbfc8d90</link>
        <description>crypto: hisi-trng - Remove crypto_rng interfacedrivers/crypto/hisilicon/trng/trng.c exposes the same hardware throughtwo completely separate interfaces, crypto_rng and hwrng.  However, theimplementation of this is buggy because it permits generation operationsfrom these interfaces to run concurrently with each other, accessing thesame registers.  That is, hisi_trng_generate() synchronizes with itselfbut not with hisi_trng_read().  This results in potential repetition ofoutput from the RNG, output of non-random values, etc.Fortunately, there&apos;s actually no point in hardware RNG driversimplementing the crypto_rng interface.  It&apos;s not actually used byanything besides the &quot;rng&quot; algorithm type of AF_ALG, which in turn isnot actually used in practice.  Other crypto_rng hardware drivers arelikewise being phased out, leaving just the hwrng support.Thus, remove it to simplify the code and avoid conflict (and confusion)with the hwrng interface which is the one that actually matters.Fixes: e4d9d10ef4be (&quot;crypto: hisilicon/trng - add support for PRNG&quot;)Cc: stable@vger.kernel.orgSigned-off-by: Eric Biggers &lt;ebiggers@kernel.org&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Sat, 30 May 2026 22:26:23 +0200</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>ea377793f41989e425498f50ec0c76c70567c1ae - crypto: hisilicon/zip - add lz4 algorithm for hisi_zip</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#ea377793f41989e425498f50ec0c76c70567c1ae</link>
        <description>crypto: hisilicon/zip - add lz4 algorithm for hisi_zipAdd the &quot;hisi-lz4-acomp&quot; algorithm by the crypto acomp. When the8th bit of the capability register is 1, the lz4 algorithm willregister to crypto acomp, and the window length is configured to16K by default.Since the &quot;hisi-lz4-acomp&quot; currently only support compressiondirection, decompression is completed by the soft lz4 algorithm.Signed-off-by: Chenghai Huang &lt;huangchenghai2@huawei.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Sat, 17 Jan 2026 03:34:35 +0100</pubDate>
        <dc:creator>Chenghai Huang &lt;huangchenghai2@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>73398f85a430cfebc2ff06ab836d6d9eb1484c79 - crypto: hisilicon/zip - support fallback for zip</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#73398f85a430cfebc2ff06ab836d6d9eb1484c79</link>
        <description>crypto: hisilicon/zip - support fallback for zipWhen the hardware queue resource busy(no shareable queue)or memery alloc fail in initialization of acomp_alg, usesoft algorithm to complete the work.Fixes: 1a9e6f59caee (&quot;crypto: hisilicon/zip - remove zlib and gzip&quot;)Signed-off-by: Chenghai Huang &lt;huangchenghai2@huawei.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Thu, 18 Dec 2025 14:44:50 +0100</pubDate>
        <dc:creator>Chenghai Huang &lt;huangchenghai2@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>ee289d3abef9f6fd4b6b4c3af1fb6e566ba94ebb - crypto: hisilicon/hpre - Remove unused curve25519 kpp support</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#ee289d3abef9f6fd4b6b4c3af1fb6e566ba94ebb</link>
        <description>crypto: hisilicon/hpre - Remove unused curve25519 kpp supportCurve25519 is used only via the library API, not the crypto_kpp API.  Inpreparation for removing the unused crypto_kpp API for Curve25519,remove the unused &quot;hpre-curve25519&quot; kpp algorithm.Cc: Longfang Liu &lt;liulongfang@huawei.com&gt;Cc: Zhiqi Song &lt;songzhiqi1@huawei.com&gt;Link: https://lore.kernel.org/r/20250906213523.84915-2-ebiggers@kernel.orgSigned-off-by: Eric Biggers &lt;ebiggers@kernel.org&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Sat, 06 Sep 2025 23:35:12 +0200</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>903e6ada01f305eb6c82a27f48bf1ea18eb38a99 - hwrng: histb - Move driver to drivers/char/hw_random/histb-rng.c</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#903e6ada01f305eb6c82a27f48bf1ea18eb38a99</link>
        <description>hwrng: histb - Move driver to drivers/char/hw_random/histb-rng.cMove to drivers/char/hw_random since histb-(t)rng does not providecryptography pseudo rng.histb-rng is pretty like hisi-rng, but after investigation, we confirmthere is no RNG_PHY_SEED register on histb-rng so a separate driver isneeded.Still we rename relevant function names to match those in hisi-rng.Link: https://lore.kernel.org/r/20230401164448.1393336-1-mmyangfl@gmail.comSigned-off-by: David Yang &lt;mmyangfl@gmail.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Fri, 21 Apr 2023 18:56:49 +0200</pubDate>
        <dc:creator>David Yang &lt;mmyangfl@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>a2216e1874715a8b4a6f4da2ddbe9277e5613c49 - crypto: hisilicon/trng - add support for HiSTB TRNG</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#a2216e1874715a8b4a6f4da2ddbe9277e5613c49</link>
        <description>crypto: hisilicon/trng - add support for HiSTB TRNGHiSTB TRNG are found on some HiSilicon STB SoCs.Signed-off-by: David Yang &lt;mmyangfl@gmail.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Sat, 01 Apr 2023 18:44:40 +0200</pubDate>
        <dc:creator>David Yang &lt;mmyangfl@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>00bef64ac3c95ab0f73b5d352743bf2bd6f5fc99 - crypto: hisilicon - remove redundant config PCI dependency for some CRYPTO_DEV_HISI configs</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#00bef64ac3c95ab0f73b5d352743bf2bd6f5fc99</link>
        <description>crypto: hisilicon - remove redundant config PCI dependency for some CRYPTO_DEV_HISI configsWhile reviewing dependencies in some Kconfig files, I noticed the redundantdependency &quot;depends on PCI &amp;&amp; PCI_MSI&quot;. The config PCI_MSI has always,since its introduction, been dependent on the config PCI. So, it issufficient to just depend on PCI_MSI, and know that the dependency on PCIis implicitly implied.Reduce the dependencies of configs CRYPTO_DEV_HISI_SEC2,CRYPTO_DEV_HISI_QM, CRYPTO_DEV_HISI_ZIP and CRYPTO_DEV_HISI_HPRE.No functional change and effective change of Kconfig dependendencies.Signed-off-by: Lukas Bulwahn &lt;lukas.bulwahn@gmail.com&gt;Acked-by: Weili Qian &lt;qianweili@huawei.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Wed, 11 Jan 2023 13:02:03 +0100</pubDate>
        <dc:creator>Lukas Bulwahn &lt;lukas.bulwahn@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>2ae6feb1a1f6678fe11864f1b6920ed10b09ad6a - crypto: ccree,hisilicon - Fix dependencies to correct algorithm</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#2ae6feb1a1f6678fe11864f1b6920ed10b09ad6a</link>
        <description>crypto: ccree,hisilicon - Fix dependencies to correct algorithmCommit d2825fa9365d (&quot;crypto: sm3,sm4 - move into crypto directory&quot;) movesthe SM3 and SM4 stand-alone library and the algorithm implementation forthe Crypto API into the same directory, and the corresponding relationshipof Kconfig is modified, CONFIG_CRYPTO_SM3/4 corresponds to the stand-alonelibrary of SM3/4, and CONFIG_CRYPTO_SM3/4_GENERIC corresponds to thealgorithm implementation for the Crypto API. Therefore, it is necessaryfor this module to depend on the correct algorithm.Fixes: d2825fa9365d (&quot;crypto: sm3,sm4 - move into crypto directory&quot;)Cc: Jason A. Donenfeld &lt;Jason@zx2c4.com&gt;Cc: stable@vger.kernel.org # v5.19+Signed-off-by: Tianjia Zhang &lt;tianjia.zhang@linux.alibaba.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Fri, 25 Nov 2022 13:18:11 +0100</pubDate>
        <dc:creator>Tianjia Zhang &lt;tianjia.zhang@linux.alibaba.com&gt;</dc:creator>
    </item>
<item>
        <title>fdbf5e46e7af5b13ee9df35f2ea62484591c4341 - crypto: hisilicon/sec - add sm4 generic selection</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#fdbf5e46e7af5b13ee9df35f2ea62484591c4341</link>
        <description>crypto: hisilicon/sec - add sm4 generic selectionAdd sm4 generic selection for fallback tfm in the Kconfig.Signed-off-by: Kai Ye &lt;yekai13@huawei.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Tue, 26 Apr 2022 13:53:58 +0200</pubDate>
        <dc:creator>Kai Ye &lt;yekai13@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>7d15697983c720c4405ce47b30520d0c7dd47487 - crypto: hisilicon/hpre - fix Kconfig</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#7d15697983c720c4405ce47b30520d0c7dd47487</link>
        <description>crypto: hisilicon/hpre - fix Kconfighpre select &apos;CRYPTO_ECDH&apos; and &apos;CRYPTO_CURVE25519&apos;.Signed-off-by: Hui Tang &lt;tanghui20@huawei.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Fri, 19 Mar 2021 11:45:39 +0100</pubDate>
        <dc:creator>Hui Tang &lt;tanghui20@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>90274769cf7926a7a14f1cd3f47b66de76e0adb4 - crypto: hisilicon/hpre - add &apos;CURVE25519&apos; algorithm</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#90274769cf7926a7a14f1cd3f47b66de76e0adb4</link>
        <description>crypto: hisilicon/hpre - add &apos;CURVE25519&apos; algorithmEnable &apos;CURVE25519&apos; algorithm in Kunpeng 930.Signed-off-by: Meng Yu &lt;yumeng18@huawei.com&gt;Reviewed-by: Zaibo Xu &lt;xuzaibo@huawei.com&gt;Reported-by: kernel test robot &lt;lkp@intel.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Thu, 04 Mar 2021 07:35:50 +0100</pubDate>
        <dc:creator>Meng Yu &lt;yumeng18@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>e4d9d10ef4be0366316b3114593e4becf5b98a49 - crypto: hisilicon/trng - add support for PRNG</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#e4d9d10ef4be0366316b3114593e4becf5b98a49</link>
        <description>crypto: hisilicon/trng - add support for PRNGThis patch adds support for pseudo random number generator(PRNG)in Crypto subsystem.Signed-off-by: Weili Qian &lt;qianweili@huawei.com&gt;Reviewed-by: Zaibo Xu &lt;xuzaibo@huawei.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Fri, 20 Nov 2020 10:02:33 +0100</pubDate>
        <dc:creator>Weili Qian &lt;qianweili@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>56c6da16c3631f953fb20d8b7ddccdf493377ad4 - crypto: hisilicon/trng - add HiSilicon TRNG driver support</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#56c6da16c3631f953fb20d8b7ddccdf493377ad4</link>
        <description>crypto: hisilicon/trng - add HiSilicon TRNG driver supportMove existing char/hw_random/hisi-trng-v2.c to crypto/hisilicon/trng.c.Signed-off-by: Weili Qian &lt;qianweili@huawei.com&gt;Reviewed-by: Zaibo Xu &lt;xuzaibo@huawei.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Fri, 20 Nov 2020 10:02:32 +0100</pubDate>
        <dc:creator>Weili Qian &lt;qianweili@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>c73d1871503713c7ee37da9fde155322dc50280f - crypto: hisilicon/qm - add more ACPI dependencies</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#c73d1871503713c7ee37da9fde155322dc50280f</link>
        <description>crypto: hisilicon/qm - add more ACPI dependenciesdue to the selects of CRYPTO_DEV_HISI_QM which now depends on ACPIFixes: 6c6dd5802c2d (&quot;crypto: hisilicon/qm - add controller reset...&quot;)Signed-off-by: Stephen Rothwell &lt;sfr@canb.auug.org.au&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Tue, 21 Apr 2020 06:56:49 +0200</pubDate>
        <dc:creator>Stephen Rothwell &lt;sfr@canb.auug.org.au&gt;</dc:creator>
    </item>
<item>
        <title>f88480e300ac13141aa84f0f70b745df2e11b203 - crypto: hisilicon/qm - fix build failure with ACPI off</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#f88480e300ac13141aa84f0f70b745df2e11b203</link>
        <description>crypto: hisilicon/qm - fix build failure with ACPI offAdd Kconfig dependency to fix kbuild warnings.Fixes: 6c6dd5802c2d (&quot;crypto: hisilicon/qm - add controller reset interface&quot;)Reported-by: kbuild test robot &lt;lkp@intel.com&gt;Reported-by: Stephen Rothwell &lt;sfr@canb.auug.org.au&gt;Signed-off-by: Shukun Tan &lt;tanshukun1@huawei.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Fri, 17 Apr 2020 09:08:31 +0200</pubDate>
        <dc:creator>Shukun Tan &lt;tanshukun1@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>b5f13031cd8da1b8f1e277d03a773dc46f7cff11 - crypto: hisilicon - Fix build error</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#b5f13031cd8da1b8f1e277d03a773dc46f7cff11</link>
        <description>crypto: hisilicon - Fix build errorWhen UACCE is m, CRYPTO_DEV_HISI_QM cannot be built-in.But CRYPTO_DEV_HISI_QM is selected by CRYPTO_DEV_HISI_SEC2and CRYPTO_DEV_HISI_HPRE unconditionally, which may leads this:drivers/crypto/hisilicon/qm.o: In function &apos;qm_alloc_uacce&apos;:drivers/crypto/hisilicon/qm.c:1579: undefined reference to &apos;uacce_alloc&apos;Add Kconfig dependency to enforce usable configurations.Fixes: 47c16b449921 (&quot;crypto: hisilicon - qm depends on UACCE&quot;)Signed-off-by: YueHaibing &lt;yuehaibing@huawei.com&gt;Reviewed-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Mon, 30 Mar 2020 10:36:43 +0200</pubDate>
        <dc:creator>YueHaibing &lt;yuehaibing@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>47c16b4499213b8173ad3c033a41d850c6fa0e7c - crypto: hisilicon - qm depends on UACCE</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#47c16b4499213b8173ad3c033a41d850c6fa0e7c</link>
        <description>crypto: hisilicon - qm depends on UACCEIf UACCE=m and CRYPTO_DEV_HISI_QM=y, the following erroris seen while building qm.o:drivers/crypto/hisilicon/qm.o: In function `hisi_qm_init&apos;:(.text+0x23c6): undefined reference to `uacce_alloc&apos;(.text+0x2474): undefined reference to `uacce_remove&apos;(.text+0x286b): undefined reference to `uacce_remove&apos;drivers/crypto/hisilicon/qm.o: In function `hisi_qm_uninit&apos;:(.text+0x2918): undefined reference to `uacce_remove&apos;make[1]: *** [vmlinux] Error 1make: *** [autoksyms_recursive] Error 2This patch fixes the config dependency for QM and ZIP.reported-by: Hulk Robot &lt;hulkci@huawei.com&gt;Suggested-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;Signed-off-by: Hongbo Yao &lt;yaohongbo@huawei.com&gt;Signed-off-by: Zhou Wang &lt;wangzhou1@hisilicon.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Thu, 27 Feb 2020 08:12:28 +0100</pubDate>
        <dc:creator>Hongbo Yao &lt;yaohongbo@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>2f072d75d1ab32e9c7c43a54398f4360a0a42d5e - crypto: hisilicon - Add aead support on SEC2</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#2f072d75d1ab32e9c7c43a54398f4360a0a42d5e</link>
        <description>crypto: hisilicon - Add aead support on SEC2authenc(hmac(sha1),cbc(aes)), authenc(hmac(sha256),cbc(aes)), andauthenc(hmac(sha512),cbc(aes)) support are added for SEC v2.Signed-off-by: Zaibo Xu &lt;xuzaibo@huawei.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Sat, 11 Jan 2020 03:41:56 +0100</pubDate>
        <dc:creator>Zaibo Xu &lt;xuzaibo@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>8e8c778d9ed4fdc5a9af108c7023bfb640a673f2 - crypto: hisilicon - select CRYPTO_SKCIPHER, not CRYPTO_BLKCIPHER</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/crypto/hisilicon/Kconfig#8e8c778d9ed4fdc5a9af108c7023bfb640a673f2</link>
        <description>crypto: hisilicon - select CRYPTO_SKCIPHER, not CRYPTO_BLKCIPHERAnother instance of CRYPTO_BLKCIPHER made it in just after it wasrenamed to CRYPTO_SKCIPHER.  Fix it.Fixes: 416d82204df4 (&quot;crypto: hisilicon - add HiSilicon SEC V2 driver&quot;)Signed-off-by: Eric Biggers &lt;ebiggers@google.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux/drivers/crypto/hisilicon/Kconfig</description>
        <pubDate>Fri, 29 Nov 2019 19:15:56 +0100</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@google.com&gt;</dc:creator>
    </item>
</channel>
</rss>
