Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | # |
Dan Williams | 685784a | 2007-07-09 11:56:42 -0700 | [diff] [blame] | 3 | # Generic algorithms support |
| 4 | # |
| 5 | config XOR_BLOCKS |
| 6 | tristate |
| 7 | |
| 8 | # |
Dan Williams | 9bc89cd | 2007-01-02 11:10:44 -0700 | [diff] [blame] | 9 | # async_tx api: hardware offloaded memory transfer/transform support |
| 10 | # |
| 11 | source "crypto/async_tx/Kconfig" |
| 12 | |
| 13 | # |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | # Cryptographic API Configuration |
| 15 | # |
Jan Engelhardt | 2e290f4 | 2007-05-18 15:11:01 +1000 | [diff] [blame] | 16 | menuconfig CRYPTO |
Sebastian Siewior | c3715cb9 | 2008-03-30 16:36:09 +0800 | [diff] [blame] | 17 | tristate "Cryptographic API" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | help |
| 19 | This option provides the core Cryptographic API. |
| 20 | |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 21 | if CRYPTO |
| 22 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 23 | comment "Crypto core or helper" |
| 24 | |
Neil Horman | ccb778e | 2008-08-05 14:13:08 +0800 | [diff] [blame] | 25 | config CRYPTO_FIPS |
| 26 | bool "FIPS 200 compliance" |
Herbert Xu | f2c89a1 | 2014-07-04 22:15:08 +0800 | [diff] [blame] | 27 | depends on (CRYPTO_ANSI_CPRNG || CRYPTO_DRBG) && !CRYPTO_MANAGER_DISABLE_TESTS |
Alec Ari | 1f69609 | 2016-10-04 19:34:30 -0300 | [diff] [blame] | 28 | depends on (MODULE_SIG || !MODULES) |
Neil Horman | ccb778e | 2008-08-05 14:13:08 +0800 | [diff] [blame] | 29 | help |
Geert Uytterhoeven | d99324c | 2019-03-20 11:41:03 +0100 | [diff] [blame] | 30 | This option enables the fips boot option which is |
| 31 | required if you want the system to operate in a FIPS 200 |
Neil Horman | ccb778e | 2008-08-05 14:13:08 +0800 | [diff] [blame] | 32 | certification. You should say no unless you know what |
Chuck Ebbert | e84c548 | 2010-09-03 19:17:49 +0800 | [diff] [blame] | 33 | this is. |
Neil Horman | ccb778e | 2008-08-05 14:13:08 +0800 | [diff] [blame] | 34 | |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 35 | config CRYPTO_ALGAPI |
| 36 | tristate |
Herbert Xu | 6a0fcbb | 2008-12-10 23:29:44 +1100 | [diff] [blame] | 37 | select CRYPTO_ALGAPI2 |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 38 | help |
| 39 | This option provides the API for cryptographic algorithms. |
| 40 | |
Herbert Xu | 6a0fcbb | 2008-12-10 23:29:44 +1100 | [diff] [blame] | 41 | config CRYPTO_ALGAPI2 |
| 42 | tristate |
| 43 | |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 44 | config CRYPTO_AEAD |
| 45 | tristate |
Herbert Xu | 6a0fcbb | 2008-12-10 23:29:44 +1100 | [diff] [blame] | 46 | select CRYPTO_AEAD2 |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 47 | select CRYPTO_ALGAPI |
| 48 | |
Herbert Xu | 6a0fcbb | 2008-12-10 23:29:44 +1100 | [diff] [blame] | 49 | config CRYPTO_AEAD2 |
| 50 | tristate |
| 51 | select CRYPTO_ALGAPI2 |
Herbert Xu | 149a397 | 2015-08-13 17:28:58 +0800 | [diff] [blame] | 52 | select CRYPTO_NULL2 |
| 53 | select CRYPTO_RNG2 |
Herbert Xu | 6a0fcbb | 2008-12-10 23:29:44 +1100 | [diff] [blame] | 54 | |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 55 | config CRYPTO_SKCIPHER |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 56 | tristate |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 57 | select CRYPTO_SKCIPHER2 |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 58 | select CRYPTO_ALGAPI |
Herbert Xu | 6a0fcbb | 2008-12-10 23:29:44 +1100 | [diff] [blame] | 59 | |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 60 | config CRYPTO_SKCIPHER2 |
Herbert Xu | 6a0fcbb | 2008-12-10 23:29:44 +1100 | [diff] [blame] | 61 | tristate |
| 62 | select CRYPTO_ALGAPI2 |
| 63 | select CRYPTO_RNG2 |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 64 | |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 65 | config CRYPTO_HASH |
| 66 | tristate |
Herbert Xu | 6a0fcbb | 2008-12-10 23:29:44 +1100 | [diff] [blame] | 67 | select CRYPTO_HASH2 |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 68 | select CRYPTO_ALGAPI |
| 69 | |
Herbert Xu | 6a0fcbb | 2008-12-10 23:29:44 +1100 | [diff] [blame] | 70 | config CRYPTO_HASH2 |
| 71 | tristate |
| 72 | select CRYPTO_ALGAPI2 |
| 73 | |
Neil Horman | 17f0f4a | 2008-08-14 22:15:52 +1000 | [diff] [blame] | 74 | config CRYPTO_RNG |
| 75 | tristate |
Herbert Xu | 6a0fcbb | 2008-12-10 23:29:44 +1100 | [diff] [blame] | 76 | select CRYPTO_RNG2 |
Neil Horman | 17f0f4a | 2008-08-14 22:15:52 +1000 | [diff] [blame] | 77 | select CRYPTO_ALGAPI |
| 78 | |
Herbert Xu | 6a0fcbb | 2008-12-10 23:29:44 +1100 | [diff] [blame] | 79 | config CRYPTO_RNG2 |
| 80 | tristate |
| 81 | select CRYPTO_ALGAPI2 |
| 82 | |
Herbert Xu | 401e423 | 2015-06-03 14:49:31 +0800 | [diff] [blame] | 83 | config CRYPTO_RNG_DEFAULT |
| 84 | tristate |
| 85 | select CRYPTO_DRBG_MENU |
| 86 | |
Tadeusz Struk | 3c339ab | 2015-06-16 10:30:55 -0700 | [diff] [blame] | 87 | config CRYPTO_AKCIPHER2 |
| 88 | tristate |
| 89 | select CRYPTO_ALGAPI2 |
| 90 | |
| 91 | config CRYPTO_AKCIPHER |
| 92 | tristate |
| 93 | select CRYPTO_AKCIPHER2 |
| 94 | select CRYPTO_ALGAPI |
| 95 | |
Salvatore Benedetto | 4e5f2c4 | 2016-06-22 17:49:13 +0100 | [diff] [blame] | 96 | config CRYPTO_KPP2 |
| 97 | tristate |
| 98 | select CRYPTO_ALGAPI2 |
| 99 | |
| 100 | config CRYPTO_KPP |
| 101 | tristate |
| 102 | select CRYPTO_ALGAPI |
| 103 | select CRYPTO_KPP2 |
| 104 | |
Giovanni Cabiddu | 2ebda74 | 2016-10-21 13:19:47 +0100 | [diff] [blame] | 105 | config CRYPTO_ACOMP2 |
| 106 | tristate |
| 107 | select CRYPTO_ALGAPI2 |
Bart Van Assche | 8cd579d | 2018-01-05 08:26:47 -0800 | [diff] [blame] | 108 | select SGL_ALLOC |
Giovanni Cabiddu | 2ebda74 | 2016-10-21 13:19:47 +0100 | [diff] [blame] | 109 | |
| 110 | config CRYPTO_ACOMP |
| 111 | tristate |
| 112 | select CRYPTO_ALGAPI |
| 113 | select CRYPTO_ACOMP2 |
| 114 | |
Herbert Xu | 2b8c19d | 2006-09-21 11:31:44 +1000 | [diff] [blame] | 115 | config CRYPTO_MANAGER |
| 116 | tristate "Cryptographic algorithm manager" |
Herbert Xu | 6a0fcbb | 2008-12-10 23:29:44 +1100 | [diff] [blame] | 117 | select CRYPTO_MANAGER2 |
Herbert Xu | 2b8c19d | 2006-09-21 11:31:44 +1000 | [diff] [blame] | 118 | help |
| 119 | Create default cryptographic template instantiations such as |
| 120 | cbc(aes). |
| 121 | |
Herbert Xu | 6a0fcbb | 2008-12-10 23:29:44 +1100 | [diff] [blame] | 122 | config CRYPTO_MANAGER2 |
| 123 | def_tristate CRYPTO_MANAGER || (CRYPTO_MANAGER!=n && CRYPTO_ALGAPI=y) |
| 124 | select CRYPTO_AEAD2 |
| 125 | select CRYPTO_HASH2 |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 126 | select CRYPTO_SKCIPHER2 |
Tadeusz Struk | 946cc46 | 2015-06-16 10:31:06 -0700 | [diff] [blame] | 127 | select CRYPTO_AKCIPHER2 |
Salvatore Benedetto | 4e5f2c4 | 2016-06-22 17:49:13 +0100 | [diff] [blame] | 128 | select CRYPTO_KPP2 |
Giovanni Cabiddu | 2ebda74 | 2016-10-21 13:19:47 +0100 | [diff] [blame] | 129 | select CRYPTO_ACOMP2 |
Herbert Xu | 6a0fcbb | 2008-12-10 23:29:44 +1100 | [diff] [blame] | 130 | |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 131 | config CRYPTO_USER |
| 132 | tristate "Userspace cryptographic algorithm configuration" |
Herbert Xu | 5db017a | 2011-11-01 12:12:43 +1100 | [diff] [blame] | 133 | depends on NET |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 134 | select CRYPTO_MANAGER |
| 135 | help |
Valdis.Kletnieks@vt.edu | d19978f | 2011-11-09 01:29:20 -0500 | [diff] [blame] | 136 | Userspace configuration for cryptographic instantiations such as |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 137 | cbc(aes). |
| 138 | |
Herbert Xu | 326a634 | 2010-08-06 09:40:28 +0800 | [diff] [blame] | 139 | config CRYPTO_MANAGER_DISABLE_TESTS |
| 140 | bool "Disable run-time self tests" |
Herbert Xu | 00ca28a | 2010-08-06 10:34:00 +0800 | [diff] [blame] | 141 | default y |
Alexander Shishkin | 0b767f9 | 2010-06-03 20:53:43 +1000 | [diff] [blame] | 142 | help |
Herbert Xu | 326a634 | 2010-08-06 09:40:28 +0800 | [diff] [blame] | 143 | Disable run-time self tests that normally take place at |
| 144 | algorithm registration. |
Alexander Shishkin | 0b767f9 | 2010-06-03 20:53:43 +1000 | [diff] [blame] | 145 | |
Eric Biggers | 5b2706a | 2019-01-31 23:51:44 -0800 | [diff] [blame] | 146 | config CRYPTO_MANAGER_EXTRA_TESTS |
| 147 | bool "Enable extra run-time crypto self tests" |
Jason A. Donenfeld | 6569e30 | 2020-11-02 14:48:15 +0100 | [diff] [blame] | 148 | depends on DEBUG_KERNEL && !CRYPTO_MANAGER_DISABLE_TESTS && CRYPTO_MANAGER |
Eric Biggers | 5b2706a | 2019-01-31 23:51:44 -0800 | [diff] [blame] | 149 | help |
| 150 | Enable extra run-time self tests of registered crypto algorithms, |
| 151 | including randomized fuzz tests. |
| 152 | |
| 153 | This is intended for developer use only, as these tests take much |
| 154 | longer to run than the normal self tests. |
| 155 | |
Rik Snel | c494e07 | 2006-11-29 18:59:44 +1100 | [diff] [blame] | 156 | config CRYPTO_GF128MUL |
Eric Biggers | e590e13 | 2019-05-20 09:53:43 -0700 | [diff] [blame] | 157 | tristate |
Rik Snel | c494e07 | 2006-11-29 18:59:44 +1100 | [diff] [blame] | 158 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 159 | config CRYPTO_NULL |
| 160 | tristate "Null algorithms" |
Herbert Xu | 149a397 | 2015-08-13 17:28:58 +0800 | [diff] [blame] | 161 | select CRYPTO_NULL2 |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 162 | help |
| 163 | These are 'Null' algorithms, used by IPsec, which do nothing. |
| 164 | |
Herbert Xu | 149a397 | 2015-08-13 17:28:58 +0800 | [diff] [blame] | 165 | config CRYPTO_NULL2 |
Herbert Xu | dd43c4e | 2015-08-17 20:39:40 +0800 | [diff] [blame] | 166 | tristate |
Herbert Xu | 149a397 | 2015-08-13 17:28:58 +0800 | [diff] [blame] | 167 | select CRYPTO_ALGAPI2 |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 168 | select CRYPTO_SKCIPHER2 |
Herbert Xu | 149a397 | 2015-08-13 17:28:58 +0800 | [diff] [blame] | 169 | select CRYPTO_HASH2 |
| 170 | |
Steffen Klassert | 5068c7a | 2010-01-07 15:57:19 +1100 | [diff] [blame] | 171 | config CRYPTO_PCRYPT |
Kees Cook | 3b4afaf | 2012-10-02 11:16:49 -0700 | [diff] [blame] | 172 | tristate "Parallel crypto engine" |
| 173 | depends on SMP |
Steffen Klassert | 5068c7a | 2010-01-07 15:57:19 +1100 | [diff] [blame] | 174 | select PADATA |
| 175 | select CRYPTO_MANAGER |
| 176 | select CRYPTO_AEAD |
| 177 | help |
| 178 | This converts an arbitrary crypto algorithm into a parallel |
| 179 | algorithm that executes in kernel threads. |
| 180 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 181 | config CRYPTO_CRYPTD |
| 182 | tristate "Software async crypto daemon" |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 183 | select CRYPTO_SKCIPHER |
Loc Ho | b8a2825 | 2008-05-14 21:23:00 +0800 | [diff] [blame] | 184 | select CRYPTO_HASH |
Herbert Xu | 4351840 | 2006-10-16 21:28:58 +1000 | [diff] [blame] | 185 | select CRYPTO_MANAGER |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 186 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 187 | This is a generic software asynchronous crypto daemon that |
| 188 | converts an arbitrary synchronous software crypto algorithm |
| 189 | into an asynchronous algorithm that executes in a kernel thread. |
| 190 | |
| 191 | config CRYPTO_AUTHENC |
| 192 | tristate "Authenc support" |
| 193 | select CRYPTO_AEAD |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 194 | select CRYPTO_SKCIPHER |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 195 | select CRYPTO_MANAGER |
| 196 | select CRYPTO_HASH |
Herbert Xu | e94c6a7 | 2015-08-04 21:23:14 +0800 | [diff] [blame] | 197 | select CRYPTO_NULL |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 198 | help |
| 199 | Authenc: Combined mode wrapper for IPsec. |
| 200 | This is required for IPSec. |
| 201 | |
| 202 | config CRYPTO_TEST |
| 203 | tristate "Testing module" |
Ard Biesheuvel | 00ea27f | 2020-11-20 12:04:32 +0100 | [diff] [blame] | 204 | depends on m || EXPERT |
Herbert Xu | da7f033 | 2008-07-31 17:08:25 +0800 | [diff] [blame] | 205 | select CRYPTO_MANAGER |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 206 | help |
| 207 | Quick & dirty crypto test module. |
| 208 | |
Herbert Xu | 266d051 | 2016-11-22 20:08:25 +0800 | [diff] [blame] | 209 | config CRYPTO_SIMD |
| 210 | tristate |
| 211 | select CRYPTO_CRYPTD |
| 212 | |
Baolin Wang | 735d37b | 2016-01-26 20:25:39 +0800 | [diff] [blame] | 213 | config CRYPTO_ENGINE |
| 214 | tristate |
| 215 | |
Vitaly Chikunov | 3d6228a | 2019-04-11 18:51:18 +0300 | [diff] [blame] | 216 | comment "Public-key cryptography" |
| 217 | |
| 218 | config CRYPTO_RSA |
| 219 | tristate "RSA algorithm" |
| 220 | select CRYPTO_AKCIPHER |
| 221 | select CRYPTO_MANAGER |
| 222 | select MPILIB |
| 223 | select ASN1 |
| 224 | help |
| 225 | Generic implementation of the RSA public key algorithm. |
| 226 | |
| 227 | config CRYPTO_DH |
| 228 | tristate "Diffie-Hellman algorithm" |
| 229 | select CRYPTO_KPP |
| 230 | select MPILIB |
| 231 | help |
| 232 | Generic implementation of the Diffie-Hellman algorithm. |
| 233 | |
Vitaly Chikunov | 4a2289d | 2019-04-11 18:51:19 +0300 | [diff] [blame] | 234 | config CRYPTO_ECC |
| 235 | tristate |
Arnd Bergmann | 38aa192 | 2021-09-20 12:05:35 +0200 | [diff] [blame] | 236 | select CRYPTO_RNG_DEFAULT |
Vitaly Chikunov | 4a2289d | 2019-04-11 18:51:19 +0300 | [diff] [blame] | 237 | |
Vitaly Chikunov | 3d6228a | 2019-04-11 18:51:18 +0300 | [diff] [blame] | 238 | config CRYPTO_ECDH |
| 239 | tristate "ECDH algorithm" |
Vitaly Chikunov | 4a2289d | 2019-04-11 18:51:19 +0300 | [diff] [blame] | 240 | select CRYPTO_ECC |
Vitaly Chikunov | 3d6228a | 2019-04-11 18:51:18 +0300 | [diff] [blame] | 241 | select CRYPTO_KPP |
Vitaly Chikunov | 3d6228a | 2019-04-11 18:51:18 +0300 | [diff] [blame] | 242 | help |
| 243 | Generic implementation of the ECDH algorithm |
| 244 | |
Stefan Berger | 4e66029 | 2021-03-16 17:07:32 -0400 | [diff] [blame] | 245 | config CRYPTO_ECDSA |
| 246 | tristate "ECDSA (NIST P192, P256 etc.) algorithm" |
| 247 | select CRYPTO_ECC |
| 248 | select CRYPTO_AKCIPHER |
| 249 | select ASN1 |
| 250 | help |
| 251 | Elliptic Curve Digital Signature Algorithm (NIST P192, P256 etc.) |
| 252 | is A NIST cryptographic standard algorithm. Only signature verification |
| 253 | is implemented. |
| 254 | |
Vitaly Chikunov | 0d7a786 | 2019-04-11 18:51:20 +0300 | [diff] [blame] | 255 | config CRYPTO_ECRDSA |
| 256 | tristate "EC-RDSA (GOST 34.10) algorithm" |
| 257 | select CRYPTO_ECC |
| 258 | select CRYPTO_AKCIPHER |
| 259 | select CRYPTO_STREEBOG |
Vitaly Chikunov | 1036633 | 2019-04-24 04:32:40 +0300 | [diff] [blame] | 260 | select OID_REGISTRY |
| 261 | select ASN1 |
Vitaly Chikunov | 0d7a786 | 2019-04-11 18:51:20 +0300 | [diff] [blame] | 262 | help |
| 263 | Elliptic Curve Russian Digital Signature Algorithm (GOST R 34.10-2012, |
| 264 | RFC 7091, ISO/IEC 14888-3:2018) is one of the Russian cryptographic |
| 265 | standard algorithms (called GOST algorithms). Only signature verification |
| 266 | is implemented. |
| 267 | |
Tianjia Zhang | ea7ecb6 | 2020-09-21 00:20:57 +0800 | [diff] [blame] | 268 | config CRYPTO_SM2 |
| 269 | tristate "SM2 algorithm" |
| 270 | select CRYPTO_SM3 |
| 271 | select CRYPTO_AKCIPHER |
| 272 | select CRYPTO_MANAGER |
| 273 | select MPILIB |
| 274 | select ASN1 |
| 275 | help |
| 276 | Generic implementation of the SM2 public key algorithm. It was |
| 277 | published by State Encryption Management Bureau, China. |
| 278 | as specified by OSCCA GM/T 0003.1-2012 -- 0003.5-2012. |
| 279 | |
| 280 | References: |
| 281 | https://tools.ietf.org/html/draft-shen-sm2-ecdsa-02 |
| 282 | http://www.oscca.gov.cn/sca/xxgk/2010-12/17/content_1002386.shtml |
| 283 | http://www.gmbz.org.cn/main/bzlb.html |
| 284 | |
Ard Biesheuvel | ee772cb | 2019-11-08 13:22:34 +0100 | [diff] [blame] | 285 | config CRYPTO_CURVE25519 |
| 286 | tristate "Curve25519 algorithm" |
| 287 | select CRYPTO_KPP |
| 288 | select CRYPTO_LIB_CURVE25519_GENERIC |
| 289 | |
Jason A. Donenfeld | bb611bd | 2019-11-08 13:22:36 +0100 | [diff] [blame] | 290 | config CRYPTO_CURVE25519_X86 |
| 291 | tristate "x86_64 accelerated Curve25519 scalar multiplication library" |
| 292 | depends on X86 && 64BIT |
| 293 | select CRYPTO_LIB_CURVE25519_GENERIC |
| 294 | select CRYPTO_ARCH_HAVE_LIB_CURVE25519 |
| 295 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 296 | comment "Authenticated Encryption with Associated Data" |
| 297 | |
| 298 | config CRYPTO_CCM |
| 299 | tristate "CCM support" |
| 300 | select CRYPTO_CTR |
Ard Biesheuvel | f15f05b | 2017-02-03 14:49:36 +0000 | [diff] [blame] | 301 | select CRYPTO_HASH |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 302 | select CRYPTO_AEAD |
Eric Biggers | c8a3315 | 2019-05-20 09:49:46 -0700 | [diff] [blame] | 303 | select CRYPTO_MANAGER |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 304 | help |
| 305 | Support for Counter with CBC MAC. Required for IPsec. |
| 306 | |
| 307 | config CRYPTO_GCM |
| 308 | tristate "GCM/GMAC support" |
| 309 | select CRYPTO_CTR |
| 310 | select CRYPTO_AEAD |
Huang Ying | 9382d97 | 2009-08-06 15:34:26 +1000 | [diff] [blame] | 311 | select CRYPTO_GHASH |
Jussi Kivilinna | 9489667d | 2013-04-07 16:43:41 +0300 | [diff] [blame] | 312 | select CRYPTO_NULL |
Eric Biggers | c8a3315 | 2019-05-20 09:49:46 -0700 | [diff] [blame] | 313 | select CRYPTO_MANAGER |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 314 | help |
| 315 | Support for Galois/Counter Mode (GCM) and Galois Message |
| 316 | Authentication Code (GMAC). Required for IPSec. |
| 317 | |
Martin Willi | 71ebc4d | 2015-06-01 13:44:00 +0200 | [diff] [blame] | 318 | config CRYPTO_CHACHA20POLY1305 |
| 319 | tristate "ChaCha20-Poly1305 AEAD support" |
| 320 | select CRYPTO_CHACHA20 |
| 321 | select CRYPTO_POLY1305 |
| 322 | select CRYPTO_AEAD |
Eric Biggers | c8a3315 | 2019-05-20 09:49:46 -0700 | [diff] [blame] | 323 | select CRYPTO_MANAGER |
Martin Willi | 71ebc4d | 2015-06-01 13:44:00 +0200 | [diff] [blame] | 324 | help |
| 325 | ChaCha20-Poly1305 AEAD support, RFC7539. |
| 326 | |
| 327 | Support for the AEAD wrapper using the ChaCha20 stream cipher combined |
| 328 | with the Poly1305 authenticator. It is defined in RFC7539 for use in |
| 329 | IETF protocols. |
| 330 | |
Ondrej Mosnacek | f606a88 | 2018-05-11 14:12:49 +0200 | [diff] [blame] | 331 | config CRYPTO_AEGIS128 |
| 332 | tristate "AEGIS-128 AEAD algorithm" |
| 333 | select CRYPTO_AEAD |
| 334 | select CRYPTO_AES # for AES S-box tables |
| 335 | help |
| 336 | Support for the AEGIS-128 dedicated AEAD algorithm. |
| 337 | |
Ard Biesheuvel | a439763 | 2019-08-12 01:59:11 +0300 | [diff] [blame] | 338 | config CRYPTO_AEGIS128_SIMD |
| 339 | bool "Support SIMD acceleration for AEGIS-128" |
| 340 | depends on CRYPTO_AEGIS128 && ((ARM || ARM64) && KERNEL_MODE_NEON) |
| 341 | default y |
| 342 | |
Ondrej Mosnacek | 1d373d4 | 2018-05-11 14:12:51 +0200 | [diff] [blame] | 343 | config CRYPTO_AEGIS128_AESNI_SSE2 |
| 344 | tristate "AEGIS-128 AEAD algorithm (x86_64 AESNI+SSE2 implementation)" |
| 345 | depends on X86 && 64BIT |
| 346 | select CRYPTO_AEAD |
Eric Biggers | de272ca | 2019-03-10 12:00:53 -0700 | [diff] [blame] | 347 | select CRYPTO_SIMD |
Ondrej Mosnacek | 1d373d4 | 2018-05-11 14:12:51 +0200 | [diff] [blame] | 348 | help |
Ondrej Mosnacek | 4e5180e | 2019-03-15 08:47:25 +0100 | [diff] [blame] | 349 | AESNI+SSE2 implementation of the AEGIS-128 dedicated AEAD algorithm. |
Ondrej Mosnacek | 1d373d4 | 2018-05-11 14:12:51 +0200 | [diff] [blame] | 350 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 351 | config CRYPTO_SEQIV |
| 352 | tristate "Sequence Number IV Generator" |
| 353 | select CRYPTO_AEAD |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 354 | select CRYPTO_SKCIPHER |
Herbert Xu | 856e3f40 | 2015-05-21 15:11:13 +0800 | [diff] [blame] | 355 | select CRYPTO_NULL |
Herbert Xu | 401e423 | 2015-06-03 14:49:31 +0800 | [diff] [blame] | 356 | select CRYPTO_RNG_DEFAULT |
Eric Biggers | c8a3315 | 2019-05-20 09:49:46 -0700 | [diff] [blame] | 357 | select CRYPTO_MANAGER |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 358 | help |
| 359 | This IV generator generates an IV based on a sequence number by |
| 360 | xoring it with a salt. This algorithm is mainly useful for CTR |
| 361 | |
Herbert Xu | a10f554 | 2015-05-21 15:11:15 +0800 | [diff] [blame] | 362 | config CRYPTO_ECHAINIV |
| 363 | tristate "Encrypted Chain IV Generator" |
| 364 | select CRYPTO_AEAD |
| 365 | select CRYPTO_NULL |
Herbert Xu | 401e423 | 2015-06-03 14:49:31 +0800 | [diff] [blame] | 366 | select CRYPTO_RNG_DEFAULT |
Eric Biggers | c8a3315 | 2019-05-20 09:49:46 -0700 | [diff] [blame] | 367 | select CRYPTO_MANAGER |
Herbert Xu | a10f554 | 2015-05-21 15:11:15 +0800 | [diff] [blame] | 368 | help |
| 369 | This IV generator generates an IV based on the encryption of |
| 370 | a sequence number xored with a salt. This is the default |
| 371 | algorithm for CBC. |
| 372 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 373 | comment "Block modes" |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 374 | |
| 375 | config CRYPTO_CBC |
| 376 | tristate "CBC support" |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 377 | select CRYPTO_SKCIPHER |
Herbert Xu | 4351840 | 2006-10-16 21:28:58 +1000 | [diff] [blame] | 378 | select CRYPTO_MANAGER |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 379 | help |
| 380 | CBC: Cipher Block Chaining mode |
| 381 | This block cipher algorithm is required for IPSec. |
| 382 | |
James Bottomley | a7d85e0 | 2018-03-01 14:36:17 -0800 | [diff] [blame] | 383 | config CRYPTO_CFB |
| 384 | tristate "CFB support" |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 385 | select CRYPTO_SKCIPHER |
James Bottomley | a7d85e0 | 2018-03-01 14:36:17 -0800 | [diff] [blame] | 386 | select CRYPTO_MANAGER |
| 387 | help |
| 388 | CFB: Cipher FeedBack mode |
| 389 | This block cipher algorithm is required for TPM2 Cryptography. |
| 390 | |
Joy Latten | 23e353c | 2007-10-23 08:50:32 +0800 | [diff] [blame] | 391 | config CRYPTO_CTR |
| 392 | tristate "CTR support" |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 393 | select CRYPTO_SKCIPHER |
Joy Latten | 23e353c | 2007-10-23 08:50:32 +0800 | [diff] [blame] | 394 | select CRYPTO_MANAGER |
Joy Latten | 23e353c | 2007-10-23 08:50:32 +0800 | [diff] [blame] | 395 | help |
| 396 | CTR: Counter mode |
| 397 | This block cipher algorithm is required for IPSec. |
| 398 | |
Kevin Coffman | 76cb952 | 2008-03-24 21:26:16 +0800 | [diff] [blame] | 399 | config CRYPTO_CTS |
| 400 | tristate "CTS support" |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 401 | select CRYPTO_SKCIPHER |
Eric Biggers | c8a3315 | 2019-05-20 09:49:46 -0700 | [diff] [blame] | 402 | select CRYPTO_MANAGER |
Kevin Coffman | 76cb952 | 2008-03-24 21:26:16 +0800 | [diff] [blame] | 403 | help |
| 404 | CTS: Cipher Text Stealing |
| 405 | This is the Cipher Text Stealing mode as described by |
Gilad Ben-Yossef | ecd6d5c | 2018-11-05 12:05:01 +0000 | [diff] [blame] | 406 | Section 8 of rfc2040 and referenced by rfc3962 |
| 407 | (rfc3962 includes errata information in its Appendix A) or |
| 408 | CBC-CS3 as defined by NIST in Sp800-38A addendum from Oct 2010. |
Kevin Coffman | 76cb952 | 2008-03-24 21:26:16 +0800 | [diff] [blame] | 409 | This mode is required for Kerberos gss mechanism support |
| 410 | for AES encryption. |
| 411 | |
Gilad Ben-Yossef | ecd6d5c | 2018-11-05 12:05:01 +0000 | [diff] [blame] | 412 | See: https://csrc.nist.gov/publications/detail/sp/800-38a/addendum/final |
| 413 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 414 | config CRYPTO_ECB |
| 415 | tristate "ECB support" |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 416 | select CRYPTO_SKCIPHER |
Herbert Xu | 124b53d | 2007-04-16 20:49:20 +1000 | [diff] [blame] | 417 | select CRYPTO_MANAGER |
| 418 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 419 | ECB: Electronic CodeBook mode |
| 420 | This is the simplest block cipher algorithm. It simply encrypts |
| 421 | the input block by block. |
Herbert Xu | 124b53d | 2007-04-16 20:49:20 +1000 | [diff] [blame] | 422 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 423 | config CRYPTO_LRW |
Jussi Kivilinna | 2470a2b | 2011-12-13 12:52:51 +0200 | [diff] [blame] | 424 | tristate "LRW support" |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 425 | select CRYPTO_SKCIPHER |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 426 | select CRYPTO_MANAGER |
| 427 | select CRYPTO_GF128MUL |
David Howells | 9083163 | 2006-12-16 12:13:14 +1100 | [diff] [blame] | 428 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 429 | LRW: Liskov Rivest Wagner, a tweakable, non malleable, non movable |
| 430 | narrow block cipher mode for dm-crypt. Use it with cipher |
| 431 | specification string aes-lrw-benbi, the key must be 256, 320 or 384. |
| 432 | The first 128, 192 or 256 bits in the key are used for AES and the |
| 433 | rest is used to tie each cipher block to its logical position. |
David Howells | 9083163 | 2006-12-16 12:13:14 +1100 | [diff] [blame] | 434 | |
Gilad Ben-Yossef | e497c51 | 2018-09-20 14:18:39 +0100 | [diff] [blame] | 435 | config CRYPTO_OFB |
| 436 | tristate "OFB support" |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 437 | select CRYPTO_SKCIPHER |
Gilad Ben-Yossef | e497c51 | 2018-09-20 14:18:39 +0100 | [diff] [blame] | 438 | select CRYPTO_MANAGER |
| 439 | help |
| 440 | OFB: the Output Feedback mode makes a block cipher into a synchronous |
| 441 | stream cipher. It generates keystream blocks, which are then XORed |
| 442 | with the plaintext blocks to get the ciphertext. Flipping a bit in the |
| 443 | ciphertext produces a flipped bit in the plaintext at the same |
| 444 | location. This property allows many error correcting codes to function |
| 445 | normally even when applied before encryption. |
| 446 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 447 | config CRYPTO_PCBC |
| 448 | tristate "PCBC support" |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 449 | select CRYPTO_SKCIPHER |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 450 | select CRYPTO_MANAGER |
| 451 | help |
| 452 | PCBC: Propagating Cipher Block Chaining mode |
| 453 | This block cipher algorithm is required for RxRPC. |
| 454 | |
| 455 | config CRYPTO_XTS |
Jussi Kivilinna | 5bcf8e6 | 2011-12-13 12:52:56 +0200 | [diff] [blame] | 456 | tristate "XTS support" |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 457 | select CRYPTO_SKCIPHER |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 458 | select CRYPTO_MANAGER |
Milan Broz | 12cb3a1 | 2017-02-23 08:38:26 +0100 | [diff] [blame] | 459 | select CRYPTO_ECB |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 460 | help |
| 461 | XTS: IEEE1619/D16 narrow block cipher use with aes-xts-plain, |
| 462 | key size 256, 384 or 512 bits. This implementation currently |
| 463 | can't handle a sectorsize which is not a multiple of 16 bytes. |
| 464 | |
Stephan Mueller | 1c49678e | 2015-09-21 20:58:56 +0200 | [diff] [blame] | 465 | config CRYPTO_KEYWRAP |
| 466 | tristate "Key wrapping support" |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 467 | select CRYPTO_SKCIPHER |
Eric Biggers | c8a3315 | 2019-05-20 09:49:46 -0700 | [diff] [blame] | 468 | select CRYPTO_MANAGER |
Stephan Mueller | 1c49678e | 2015-09-21 20:58:56 +0200 | [diff] [blame] | 469 | help |
| 470 | Support for key wrapping (NIST SP800-38F / RFC3394) without |
| 471 | padding. |
| 472 | |
Eric Biggers | 26609a2 | 2018-11-16 17:26:29 -0800 | [diff] [blame] | 473 | config CRYPTO_NHPOLY1305 |
| 474 | tristate |
| 475 | select CRYPTO_HASH |
Ard Biesheuvel | 48ea8c6 | 2019-11-08 13:22:19 +0100 | [diff] [blame] | 476 | select CRYPTO_LIB_POLY1305_GENERIC |
Eric Biggers | 26609a2 | 2018-11-16 17:26:29 -0800 | [diff] [blame] | 477 | |
Eric Biggers | 012c823 | 2018-12-04 22:20:00 -0800 | [diff] [blame] | 478 | config CRYPTO_NHPOLY1305_SSE2 |
| 479 | tristate "NHPoly1305 hash function (x86_64 SSE2 implementation)" |
| 480 | depends on X86 && 64BIT |
| 481 | select CRYPTO_NHPOLY1305 |
| 482 | help |
| 483 | SSE2 optimized implementation of the hash function used by the |
| 484 | Adiantum encryption mode. |
| 485 | |
Eric Biggers | 0f961f9 | 2018-12-04 22:20:01 -0800 | [diff] [blame] | 486 | config CRYPTO_NHPOLY1305_AVX2 |
| 487 | tristate "NHPoly1305 hash function (x86_64 AVX2 implementation)" |
| 488 | depends on X86 && 64BIT |
| 489 | select CRYPTO_NHPOLY1305 |
| 490 | help |
| 491 | AVX2 optimized implementation of the hash function used by the |
| 492 | Adiantum encryption mode. |
| 493 | |
Eric Biggers | 059c2a4 | 2018-11-16 17:26:31 -0800 | [diff] [blame] | 494 | config CRYPTO_ADIANTUM |
| 495 | tristate "Adiantum support" |
| 496 | select CRYPTO_CHACHA20 |
Ard Biesheuvel | 48ea8c6 | 2019-11-08 13:22:19 +0100 | [diff] [blame] | 497 | select CRYPTO_LIB_POLY1305_GENERIC |
Eric Biggers | 059c2a4 | 2018-11-16 17:26:31 -0800 | [diff] [blame] | 498 | select CRYPTO_NHPOLY1305 |
Eric Biggers | c8a3315 | 2019-05-20 09:49:46 -0700 | [diff] [blame] | 499 | select CRYPTO_MANAGER |
Eric Biggers | 059c2a4 | 2018-11-16 17:26:31 -0800 | [diff] [blame] | 500 | help |
| 501 | Adiantum is a tweakable, length-preserving encryption mode |
| 502 | designed for fast and secure disk encryption, especially on |
| 503 | CPUs without dedicated crypto instructions. It encrypts |
| 504 | each sector using the XChaCha12 stream cipher, two passes of |
| 505 | an ε-almost-∆-universal hash function, and an invocation of |
| 506 | the AES-256 block cipher on a single 16-byte block. On CPUs |
| 507 | without AES instructions, Adiantum is much faster than |
| 508 | AES-XTS. |
| 509 | |
| 510 | Adiantum's security is provably reducible to that of its |
| 511 | underlying stream and block ciphers, subject to a security |
| 512 | bound. Unlike XTS, Adiantum is a true wide-block encryption |
| 513 | mode, so it actually provides an even stronger notion of |
| 514 | security than XTS, subject to the security bound. |
| 515 | |
| 516 | If unsure, say N. |
| 517 | |
Ard Biesheuvel | be1eb7f | 2019-08-19 17:17:33 +0300 | [diff] [blame] | 518 | config CRYPTO_ESSIV |
| 519 | tristate "ESSIV support for block encryption" |
| 520 | select CRYPTO_AUTHENC |
| 521 | help |
| 522 | Encrypted salt-sector initialization vector (ESSIV) is an IV |
| 523 | generation method that is used in some cases by fscrypt and/or |
| 524 | dm-crypt. It uses the hash of the block encryption key as the |
| 525 | symmetric key for a block encryption pass applied to the input |
| 526 | IV, making low entropy IV sources more suitable for block |
| 527 | encryption. |
| 528 | |
| 529 | This driver implements a crypto API template that can be |
Geert Uytterhoeven | ab3d436 | 2020-01-12 17:58:58 +0100 | [diff] [blame] | 530 | instantiated either as an skcipher or as an AEAD (depending on the |
Ard Biesheuvel | be1eb7f | 2019-08-19 17:17:33 +0300 | [diff] [blame] | 531 | type of the first template argument), and which defers encryption |
| 532 | and decryption requests to the encapsulated cipher after applying |
Geert Uytterhoeven | ab3d436 | 2020-01-12 17:58:58 +0100 | [diff] [blame] | 533 | ESSIV to the input IV. Note that in the AEAD case, it is assumed |
Ard Biesheuvel | be1eb7f | 2019-08-19 17:17:33 +0300 | [diff] [blame] | 534 | that the keys are presented in the same format used by the authenc |
| 535 | template, and that the IV appears at the end of the authenticated |
| 536 | associated data (AAD) region (which is how dm-crypt uses it.) |
| 537 | |
| 538 | Note that the use of ESSIV is not recommended for new deployments, |
| 539 | and so this only needs to be enabled when interoperability with |
| 540 | existing encrypted volumes of filesystems is required, or when |
| 541 | building for a particular system that requires it (e.g., when |
| 542 | the SoC in question has accelerated CBC but not XTS, making CBC |
| 543 | combined with ESSIV the only feasible mode for h/w accelerated |
| 544 | block encryption) |
| 545 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 546 | comment "Hash modes" |
| 547 | |
Jussi Kivilinna | 93b5e86 | 2013-04-08 10:48:44 +0300 | [diff] [blame] | 548 | config CRYPTO_CMAC |
| 549 | tristate "CMAC support" |
| 550 | select CRYPTO_HASH |
| 551 | select CRYPTO_MANAGER |
| 552 | help |
| 553 | Cipher-based Message Authentication Code (CMAC) specified by |
| 554 | The National Institute of Standards and Technology (NIST). |
| 555 | |
| 556 | https://tools.ietf.org/html/rfc4493 |
| 557 | http://csrc.nist.gov/publications/nistpubs/800-38B/SP_800-38B.pdf |
| 558 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 559 | config CRYPTO_HMAC |
| 560 | tristate "HMAC support" |
| 561 | select CRYPTO_HASH |
| 562 | select CRYPTO_MANAGER |
| 563 | help |
| 564 | HMAC: Keyed-Hashing for Message Authentication (RFC2104). |
| 565 | This is required for IPSec. |
| 566 | |
| 567 | config CRYPTO_XCBC |
| 568 | tristate "XCBC support" |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 569 | select CRYPTO_HASH |
| 570 | select CRYPTO_MANAGER |
| 571 | help |
| 572 | XCBC: Keyed-Hashing with encryption algorithm |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 573 | https://www.ietf.org/rfc/rfc3566.txt |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 574 | http://csrc.nist.gov/encryption/modes/proposedmodes/ |
| 575 | xcbc-mac/xcbc-mac-spec.pdf |
| 576 | |
Shane Wang | f1939f7 | 2009-09-02 20:05:22 +1000 | [diff] [blame] | 577 | config CRYPTO_VMAC |
| 578 | tristate "VMAC support" |
Shane Wang | f1939f7 | 2009-09-02 20:05:22 +1000 | [diff] [blame] | 579 | select CRYPTO_HASH |
| 580 | select CRYPTO_MANAGER |
| 581 | help |
| 582 | VMAC is a message authentication algorithm designed for |
| 583 | very high speed on 64-bit architectures. |
| 584 | |
| 585 | See also: |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 586 | <https://fastcrypto.org/vmac> |
Shane Wang | f1939f7 | 2009-09-02 20:05:22 +1000 | [diff] [blame] | 587 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 588 | comment "Digest" |
| 589 | |
| 590 | config CRYPTO_CRC32C |
| 591 | tristate "CRC32c CRC algorithm" |
Herbert Xu | 5773a3e | 2008-07-08 20:54:28 +0800 | [diff] [blame] | 592 | select CRYPTO_HASH |
Darrick J. Wong | 6a0962b | 2012-03-23 15:02:25 -0700 | [diff] [blame] | 593 | select CRC32 |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 594 | help |
| 595 | Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used |
| 596 | by iSCSI for header and data digests and by others. |
Herbert Xu | 69c35ef | 2008-11-07 15:11:47 +0800 | [diff] [blame] | 597 | See Castagnoli93. Module will be crc32c. |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 598 | |
Austin Zhang | 8cb51ba | 2008-08-07 09:57:03 +0800 | [diff] [blame] | 599 | config CRYPTO_CRC32C_INTEL |
| 600 | tristate "CRC32c INTEL hardware acceleration" |
| 601 | depends on X86 |
| 602 | select CRYPTO_HASH |
| 603 | help |
| 604 | In Intel processor with SSE4.2 supported, the processor will |
| 605 | support CRC32C implementation using hardware accelerated CRC32 |
| 606 | instruction. This option will create 'crc32c-intel' module, |
| 607 | which will enable any routine to use the CRC32 instruction to |
| 608 | gain performance compared with software implementation. |
| 609 | Module will be crc32c-intel. |
| 610 | |
Jean Delvare | 7cf3186 | 2016-11-22 10:32:44 +0100 | [diff] [blame] | 611 | config CRYPTO_CRC32C_VPMSUM |
Anton Blanchard | 6dd7a82 | 2016-07-01 08:19:45 +1000 | [diff] [blame] | 612 | tristate "CRC32c CRC algorithm (powerpc64)" |
Michael Ellerman | c12abf3 | 2016-08-09 08:46:15 +1000 | [diff] [blame] | 613 | depends on PPC64 && ALTIVEC |
Anton Blanchard | 6dd7a82 | 2016-07-01 08:19:45 +1000 | [diff] [blame] | 614 | select CRYPTO_HASH |
| 615 | select CRC32 |
| 616 | help |
| 617 | CRC32c algorithm implemented using vector polynomial multiply-sum |
| 618 | (vpmsum) instructions, introduced in POWER8. Enable on POWER8 |
| 619 | and newer processors for improved performance. |
| 620 | |
| 621 | |
David S. Miller | 442a7c4 | 2012-08-22 20:47:36 -0700 | [diff] [blame] | 622 | config CRYPTO_CRC32C_SPARC64 |
| 623 | tristate "CRC32c CRC algorithm (SPARC64)" |
| 624 | depends on SPARC64 |
| 625 | select CRYPTO_HASH |
| 626 | select CRC32 |
| 627 | help |
| 628 | CRC32c CRC algorithm implemented using sparc64 crypto instructions, |
| 629 | when available. |
| 630 | |
Alexander Boyko | 78c37d1 | 2013-01-10 18:54:59 +0400 | [diff] [blame] | 631 | config CRYPTO_CRC32 |
| 632 | tristate "CRC32 CRC algorithm" |
| 633 | select CRYPTO_HASH |
| 634 | select CRC32 |
| 635 | help |
| 636 | CRC-32-IEEE 802.3 cyclic redundancy-check algorithm. |
| 637 | Shash crypto api wrappers to crc32_le function. |
| 638 | |
| 639 | config CRYPTO_CRC32_PCLMUL |
| 640 | tristate "CRC32 PCLMULQDQ hardware acceleration" |
| 641 | depends on X86 |
| 642 | select CRYPTO_HASH |
| 643 | select CRC32 |
| 644 | help |
| 645 | From Intel Westmere and AMD Bulldozer processor with SSE4.2 |
| 646 | and PCLMULQDQ supported, the processor will support |
| 647 | CRC32 PCLMULQDQ implementation using hardware accelerated PCLMULQDQ |
haco | af8cb01 | 2018-12-28 10:09:40 +0000 | [diff] [blame] | 648 | instruction. This option will create 'crc32-pclmul' module, |
Alexander Boyko | 78c37d1 | 2013-01-10 18:54:59 +0400 | [diff] [blame] | 649 | which will enable any routine to use the CRC-32-IEEE 802.3 checksum |
| 650 | and gain better performance as compared with the table implementation. |
| 651 | |
Marcin Nowakowski | 4a5dc51 | 2018-02-09 22:11:06 +0000 | [diff] [blame] | 652 | config CRYPTO_CRC32_MIPS |
| 653 | tristate "CRC32c and CRC32 CRC algorithm (MIPS)" |
| 654 | depends on MIPS_CRC_SUPPORT |
| 655 | select CRYPTO_HASH |
| 656 | help |
| 657 | CRC32c and CRC32 CRC algorithms implemented using mips crypto |
| 658 | instructions, when available. |
| 659 | |
| 660 | |
Nikolay Borisov | 67882e7 | 2019-05-30 09:52:57 +0300 | [diff] [blame] | 661 | config CRYPTO_XXHASH |
| 662 | tristate "xxHash hash algorithm" |
| 663 | select CRYPTO_HASH |
| 664 | select XXHASH |
| 665 | help |
| 666 | xxHash non-cryptographic hash algorithm. Extremely fast, working at |
| 667 | speeds close to RAM limits. |
| 668 | |
David Sterba | 91d6893 | 2019-10-24 18:28:31 +0200 | [diff] [blame] | 669 | config CRYPTO_BLAKE2B |
| 670 | tristate "BLAKE2b digest algorithm" |
| 671 | select CRYPTO_HASH |
| 672 | help |
| 673 | Implementation of cryptographic hash function BLAKE2b (or just BLAKE2), |
| 674 | optimized for 64bit platforms and can produce digests of any size |
| 675 | between 1 to 64. The keyed hash is also implemented. |
| 676 | |
| 677 | This module provides the following algorithms: |
| 678 | |
| 679 | - blake2b-160 |
| 680 | - blake2b-256 |
| 681 | - blake2b-384 |
| 682 | - blake2b-512 |
| 683 | |
| 684 | See https://blake2.net for further information. |
| 685 | |
Ard Biesheuvel | 7f9b088 | 2019-11-08 13:22:30 +0100 | [diff] [blame] | 686 | config CRYPTO_BLAKE2S |
| 687 | tristate "BLAKE2s digest algorithm" |
| 688 | select CRYPTO_LIB_BLAKE2S_GENERIC |
| 689 | select CRYPTO_HASH |
| 690 | help |
| 691 | Implementation of cryptographic hash function BLAKE2s |
| 692 | optimized for 8-32bit platforms and can produce digests of any size |
| 693 | between 1 to 32. The keyed hash is also implemented. |
| 694 | |
| 695 | This module provides the following algorithms: |
| 696 | |
| 697 | - blake2s-128 |
| 698 | - blake2s-160 |
| 699 | - blake2s-224 |
| 700 | - blake2s-256 |
| 701 | |
| 702 | See https://blake2.net for further information. |
| 703 | |
Jason A. Donenfeld | ed0356e | 2019-11-08 13:22:31 +0100 | [diff] [blame] | 704 | config CRYPTO_BLAKE2S_X86 |
| 705 | tristate "BLAKE2s digest algorithm (x86 accelerated version)" |
| 706 | depends on X86 && 64BIT |
| 707 | select CRYPTO_LIB_BLAKE2S_GENERIC |
| 708 | select CRYPTO_ARCH_HAVE_LIB_BLAKE2S |
| 709 | |
Herbert Xu | 68411521 | 2013-09-07 12:56:26 +1000 | [diff] [blame] | 710 | config CRYPTO_CRCT10DIF |
| 711 | tristate "CRCT10DIF algorithm" |
| 712 | select CRYPTO_HASH |
| 713 | help |
| 714 | CRC T10 Data Integrity Field computation is being cast as |
| 715 | a crypto transform. This allows for faster crc t10 diff |
| 716 | transforms to be used if they are available. |
| 717 | |
| 718 | config CRYPTO_CRCT10DIF_PCLMUL |
| 719 | tristate "CRCT10DIF PCLMULQDQ hardware acceleration" |
| 720 | depends on X86 && 64BIT && CRC_T10DIF |
| 721 | select CRYPTO_HASH |
| 722 | help |
| 723 | For x86_64 processors with SSE4.2 and PCLMULQDQ supported, |
| 724 | CRC T10 DIF PCLMULQDQ computation can be hardware |
| 725 | accelerated PCLMULQDQ instruction. This option will create |
haco | af8cb01 | 2018-12-28 10:09:40 +0000 | [diff] [blame] | 726 | 'crct10dif-pclmul' module, which is faster when computing the |
Herbert Xu | 68411521 | 2013-09-07 12:56:26 +1000 | [diff] [blame] | 727 | crct10dif checksum as compared with the generic table implementation. |
| 728 | |
Daniel Axtens | b01df1c | 2017-03-15 23:37:36 +1100 | [diff] [blame] | 729 | config CRYPTO_CRCT10DIF_VPMSUM |
| 730 | tristate "CRC32T10DIF powerpc64 hardware acceleration" |
| 731 | depends on PPC64 && ALTIVEC && CRC_T10DIF |
| 732 | select CRYPTO_HASH |
| 733 | help |
| 734 | CRC10T10DIF algorithm implemented using vector polynomial |
| 735 | multiply-sum (vpmsum) instructions, introduced in POWER8. Enable on |
| 736 | POWER8 and newer processors for improved performance. |
| 737 | |
Daniel Axtens | 146c868 | 2017-03-15 23:37:37 +1100 | [diff] [blame] | 738 | config CRYPTO_VPMSUM_TESTER |
| 739 | tristate "Powerpc64 vpmsum hardware acceleration tester" |
| 740 | depends on CRYPTO_CRCT10DIF_VPMSUM && CRYPTO_CRC32C_VPMSUM |
| 741 | help |
| 742 | Stress test for CRC32c and CRC-T10DIF algorithms implemented with |
| 743 | POWER8 vpmsum instructions. |
| 744 | Unless you are testing these algorithms, you don't need this. |
| 745 | |
Huang Ying | 2cdc689 | 2009-08-06 15:32:38 +1000 | [diff] [blame] | 746 | config CRYPTO_GHASH |
Eric Biggers | 8dfa20f | 2019-07-19 23:09:18 -0700 | [diff] [blame] | 747 | tristate "GHASH hash function" |
Huang Ying | 2cdc689 | 2009-08-06 15:32:38 +1000 | [diff] [blame] | 748 | select CRYPTO_GF128MUL |
Arnd Bergmann | 578c60f | 2016-01-25 17:51:21 +0100 | [diff] [blame] | 749 | select CRYPTO_HASH |
Huang Ying | 2cdc689 | 2009-08-06 15:32:38 +1000 | [diff] [blame] | 750 | help |
Eric Biggers | 8dfa20f | 2019-07-19 23:09:18 -0700 | [diff] [blame] | 751 | GHASH is the hash function used in GCM (Galois/Counter Mode). |
| 752 | It is not a general-purpose cryptographic hash function. |
Huang Ying | 2cdc689 | 2009-08-06 15:32:38 +1000 | [diff] [blame] | 753 | |
Martin Willi | f979e01 | 2015-06-01 13:43:58 +0200 | [diff] [blame] | 754 | config CRYPTO_POLY1305 |
| 755 | tristate "Poly1305 authenticator algorithm" |
Arnd Bergmann | 578c60f | 2016-01-25 17:51:21 +0100 | [diff] [blame] | 756 | select CRYPTO_HASH |
Ard Biesheuvel | 48ea8c6 | 2019-11-08 13:22:19 +0100 | [diff] [blame] | 757 | select CRYPTO_LIB_POLY1305_GENERIC |
Martin Willi | f979e01 | 2015-06-01 13:43:58 +0200 | [diff] [blame] | 758 | help |
| 759 | Poly1305 authenticator algorithm, RFC7539. |
| 760 | |
| 761 | Poly1305 is an authenticator algorithm designed by Daniel J. Bernstein. |
| 762 | It is used for the ChaCha20-Poly1305 AEAD, specified in RFC7539 for use |
| 763 | in IETF protocols. This is the portable C implementation of Poly1305. |
| 764 | |
Martin Willi | c70f4ab | 2015-07-16 19:14:06 +0200 | [diff] [blame] | 765 | config CRYPTO_POLY1305_X86_64 |
Martin Willi | b1ccc8f | 2015-07-16 19:14:08 +0200 | [diff] [blame] | 766 | tristate "Poly1305 authenticator algorithm (x86_64/SSE2/AVX2)" |
Martin Willi | c70f4ab | 2015-07-16 19:14:06 +0200 | [diff] [blame] | 767 | depends on X86 && 64BIT |
Ard Biesheuvel | 1b2c6a5 | 2019-11-08 13:22:22 +0100 | [diff] [blame] | 768 | select CRYPTO_LIB_POLY1305_GENERIC |
Ard Biesheuvel | f0e89bc | 2019-11-08 13:22:23 +0100 | [diff] [blame] | 769 | select CRYPTO_ARCH_HAVE_LIB_POLY1305 |
Martin Willi | c70f4ab | 2015-07-16 19:14:06 +0200 | [diff] [blame] | 770 | help |
| 771 | Poly1305 authenticator algorithm, RFC7539. |
| 772 | |
| 773 | Poly1305 is an authenticator algorithm designed by Daniel J. Bernstein. |
| 774 | It is used for the ChaCha20-Poly1305 AEAD, specified in RFC7539 for use |
| 775 | in IETF protocols. This is the x86_64 assembler implementation using SIMD |
| 776 | instructions. |
| 777 | |
Ard Biesheuvel | a11d055 | 2019-11-08 13:22:26 +0100 | [diff] [blame] | 778 | config CRYPTO_POLY1305_MIPS |
| 779 | tristate "Poly1305 authenticator algorithm (MIPS optimized)" |
Maciej W. Rozycki | 6c810cf | 2021-03-03 02:16:04 +0100 | [diff] [blame] | 780 | depends on MIPS |
Ard Biesheuvel | a11d055 | 2019-11-08 13:22:26 +0100 | [diff] [blame] | 781 | select CRYPTO_ARCH_HAVE_LIB_POLY1305 |
| 782 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 783 | config CRYPTO_MD4 |
| 784 | tristate "MD4 digest algorithm" |
Adrian-Ken Rueegsegger | 808a176 | 2008-12-03 19:55:27 +0800 | [diff] [blame] | 785 | select CRYPTO_HASH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 787 | MD4 message digest algorithm (RFC1320). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 789 | config CRYPTO_MD5 |
| 790 | tristate "MD5 digest algorithm" |
Adrian-Ken Rueegsegger | 14b75ba | 2008-12-03 19:57:12 +0800 | [diff] [blame] | 791 | select CRYPTO_HASH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 793 | MD5 message digest algorithm (RFC1321). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | |
Aaro Koskinen | d69e75d | 2014-12-21 22:54:02 +0200 | [diff] [blame] | 795 | config CRYPTO_MD5_OCTEON |
| 796 | tristate "MD5 digest algorithm (OCTEON)" |
| 797 | depends on CPU_CAVIUM_OCTEON |
| 798 | select CRYPTO_MD5 |
| 799 | select CRYPTO_HASH |
| 800 | help |
| 801 | MD5 message digest algorithm (RFC1321) implemented |
| 802 | using OCTEON crypto instructions, when available. |
| 803 | |
Markus Stockhausen | e8e5995 | 2015-03-01 19:30:46 +0100 | [diff] [blame] | 804 | config CRYPTO_MD5_PPC |
| 805 | tristate "MD5 digest algorithm (PPC)" |
| 806 | depends on PPC |
| 807 | select CRYPTO_HASH |
| 808 | help |
| 809 | MD5 message digest algorithm (RFC1321) implemented |
| 810 | in PPC assembler. |
| 811 | |
David S. Miller | fa4dfed | 2012-08-19 21:51:26 -0700 | [diff] [blame] | 812 | config CRYPTO_MD5_SPARC64 |
| 813 | tristate "MD5 digest algorithm (SPARC64)" |
| 814 | depends on SPARC64 |
| 815 | select CRYPTO_MD5 |
| 816 | select CRYPTO_HASH |
| 817 | help |
| 818 | MD5 message digest algorithm (RFC1321) implemented |
| 819 | using sparc64 crypto instructions, when available. |
| 820 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 821 | config CRYPTO_MICHAEL_MIC |
| 822 | tristate "Michael MIC keyed digest algorithm" |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 823 | select CRYPTO_HASH |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 824 | help |
| 825 | Michael MIC is used for message integrity protection in TKIP |
| 826 | (IEEE 802.11i). This algorithm is required for TKIP, but it |
| 827 | should not be used for other purposes because of the weakness |
| 828 | of the algorithm. |
| 829 | |
Adrian-Ken Rueegsegger | 82798f9 | 2008-05-07 22:17:37 +0800 | [diff] [blame] | 830 | config CRYPTO_RMD160 |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 831 | tristate "RIPEMD-160 digest algorithm" |
Herbert Xu | e5835fb | 2008-11-08 09:18:51 +0800 | [diff] [blame] | 832 | select CRYPTO_HASH |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 833 | help |
| 834 | RIPEMD-160 (ISO/IEC 10118-3:2004). |
Adrian-Ken Rueegsegger | 82798f9 | 2008-05-07 22:17:37 +0800 | [diff] [blame] | 835 | |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 836 | RIPEMD-160 is a 160-bit cryptographic hash function. It is intended |
| 837 | to be used as a secure replacement for the 128-bit hash functions |
| 838 | MD4, MD5 and it's predecessor RIPEMD |
| 839 | (not to be confused with RIPEMD-128). |
Adrian-Ken Rueegsegger | 82798f9 | 2008-05-07 22:17:37 +0800 | [diff] [blame] | 840 | |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 841 | It's speed is comparable to SHA1 and there are no known attacks |
| 842 | against RIPEMD-160. |
Adrian-Ken Rueegsegger | 534fe2c1 | 2008-05-09 21:30:27 +0800 | [diff] [blame] | 843 | |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 844 | Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel. |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 845 | See <https://homes.esat.kuleuven.be/~bosselae/ripemd160.html> |
Adrian-Ken Rueegsegger | 534fe2c1 | 2008-05-09 21:30:27 +0800 | [diff] [blame] | 846 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 847 | config CRYPTO_SHA1 |
| 848 | tristate "SHA1 digest algorithm" |
Adrian-Ken Rueegsegger | 54ccb36 | 2008-12-02 21:08:20 +0800 | [diff] [blame] | 849 | select CRYPTO_HASH |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 850 | help |
| 851 | SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2). |
| 852 | |
Mathias Krause | 66be895 | 2011-08-04 20:19:25 +0200 | [diff] [blame] | 853 | config CRYPTO_SHA1_SSSE3 |
tim | e38b6b7f | 2015-09-10 15:27:26 -0700 | [diff] [blame] | 854 | tristate "SHA1 digest algorithm (SSSE3/AVX/AVX2/SHA-NI)" |
Mathias Krause | 66be895 | 2011-08-04 20:19:25 +0200 | [diff] [blame] | 855 | depends on X86 && 64BIT |
| 856 | select CRYPTO_SHA1 |
| 857 | select CRYPTO_HASH |
| 858 | help |
| 859 | SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented |
| 860 | using Supplemental SSE3 (SSSE3) instructions or Advanced Vector |
tim | e38b6b7f | 2015-09-10 15:27:26 -0700 | [diff] [blame] | 861 | Extensions (AVX/AVX2) or SHA-NI(SHA Extensions New Instructions), |
| 862 | when available. |
Mathias Krause | 66be895 | 2011-08-04 20:19:25 +0200 | [diff] [blame] | 863 | |
Tim Chen | 8275d1a | 2013-03-26 13:59:17 -0700 | [diff] [blame] | 864 | config CRYPTO_SHA256_SSSE3 |
tim | e38b6b7f | 2015-09-10 15:27:26 -0700 | [diff] [blame] | 865 | tristate "SHA256 digest algorithm (SSSE3/AVX/AVX2/SHA-NI)" |
Tim Chen | 8275d1a | 2013-03-26 13:59:17 -0700 | [diff] [blame] | 866 | depends on X86 && 64BIT |
| 867 | select CRYPTO_SHA256 |
| 868 | select CRYPTO_HASH |
| 869 | help |
| 870 | SHA-256 secure hash standard (DFIPS 180-2) implemented |
| 871 | using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector |
| 872 | Extensions version 1 (AVX1), or Advanced Vector Extensions |
tim | e38b6b7f | 2015-09-10 15:27:26 -0700 | [diff] [blame] | 873 | version 2 (AVX2) instructions, or SHA-NI (SHA Extensions New |
| 874 | Instructions) when available. |
Tim Chen | 8275d1a | 2013-03-26 13:59:17 -0700 | [diff] [blame] | 875 | |
Tim Chen | 87de457 | 2013-03-26 14:00:02 -0700 | [diff] [blame] | 876 | config CRYPTO_SHA512_SSSE3 |
| 877 | tristate "SHA512 digest algorithm (SSSE3/AVX/AVX2)" |
| 878 | depends on X86 && 64BIT |
| 879 | select CRYPTO_SHA512 |
| 880 | select CRYPTO_HASH |
| 881 | help |
| 882 | SHA-512 secure hash standard (DFIPS 180-2) implemented |
| 883 | using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector |
| 884 | Extensions version 1 (AVX1), or Advanced Vector Extensions |
| 885 | version 2 (AVX2) instructions, when available. |
| 886 | |
Aaro Koskinen | efdb6f6 | 2015-03-08 22:07:47 +0200 | [diff] [blame] | 887 | config CRYPTO_SHA1_OCTEON |
| 888 | tristate "SHA1 digest algorithm (OCTEON)" |
| 889 | depends on CPU_CAVIUM_OCTEON |
| 890 | select CRYPTO_SHA1 |
| 891 | select CRYPTO_HASH |
| 892 | help |
| 893 | SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented |
| 894 | using OCTEON crypto instructions, when available. |
| 895 | |
David S. Miller | 4ff28d4 | 2012-08-19 15:41:53 -0700 | [diff] [blame] | 896 | config CRYPTO_SHA1_SPARC64 |
| 897 | tristate "SHA1 digest algorithm (SPARC64)" |
| 898 | depends on SPARC64 |
| 899 | select CRYPTO_SHA1 |
| 900 | select CRYPTO_HASH |
| 901 | help |
| 902 | SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented |
| 903 | using sparc64 crypto instructions, when available. |
| 904 | |
Michael Ellerman | 323a6bf | 2012-09-13 23:00:49 +0000 | [diff] [blame] | 905 | config CRYPTO_SHA1_PPC |
| 906 | tristate "SHA1 digest algorithm (powerpc)" |
| 907 | depends on PPC |
| 908 | help |
| 909 | This is the powerpc hardware accelerated implementation of the |
| 910 | SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2). |
| 911 | |
Markus Stockhausen | d9850fc | 2015-02-24 20:36:50 +0100 | [diff] [blame] | 912 | config CRYPTO_SHA1_PPC_SPE |
| 913 | tristate "SHA1 digest algorithm (PPC SPE)" |
| 914 | depends on PPC && SPE |
| 915 | help |
| 916 | SHA-1 secure hash standard (DFIPS 180-4) implemented |
| 917 | using powerpc SPE SIMD instruction set. |
| 918 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 919 | config CRYPTO_SHA256 |
| 920 | tristate "SHA224 and SHA256 digest algorithm" |
Adrian-Ken Rueegsegger | 50e109b5 | 2008-12-03 19:57:49 +0800 | [diff] [blame] | 921 | select CRYPTO_HASH |
Hans de Goede | 08c327f | 2019-08-17 16:24:35 +0200 | [diff] [blame] | 922 | select CRYPTO_LIB_SHA256 |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 923 | help |
| 924 | SHA256 secure hash standard (DFIPS 180-2). |
| 925 | |
| 926 | This version of SHA implements a 256 bit hash with 128 bits of |
| 927 | security against collision attacks. |
| 928 | |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 929 | This code also includes SHA-224, a 224 bit hash with 112 bits |
| 930 | of security against collision attacks. |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 931 | |
Markus Stockhausen | 2ecc1e9 | 2015-01-30 15:39:34 +0100 | [diff] [blame] | 932 | config CRYPTO_SHA256_PPC_SPE |
| 933 | tristate "SHA224 and SHA256 digest algorithm (PPC SPE)" |
| 934 | depends on PPC && SPE |
| 935 | select CRYPTO_SHA256 |
| 936 | select CRYPTO_HASH |
| 937 | help |
| 938 | SHA224 and SHA256 secure hash standard (DFIPS 180-2) |
| 939 | implemented using powerpc SPE SIMD instruction set. |
| 940 | |
Aaro Koskinen | efdb6f6 | 2015-03-08 22:07:47 +0200 | [diff] [blame] | 941 | config CRYPTO_SHA256_OCTEON |
| 942 | tristate "SHA224 and SHA256 digest algorithm (OCTEON)" |
| 943 | depends on CPU_CAVIUM_OCTEON |
| 944 | select CRYPTO_SHA256 |
| 945 | select CRYPTO_HASH |
| 946 | help |
| 947 | SHA-256 secure hash standard (DFIPS 180-2) implemented |
| 948 | using OCTEON crypto instructions, when available. |
| 949 | |
David S. Miller | 86c93b2 | 2012-08-19 17:11:37 -0700 | [diff] [blame] | 950 | config CRYPTO_SHA256_SPARC64 |
| 951 | tristate "SHA224 and SHA256 digest algorithm (SPARC64)" |
| 952 | depends on SPARC64 |
| 953 | select CRYPTO_SHA256 |
| 954 | select CRYPTO_HASH |
| 955 | help |
| 956 | SHA-256 secure hash standard (DFIPS 180-2) implemented |
| 957 | using sparc64 crypto instructions, when available. |
| 958 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 959 | config CRYPTO_SHA512 |
| 960 | tristate "SHA384 and SHA512 digest algorithms" |
Adrian-Ken Rueegsegger | bd9d20d | 2008-12-17 16:49:02 +1100 | [diff] [blame] | 961 | select CRYPTO_HASH |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 962 | help |
| 963 | SHA512 secure hash standard (DFIPS 180-2). |
| 964 | |
| 965 | This version of SHA implements a 512 bit hash with 256 bits of |
| 966 | security against collision attacks. |
| 967 | |
| 968 | This code also includes SHA-384, a 384 bit hash with 192 bits |
| 969 | of security against collision attacks. |
| 970 | |
Aaro Koskinen | efdb6f6 | 2015-03-08 22:07:47 +0200 | [diff] [blame] | 971 | config CRYPTO_SHA512_OCTEON |
| 972 | tristate "SHA384 and SHA512 digest algorithms (OCTEON)" |
| 973 | depends on CPU_CAVIUM_OCTEON |
| 974 | select CRYPTO_SHA512 |
| 975 | select CRYPTO_HASH |
| 976 | help |
| 977 | SHA-512 secure hash standard (DFIPS 180-2) implemented |
| 978 | using OCTEON crypto instructions, when available. |
| 979 | |
David S. Miller | 775e0c6 | 2012-08-19 17:37:56 -0700 | [diff] [blame] | 980 | config CRYPTO_SHA512_SPARC64 |
| 981 | tristate "SHA384 and SHA512 digest algorithm (SPARC64)" |
| 982 | depends on SPARC64 |
| 983 | select CRYPTO_SHA512 |
| 984 | select CRYPTO_HASH |
| 985 | help |
| 986 | SHA-512 secure hash standard (DFIPS 180-2) implemented |
| 987 | using sparc64 crypto instructions, when available. |
| 988 | |
Jeff Garzik | 53964b9 | 2016-06-17 10:30:35 +0530 | [diff] [blame] | 989 | config CRYPTO_SHA3 |
| 990 | tristate "SHA3 digest algorithm" |
| 991 | select CRYPTO_HASH |
| 992 | help |
| 993 | SHA-3 secure hash standard (DFIPS 202). It's based on |
| 994 | cryptographic sponge function family called Keccak. |
| 995 | |
| 996 | References: |
| 997 | http://keccak.noekeon.org/ |
| 998 | |
Gilad Ben-Yossef | 4f0fc16 | 2017-08-21 13:51:28 +0300 | [diff] [blame] | 999 | config CRYPTO_SM3 |
| 1000 | tristate "SM3 digest algorithm" |
| 1001 | select CRYPTO_HASH |
| 1002 | help |
| 1003 | SM3 secure hash function as defined by OSCCA GM/T 0004-2012 SM3). |
| 1004 | It is part of the Chinese Commercial Cryptography suite. |
| 1005 | |
| 1006 | References: |
| 1007 | http://www.oscca.gov.cn/UpFile/20101222141857786.pdf |
| 1008 | https://datatracker.ietf.org/doc/html/draft-shen-sm3-hash |
| 1009 | |
Vitaly Chikunov | fe18957 | 2018-11-07 00:00:01 +0300 | [diff] [blame] | 1010 | config CRYPTO_STREEBOG |
| 1011 | tristate "Streebog Hash Function" |
| 1012 | select CRYPTO_HASH |
| 1013 | help |
| 1014 | Streebog Hash Function (GOST R 34.11-2012, RFC 6986) is one of the Russian |
| 1015 | cryptographic standard algorithms (called GOST algorithms). |
| 1016 | This setting enables two hash algorithms with 256 and 512 bits output. |
| 1017 | |
| 1018 | References: |
| 1019 | https://tc26.ru/upload/iblock/fed/feddbb4d26b685903faa2ba11aea43f6.pdf |
| 1020 | https://tools.ietf.org/html/rfc6986 |
| 1021 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1022 | config CRYPTO_WP512 |
| 1023 | tristate "Whirlpool digest algorithms" |
Adrian-Ken Rueegsegger | 4946510 | 2008-12-07 19:34:37 +0800 | [diff] [blame] | 1024 | select CRYPTO_HASH |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1025 | help |
| 1026 | Whirlpool hash algorithm 512, 384 and 256-bit hashes |
| 1027 | |
| 1028 | Whirlpool-512 is part of the NESSIE cryptographic primitives. |
| 1029 | Whirlpool will be part of the ISO/IEC 10118-3:2003(E) standard |
| 1030 | |
| 1031 | See also: |
Justin P. Mattock | 6d8de74 | 2010-09-12 10:42:47 +0800 | [diff] [blame] | 1032 | <http://www.larc.usp.br/~pbarreto/WhirlpoolPage.html> |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1033 | |
Huang Ying | 0e1227d | 2009-10-19 11:53:06 +0900 | [diff] [blame] | 1034 | config CRYPTO_GHASH_CLMUL_NI_INTEL |
Eric Biggers | 8dfa20f | 2019-07-19 23:09:18 -0700 | [diff] [blame] | 1035 | tristate "GHASH hash function (CLMUL-NI accelerated)" |
Richard Weinberger | 8af0086 | 2011-06-08 20:56:29 +0800 | [diff] [blame] | 1036 | depends on X86 && 64BIT |
Huang Ying | 0e1227d | 2009-10-19 11:53:06 +0900 | [diff] [blame] | 1037 | select CRYPTO_CRYPTD |
| 1038 | help |
Eric Biggers | 8dfa20f | 2019-07-19 23:09:18 -0700 | [diff] [blame] | 1039 | This is the x86_64 CLMUL-NI accelerated implementation of |
| 1040 | GHASH, the hash function used in GCM (Galois/Counter mode). |
Huang Ying | 0e1227d | 2009-10-19 11:53:06 +0900 | [diff] [blame] | 1041 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1042 | comment "Ciphers" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | |
| 1044 | config CRYPTO_AES |
| 1045 | tristate "AES cipher algorithms" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 1046 | select CRYPTO_ALGAPI |
Ard Biesheuvel | 5bb12d7 | 2019-07-02 21:41:33 +0200 | [diff] [blame] | 1047 | select CRYPTO_LIB_AES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1049 | AES cipher algorithms (FIPS-197). AES uses the Rijndael |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | algorithm. |
| 1051 | |
| 1052 | Rijndael appears to be consistently a very good performer in |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1053 | both hardware and software across a wide range of computing |
| 1054 | environments regardless of its use in feedback or non-feedback |
| 1055 | modes. Its key setup time is excellent, and its key agility is |
| 1056 | good. Rijndael's very low memory requirements make it very well |
| 1057 | suited for restricted-space environments, in which it also |
| 1058 | demonstrates excellent performance. Rijndael's operations are |
| 1059 | among the easiest to defend against power and timing attacks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1061 | The AES specifies three key sizes: 128, 192 and 256 bits |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | |
| 1063 | See <http://csrc.nist.gov/CryptoToolkit/aes/> for more information. |
| 1064 | |
Ard Biesheuvel | b5e0b03 | 2017-02-02 16:37:40 +0000 | [diff] [blame] | 1065 | config CRYPTO_AES_TI |
| 1066 | tristate "Fixed time AES cipher" |
| 1067 | select CRYPTO_ALGAPI |
Ard Biesheuvel | e59c1c9 | 2019-07-02 21:41:22 +0200 | [diff] [blame] | 1068 | select CRYPTO_LIB_AES |
Ard Biesheuvel | b5e0b03 | 2017-02-02 16:37:40 +0000 | [diff] [blame] | 1069 | help |
| 1070 | This is a generic implementation of AES that attempts to eliminate |
| 1071 | data dependent latencies as much as possible without affecting |
| 1072 | performance too much. It is intended for use by the generic CCM |
| 1073 | and GCM drivers, and other CTR or CMAC/XCBC based modes that rely |
| 1074 | solely on encryption (although decryption is supported as well, but |
| 1075 | with a more dramatic performance hit) |
| 1076 | |
| 1077 | Instead of using 16 lookup tables of 1 KB each, (8 for encryption and |
| 1078 | 8 for decryption), this implementation only uses just two S-boxes of |
| 1079 | 256 bytes each, and attempts to eliminate data dependent latencies by |
| 1080 | prefetching the entire table into the cache at the start of each |
Eric Biggers | 0a6a40c | 2018-10-17 21:37:58 -0700 | [diff] [blame] | 1081 | block. Interrupts are also disabled to avoid races where cachelines |
| 1082 | are evicted when the CPU is interrupted to do something else. |
Ard Biesheuvel | b5e0b03 | 2017-02-02 16:37:40 +0000 | [diff] [blame] | 1083 | |
Huang Ying | 54b6a1b | 2009-01-18 16:28:34 +1100 | [diff] [blame] | 1084 | config CRYPTO_AES_NI_INTEL |
| 1085 | tristate "AES cipher algorithms (AES-NI)" |
Richard Weinberger | 8af0086 | 2011-06-08 20:56:29 +0800 | [diff] [blame] | 1086 | depends on X86 |
Herbert Xu | 8567186 | 2016-11-22 20:08:33 +0800 | [diff] [blame] | 1087 | select CRYPTO_AEAD |
Ard Biesheuvel | 2c53fd1 | 2019-07-02 21:41:23 +0200 | [diff] [blame] | 1088 | select CRYPTO_LIB_AES |
Huang Ying | 54b6a1b | 2009-01-18 16:28:34 +1100 | [diff] [blame] | 1089 | select CRYPTO_ALGAPI |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1090 | select CRYPTO_SKCIPHER |
Herbert Xu | 8567186 | 2016-11-22 20:08:33 +0800 | [diff] [blame] | 1091 | select CRYPTO_SIMD |
Huang Ying | 54b6a1b | 2009-01-18 16:28:34 +1100 | [diff] [blame] | 1092 | help |
| 1093 | Use Intel AES-NI instructions for AES algorithm. |
| 1094 | |
| 1095 | AES cipher algorithms (FIPS-197). AES uses the Rijndael |
| 1096 | algorithm. |
| 1097 | |
| 1098 | Rijndael appears to be consistently a very good performer in |
| 1099 | both hardware and software across a wide range of computing |
| 1100 | environments regardless of its use in feedback or non-feedback |
| 1101 | modes. Its key setup time is excellent, and its key agility is |
| 1102 | good. Rijndael's very low memory requirements make it very well |
| 1103 | suited for restricted-space environments, in which it also |
| 1104 | demonstrates excellent performance. Rijndael's operations are |
| 1105 | among the easiest to defend against power and timing attacks. |
| 1106 | |
| 1107 | The AES specifies three key sizes: 128, 192 and 256 bits |
| 1108 | |
| 1109 | See <http://csrc.nist.gov/encryption/aes/> for more information. |
| 1110 | |
Mathias Krause | 0d258ef | 2010-11-27 16:34:46 +0800 | [diff] [blame] | 1111 | In addition to AES cipher algorithm support, the acceleration |
| 1112 | for some popular block cipher mode is supported too, including |
Ard Biesheuvel | 944585a | 2018-09-24 14:48:16 +0200 | [diff] [blame] | 1113 | ECB, CBC, LRW, XTS. The 64 bit version has additional |
Mathias Krause | 0d258ef | 2010-11-27 16:34:46 +0800 | [diff] [blame] | 1114 | acceleration for CTR. |
Huang Ying | 2cf4ac8 | 2009-03-29 15:41:20 +0800 | [diff] [blame] | 1115 | |
David S. Miller | 9bf4852 | 2012-08-21 03:58:13 -0700 | [diff] [blame] | 1116 | config CRYPTO_AES_SPARC64 |
| 1117 | tristate "AES cipher algorithms (SPARC64)" |
| 1118 | depends on SPARC64 |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1119 | select CRYPTO_SKCIPHER |
David S. Miller | 9bf4852 | 2012-08-21 03:58:13 -0700 | [diff] [blame] | 1120 | help |
| 1121 | Use SPARC64 crypto opcodes for AES algorithm. |
| 1122 | |
| 1123 | AES cipher algorithms (FIPS-197). AES uses the Rijndael |
| 1124 | algorithm. |
| 1125 | |
| 1126 | Rijndael appears to be consistently a very good performer in |
| 1127 | both hardware and software across a wide range of computing |
| 1128 | environments regardless of its use in feedback or non-feedback |
| 1129 | modes. Its key setup time is excellent, and its key agility is |
| 1130 | good. Rijndael's very low memory requirements make it very well |
| 1131 | suited for restricted-space environments, in which it also |
| 1132 | demonstrates excellent performance. Rijndael's operations are |
| 1133 | among the easiest to defend against power and timing attacks. |
| 1134 | |
| 1135 | The AES specifies three key sizes: 128, 192 and 256 bits |
| 1136 | |
| 1137 | See <http://csrc.nist.gov/encryption/aes/> for more information. |
| 1138 | |
| 1139 | In addition to AES cipher algorithm support, the acceleration |
| 1140 | for some popular block cipher mode is supported too, including |
| 1141 | ECB and CBC. |
| 1142 | |
Markus Stockhausen | 504c614 | 2015-02-22 10:00:10 +0100 | [diff] [blame] | 1143 | config CRYPTO_AES_PPC_SPE |
| 1144 | tristate "AES cipher algorithms (PPC SPE)" |
| 1145 | depends on PPC && SPE |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1146 | select CRYPTO_SKCIPHER |
Markus Stockhausen | 504c614 | 2015-02-22 10:00:10 +0100 | [diff] [blame] | 1147 | help |
| 1148 | AES cipher algorithms (FIPS-197). Additionally the acceleration |
| 1149 | for popular block cipher modes ECB, CBC, CTR and XTS is supported. |
| 1150 | This module should only be used for low power (router) devices |
| 1151 | without hardware AES acceleration (e.g. caam crypto). It reduces the |
| 1152 | size of the AES tables from 16KB to 8KB + 256 bytes and mitigates |
| 1153 | timining attacks. Nevertheless it might be not as secure as other |
| 1154 | architecture specific assembler implementations that work on 1KB |
| 1155 | tables or 256 bytes S-boxes. |
| 1156 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1157 | config CRYPTO_ANUBIS |
| 1158 | tristate "Anubis cipher algorithm" |
Ard Biesheuvel | 1674aea | 2020-09-11 17:11:03 +0300 | [diff] [blame] | 1159 | depends on CRYPTO_USER_API_ENABLE_OBSOLETE |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1160 | select CRYPTO_ALGAPI |
| 1161 | help |
| 1162 | Anubis cipher algorithm. |
| 1163 | |
| 1164 | Anubis is a variable key length cipher which can use keys from |
| 1165 | 128 bits to 320 bits in length. It was evaluated as a entrant |
| 1166 | in the NESSIE competition. |
| 1167 | |
| 1168 | See also: |
Justin P. Mattock | 6d8de74 | 2010-09-12 10:42:47 +0800 | [diff] [blame] | 1169 | <https://www.cosic.esat.kuleuven.be/nessie/reports/> |
| 1170 | <http://www.larc.usp.br/~pbarreto/AnubisPage.html> |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1171 | |
| 1172 | config CRYPTO_ARC4 |
| 1173 | tristate "ARC4 cipher algorithm" |
Ard Biesheuvel | 9ace677 | 2020-08-31 18:16:49 +0300 | [diff] [blame] | 1174 | depends on CRYPTO_USER_API_ENABLE_OBSOLETE |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1175 | select CRYPTO_SKCIPHER |
Ard Biesheuvel | dc51f25 | 2019-06-12 18:19:53 +0200 | [diff] [blame] | 1176 | select CRYPTO_LIB_ARC4 |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1177 | help |
| 1178 | ARC4 cipher algorithm. |
| 1179 | |
| 1180 | ARC4 is a stream cipher using keys ranging from 8 bits to 2048 |
| 1181 | bits in length. This algorithm is required for driver-based |
| 1182 | WEP, but it should not be for other purposes because of the |
| 1183 | weakness of the algorithm. |
| 1184 | |
| 1185 | config CRYPTO_BLOWFISH |
| 1186 | tristate "Blowfish cipher algorithm" |
| 1187 | select CRYPTO_ALGAPI |
Jussi Kivilinna | 52ba867 | 2011-09-02 01:45:07 +0300 | [diff] [blame] | 1188 | select CRYPTO_BLOWFISH_COMMON |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1189 | help |
| 1190 | Blowfish cipher algorithm, by Bruce Schneier. |
| 1191 | |
| 1192 | This is a variable key length cipher which can use keys from 32 |
| 1193 | bits to 448 bits in length. It's fast, simple and specifically |
| 1194 | designed for use on "large microprocessors". |
| 1195 | |
| 1196 | See also: |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 1197 | <https://www.schneier.com/blowfish.html> |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1198 | |
Jussi Kivilinna | 52ba867 | 2011-09-02 01:45:07 +0300 | [diff] [blame] | 1199 | config CRYPTO_BLOWFISH_COMMON |
| 1200 | tristate |
| 1201 | help |
| 1202 | Common parts of the Blowfish cipher algorithm shared by the |
| 1203 | generic c and the assembler implementations. |
| 1204 | |
| 1205 | See also: |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 1206 | <https://www.schneier.com/blowfish.html> |
Jussi Kivilinna | 52ba867 | 2011-09-02 01:45:07 +0300 | [diff] [blame] | 1207 | |
Jussi Kivilinna | 64b94ce | 2011-09-02 01:45:22 +0300 | [diff] [blame] | 1208 | config CRYPTO_BLOWFISH_X86_64 |
| 1209 | tristate "Blowfish cipher algorithm (x86_64)" |
Al Viro | f21a7c1 | 2012-04-08 20:31:22 -0400 | [diff] [blame] | 1210 | depends on X86 && 64BIT |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1211 | select CRYPTO_SKCIPHER |
Jussi Kivilinna | 64b94ce | 2011-09-02 01:45:22 +0300 | [diff] [blame] | 1212 | select CRYPTO_BLOWFISH_COMMON |
Ard Biesheuvel | c0a6492 | 2021-01-05 17:48:01 +0100 | [diff] [blame] | 1213 | imply CRYPTO_CTR |
Jussi Kivilinna | 64b94ce | 2011-09-02 01:45:22 +0300 | [diff] [blame] | 1214 | help |
| 1215 | Blowfish cipher algorithm (x86_64), by Bruce Schneier. |
| 1216 | |
| 1217 | This is a variable key length cipher which can use keys from 32 |
| 1218 | bits to 448 bits in length. It's fast, simple and specifically |
| 1219 | designed for use on "large microprocessors". |
| 1220 | |
| 1221 | See also: |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 1222 | <https://www.schneier.com/blowfish.html> |
Jussi Kivilinna | 64b94ce | 2011-09-02 01:45:22 +0300 | [diff] [blame] | 1223 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1224 | config CRYPTO_CAMELLIA |
| 1225 | tristate "Camellia cipher algorithms" |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1226 | select CRYPTO_ALGAPI |
| 1227 | help |
| 1228 | Camellia cipher algorithms module. |
| 1229 | |
| 1230 | Camellia is a symmetric key block cipher developed jointly |
| 1231 | at NTT and Mitsubishi Electric Corporation. |
| 1232 | |
| 1233 | The Camellia specifies three key sizes: 128, 192 and 256 bits. |
| 1234 | |
| 1235 | See also: |
| 1236 | <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html> |
| 1237 | |
Jussi Kivilinna | 0b95ec5 | 2012-03-05 20:26:47 +0200 | [diff] [blame] | 1238 | config CRYPTO_CAMELLIA_X86_64 |
| 1239 | tristate "Camellia cipher algorithm (x86_64)" |
Al Viro | f21a7c1 | 2012-04-08 20:31:22 -0400 | [diff] [blame] | 1240 | depends on X86 && 64BIT |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1241 | select CRYPTO_SKCIPHER |
Ard Biesheuvel | a1f91ec | 2021-01-05 17:47:54 +0100 | [diff] [blame] | 1242 | imply CRYPTO_CTR |
Jussi Kivilinna | 0b95ec5 | 2012-03-05 20:26:47 +0200 | [diff] [blame] | 1243 | help |
| 1244 | Camellia cipher algorithm module (x86_64). |
| 1245 | |
| 1246 | Camellia is a symmetric key block cipher developed jointly |
| 1247 | at NTT and Mitsubishi Electric Corporation. |
| 1248 | |
| 1249 | The Camellia specifies three key sizes: 128, 192 and 256 bits. |
| 1250 | |
| 1251 | See also: |
| 1252 | <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html> |
| 1253 | |
Jussi Kivilinna | d9b1d2e | 2012-10-26 14:49:01 +0300 | [diff] [blame] | 1254 | config CRYPTO_CAMELLIA_AESNI_AVX_X86_64 |
| 1255 | tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX)" |
| 1256 | depends on X86 && 64BIT |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1257 | select CRYPTO_SKCIPHER |
Jussi Kivilinna | d9b1d2e | 2012-10-26 14:49:01 +0300 | [diff] [blame] | 1258 | select CRYPTO_CAMELLIA_X86_64 |
Eric Biggers | 44893bc | 2018-02-19 23:48:23 -0800 | [diff] [blame] | 1259 | select CRYPTO_SIMD |
Ard Biesheuvel | 55a7e88 | 2021-01-05 17:47:49 +0100 | [diff] [blame] | 1260 | imply CRYPTO_XTS |
Jussi Kivilinna | d9b1d2e | 2012-10-26 14:49:01 +0300 | [diff] [blame] | 1261 | help |
| 1262 | Camellia cipher algorithm module (x86_64/AES-NI/AVX). |
| 1263 | |
| 1264 | Camellia is a symmetric key block cipher developed jointly |
| 1265 | at NTT and Mitsubishi Electric Corporation. |
| 1266 | |
| 1267 | The Camellia specifies three key sizes: 128, 192 and 256 bits. |
| 1268 | |
| 1269 | See also: |
| 1270 | <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html> |
| 1271 | |
Jussi Kivilinna | f3f935a | 2013-04-13 13:47:00 +0300 | [diff] [blame] | 1272 | config CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 |
| 1273 | tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX2)" |
| 1274 | depends on X86 && 64BIT |
Jussi Kivilinna | f3f935a | 2013-04-13 13:47:00 +0300 | [diff] [blame] | 1275 | select CRYPTO_CAMELLIA_AESNI_AVX_X86_64 |
Jussi Kivilinna | f3f935a | 2013-04-13 13:47:00 +0300 | [diff] [blame] | 1276 | help |
| 1277 | Camellia cipher algorithm module (x86_64/AES-NI/AVX2). |
| 1278 | |
| 1279 | Camellia is a symmetric key block cipher developed jointly |
| 1280 | at NTT and Mitsubishi Electric Corporation. |
| 1281 | |
| 1282 | The Camellia specifies three key sizes: 128, 192 and 256 bits. |
| 1283 | |
| 1284 | See also: |
| 1285 | <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html> |
| 1286 | |
David S. Miller | 81658ad | 2012-08-28 12:05:54 -0700 | [diff] [blame] | 1287 | config CRYPTO_CAMELLIA_SPARC64 |
| 1288 | tristate "Camellia cipher algorithm (SPARC64)" |
| 1289 | depends on SPARC64 |
David S. Miller | 81658ad | 2012-08-28 12:05:54 -0700 | [diff] [blame] | 1290 | select CRYPTO_ALGAPI |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1291 | select CRYPTO_SKCIPHER |
David S. Miller | 81658ad | 2012-08-28 12:05:54 -0700 | [diff] [blame] | 1292 | help |
| 1293 | Camellia cipher algorithm module (SPARC64). |
| 1294 | |
| 1295 | Camellia is a symmetric key block cipher developed jointly |
| 1296 | at NTT and Mitsubishi Electric Corporation. |
| 1297 | |
| 1298 | The Camellia specifies three key sizes: 128, 192 and 256 bits. |
| 1299 | |
| 1300 | See also: |
| 1301 | <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html> |
| 1302 | |
Jussi Kivilinna | 044ab52 | 2012-11-13 11:43:14 +0200 | [diff] [blame] | 1303 | config CRYPTO_CAST_COMMON |
| 1304 | tristate |
| 1305 | help |
| 1306 | Common parts of the CAST cipher algorithms shared by the |
| 1307 | generic c and the assembler implementations. |
| 1308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | config CRYPTO_CAST5 |
| 1310 | tristate "CAST5 (CAST-128) cipher algorithm" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 1311 | select CRYPTO_ALGAPI |
Jussi Kivilinna | 044ab52 | 2012-11-13 11:43:14 +0200 | [diff] [blame] | 1312 | select CRYPTO_CAST_COMMON |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | help |
| 1314 | The CAST5 encryption algorithm (synonymous with CAST-128) is |
| 1315 | described in RFC2144. |
| 1316 | |
Johannes Goetzfried | 4d6d6a2 | 2012-07-11 19:37:37 +0200 | [diff] [blame] | 1317 | config CRYPTO_CAST5_AVX_X86_64 |
| 1318 | tristate "CAST5 (CAST-128) cipher algorithm (x86_64/AVX)" |
| 1319 | depends on X86 && 64BIT |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1320 | select CRYPTO_SKCIPHER |
Johannes Goetzfried | 4d6d6a2 | 2012-07-11 19:37:37 +0200 | [diff] [blame] | 1321 | select CRYPTO_CAST5 |
Eric Biggers | 1e63183 | 2018-02-19 23:48:13 -0800 | [diff] [blame] | 1322 | select CRYPTO_CAST_COMMON |
| 1323 | select CRYPTO_SIMD |
Ard Biesheuvel | e2d60e2 | 2021-01-05 17:47:56 +0100 | [diff] [blame] | 1324 | imply CRYPTO_CTR |
Johannes Goetzfried | 4d6d6a2 | 2012-07-11 19:37:37 +0200 | [diff] [blame] | 1325 | help |
| 1326 | The CAST5 encryption algorithm (synonymous with CAST-128) is |
| 1327 | described in RFC2144. |
| 1328 | |
| 1329 | This module provides the Cast5 cipher algorithm that processes |
| 1330 | sixteen blocks parallel using the AVX instruction set. |
| 1331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | config CRYPTO_CAST6 |
| 1333 | tristate "CAST6 (CAST-256) cipher algorithm" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 1334 | select CRYPTO_ALGAPI |
Jussi Kivilinna | 044ab52 | 2012-11-13 11:43:14 +0200 | [diff] [blame] | 1335 | select CRYPTO_CAST_COMMON |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | help |
| 1337 | The CAST6 encryption algorithm (synonymous with CAST-256) is |
| 1338 | described in RFC2612. |
| 1339 | |
Johannes Goetzfried | 4ea1277 | 2012-07-11 19:38:57 +0200 | [diff] [blame] | 1340 | config CRYPTO_CAST6_AVX_X86_64 |
| 1341 | tristate "CAST6 (CAST-256) cipher algorithm (x86_64/AVX)" |
| 1342 | depends on X86 && 64BIT |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1343 | select CRYPTO_SKCIPHER |
Johannes Goetzfried | 4ea1277 | 2012-07-11 19:38:57 +0200 | [diff] [blame] | 1344 | select CRYPTO_CAST6 |
Eric Biggers | 4bd9692 | 2018-02-19 23:48:15 -0800 | [diff] [blame] | 1345 | select CRYPTO_CAST_COMMON |
Eric Biggers | 4bd9692 | 2018-02-19 23:48:15 -0800 | [diff] [blame] | 1346 | select CRYPTO_SIMD |
Ard Biesheuvel | 2cc0fed | 2021-01-05 17:47:50 +0100 | [diff] [blame] | 1347 | imply CRYPTO_XTS |
Ard Biesheuvel | 7a6623c | 2021-01-05 17:47:57 +0100 | [diff] [blame] | 1348 | imply CRYPTO_CTR |
Johannes Goetzfried | 4ea1277 | 2012-07-11 19:38:57 +0200 | [diff] [blame] | 1349 | help |
| 1350 | The CAST6 encryption algorithm (synonymous with CAST-256) is |
| 1351 | described in RFC2612. |
| 1352 | |
| 1353 | This module provides the Cast6 cipher algorithm that processes |
| 1354 | eight blocks parallel using the AVX instruction set. |
| 1355 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1356 | config CRYPTO_DES |
| 1357 | tristate "DES and Triple DES EDE cipher algorithms" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 1358 | select CRYPTO_ALGAPI |
Ard Biesheuvel | 04007b0 | 2019-08-15 12:01:09 +0300 | [diff] [blame] | 1359 | select CRYPTO_LIB_DES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1361 | DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | |
David S. Miller | c5aac2d | 2012-08-25 22:37:23 -0700 | [diff] [blame] | 1363 | config CRYPTO_DES_SPARC64 |
| 1364 | tristate "DES and Triple DES EDE cipher algorithms (SPARC64)" |
Dave Jones | 97da37b | 2012-10-02 17:13:20 -0400 | [diff] [blame] | 1365 | depends on SPARC64 |
David S. Miller | c5aac2d | 2012-08-25 22:37:23 -0700 | [diff] [blame] | 1366 | select CRYPTO_ALGAPI |
Ard Biesheuvel | 04007b0 | 2019-08-15 12:01:09 +0300 | [diff] [blame] | 1367 | select CRYPTO_LIB_DES |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1368 | select CRYPTO_SKCIPHER |
David S. Miller | c5aac2d | 2012-08-25 22:37:23 -0700 | [diff] [blame] | 1369 | help |
| 1370 | DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3), |
| 1371 | optimized using SPARC64 crypto opcodes. |
| 1372 | |
Jussi Kivilinna | 6574e6c | 2014-06-09 20:59:54 +0300 | [diff] [blame] | 1373 | config CRYPTO_DES3_EDE_X86_64 |
| 1374 | tristate "Triple DES EDE cipher algorithm (x86-64)" |
| 1375 | depends on X86 && 64BIT |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1376 | select CRYPTO_SKCIPHER |
Ard Biesheuvel | 04007b0 | 2019-08-15 12:01:09 +0300 | [diff] [blame] | 1377 | select CRYPTO_LIB_DES |
Ard Biesheuvel | 768db5f | 2021-01-05 17:48:00 +0100 | [diff] [blame] | 1378 | imply CRYPTO_CTR |
Jussi Kivilinna | 6574e6c | 2014-06-09 20:59:54 +0300 | [diff] [blame] | 1379 | help |
| 1380 | Triple DES EDE (FIPS 46-3) algorithm. |
| 1381 | |
| 1382 | This module provides implementation of the Triple DES EDE cipher |
| 1383 | algorithm that is optimized for x86-64 processors. Two versions of |
| 1384 | algorithm are provided; regular processing one input block and |
| 1385 | one that processes three blocks parallel. |
| 1386 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1387 | config CRYPTO_FCRYPT |
| 1388 | tristate "FCrypt cipher algorithm" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 1389 | select CRYPTO_ALGAPI |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1390 | select CRYPTO_SKCIPHER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1392 | FCrypt algorithm used by RxRPC. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | |
| 1394 | config CRYPTO_KHAZAD |
| 1395 | tristate "Khazad cipher algorithm" |
Ard Biesheuvel | 1674aea | 2020-09-11 17:11:03 +0300 | [diff] [blame] | 1396 | depends on CRYPTO_USER_API_ENABLE_OBSOLETE |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 1397 | select CRYPTO_ALGAPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | help |
| 1399 | Khazad cipher algorithm. |
| 1400 | |
| 1401 | Khazad was a finalist in the initial NESSIE competition. It is |
| 1402 | an algorithm optimized for 64-bit processors with good performance |
| 1403 | on 32-bit processors. Khazad uses an 128 bit key size. |
| 1404 | |
| 1405 | See also: |
Justin P. Mattock | 6d8de74 | 2010-09-12 10:42:47 +0800 | [diff] [blame] | 1406 | <http://www.larc.usp.br/~pbarreto/KhazadPage.html> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 1408 | config CRYPTO_CHACHA20 |
Eric Biggers | aa76240 | 2018-11-16 17:26:22 -0800 | [diff] [blame] | 1409 | tristate "ChaCha stream cipher algorithms" |
Ard Biesheuvel | 5fb8ef2 | 2019-11-08 13:22:08 +0100 | [diff] [blame] | 1410 | select CRYPTO_LIB_CHACHA_GENERIC |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1411 | select CRYPTO_SKCIPHER |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 1412 | help |
Eric Biggers | aa76240 | 2018-11-16 17:26:22 -0800 | [diff] [blame] | 1413 | The ChaCha20, XChaCha20, and XChaCha12 stream cipher algorithms. |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 1414 | |
| 1415 | ChaCha20 is a 256-bit high-speed stream cipher designed by Daniel J. |
| 1416 | Bernstein and further specified in RFC7539 for use in IETF protocols. |
Eric Biggers | de61d7a | 2018-11-16 17:26:20 -0800 | [diff] [blame] | 1417 | This is the portable C implementation of ChaCha20. See also: |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 1418 | <https://cr.yp.to/chacha/chacha-20080128.pdf> |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 1419 | |
Eric Biggers | de61d7a | 2018-11-16 17:26:20 -0800 | [diff] [blame] | 1420 | XChaCha20 is the application of the XSalsa20 construction to ChaCha20 |
| 1421 | rather than to Salsa20. XChaCha20 extends ChaCha20's nonce length |
| 1422 | from 64 bits (or 96 bits using the RFC7539 convention) to 192 bits, |
| 1423 | while provably retaining ChaCha20's security. See also: |
| 1424 | <https://cr.yp.to/snuffle/xsalsa-20081128.pdf> |
| 1425 | |
Eric Biggers | aa76240 | 2018-11-16 17:26:22 -0800 | [diff] [blame] | 1426 | XChaCha12 is XChaCha20 reduced to 12 rounds, with correspondingly |
| 1427 | reduced security margin but increased performance. It can be needed |
| 1428 | in some performance-sensitive scenarios. |
| 1429 | |
Martin Willi | c9320b6 | 2015-07-16 19:14:01 +0200 | [diff] [blame] | 1430 | config CRYPTO_CHACHA20_X86_64 |
Eric Biggers | 4af7826 | 2018-12-04 22:20:02 -0800 | [diff] [blame] | 1431 | tristate "ChaCha stream cipher algorithms (x86_64/SSSE3/AVX2/AVX-512VL)" |
Martin Willi | c9320b6 | 2015-07-16 19:14:01 +0200 | [diff] [blame] | 1432 | depends on X86 && 64BIT |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1433 | select CRYPTO_SKCIPHER |
Ard Biesheuvel | 28e8d89 | 2019-11-08 13:22:09 +0100 | [diff] [blame] | 1434 | select CRYPTO_LIB_CHACHA_GENERIC |
Ard Biesheuvel | 84e03fa | 2019-11-08 13:22:10 +0100 | [diff] [blame] | 1435 | select CRYPTO_ARCH_HAVE_LIB_CHACHA |
Martin Willi | c9320b6 | 2015-07-16 19:14:01 +0200 | [diff] [blame] | 1436 | help |
Eric Biggers | 7a507d6 | 2018-12-04 22:20:04 -0800 | [diff] [blame] | 1437 | SSSE3, AVX2, and AVX-512VL optimized implementations of the ChaCha20, |
| 1438 | XChaCha20, and XChaCha12 stream ciphers. |
Martin Willi | c9320b6 | 2015-07-16 19:14:01 +0200 | [diff] [blame] | 1439 | |
Ard Biesheuvel | 3a2f58f | 2019-11-08 13:22:17 +0100 | [diff] [blame] | 1440 | config CRYPTO_CHACHA_MIPS |
| 1441 | tristate "ChaCha stream cipher algorithms (MIPS 32r2 optimized)" |
| 1442 | depends on CPU_MIPS32_R2 |
Eric Biggers | 660eda8 | 2019-11-16 18:53:24 -0800 | [diff] [blame] | 1443 | select CRYPTO_SKCIPHER |
Ard Biesheuvel | 3a2f58f | 2019-11-08 13:22:17 +0100 | [diff] [blame] | 1444 | select CRYPTO_ARCH_HAVE_LIB_CHACHA |
| 1445 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1446 | config CRYPTO_SEED |
| 1447 | tristate "SEED cipher algorithm" |
Ard Biesheuvel | 1674aea | 2020-09-11 17:11:03 +0300 | [diff] [blame] | 1448 | depends on CRYPTO_USER_API_ENABLE_OBSOLETE |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1449 | select CRYPTO_ALGAPI |
| 1450 | help |
| 1451 | SEED cipher algorithm (RFC4269). |
| 1452 | |
| 1453 | SEED is a 128-bit symmetric key block cipher that has been |
| 1454 | developed by KISA (Korea Information Security Agency) as a |
| 1455 | national standard encryption algorithm of the Republic of Korea. |
| 1456 | It is a 16 round block cipher with the key size of 128 bit. |
| 1457 | |
| 1458 | See also: |
| 1459 | <http://www.kisa.or.kr/kisa/seed/jsp/seed_eng.jsp> |
| 1460 | |
| 1461 | config CRYPTO_SERPENT |
| 1462 | tristate "Serpent cipher algorithm" |
| 1463 | select CRYPTO_ALGAPI |
| 1464 | help |
| 1465 | Serpent cipher algorithm, by Anderson, Biham & Knudsen. |
| 1466 | |
| 1467 | Keys are allowed to be from 0 to 256 bits in length, in steps |
Ard Biesheuvel | 784506a | 2021-02-01 19:02:30 +0100 | [diff] [blame] | 1468 | of 8 bits. |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1469 | |
| 1470 | See also: |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 1471 | <https://www.cl.cam.ac.uk/~rja14/serpent.html> |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1472 | |
Jussi Kivilinna | 937c30d | 2011-11-09 16:26:25 +0200 | [diff] [blame] | 1473 | config CRYPTO_SERPENT_SSE2_X86_64 |
| 1474 | tristate "Serpent cipher algorithm (x86_64/SSE2)" |
| 1475 | depends on X86 && 64BIT |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1476 | select CRYPTO_SKCIPHER |
Jussi Kivilinna | 937c30d | 2011-11-09 16:26:25 +0200 | [diff] [blame] | 1477 | select CRYPTO_SERPENT |
Eric Biggers | e0f409d | 2018-02-19 23:48:03 -0800 | [diff] [blame] | 1478 | select CRYPTO_SIMD |
Ard Biesheuvel | 2e9440a | 2021-01-05 17:47:55 +0100 | [diff] [blame] | 1479 | imply CRYPTO_CTR |
Jussi Kivilinna | 937c30d | 2011-11-09 16:26:25 +0200 | [diff] [blame] | 1480 | help |
| 1481 | Serpent cipher algorithm, by Anderson, Biham & Knudsen. |
| 1482 | |
| 1483 | Keys are allowed to be from 0 to 256 bits in length, in steps |
| 1484 | of 8 bits. |
| 1485 | |
Masanari Iida | 1e6232f | 2015-04-04 00:20:30 +0900 | [diff] [blame] | 1486 | This module provides Serpent cipher algorithm that processes eight |
Jussi Kivilinna | 937c30d | 2011-11-09 16:26:25 +0200 | [diff] [blame] | 1487 | blocks parallel using SSE2 instruction set. |
| 1488 | |
| 1489 | See also: |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 1490 | <https://www.cl.cam.ac.uk/~rja14/serpent.html> |
Jussi Kivilinna | 937c30d | 2011-11-09 16:26:25 +0200 | [diff] [blame] | 1491 | |
Jussi Kivilinna | 251496d | 2011-11-09 16:26:31 +0200 | [diff] [blame] | 1492 | config CRYPTO_SERPENT_SSE2_586 |
| 1493 | tristate "Serpent cipher algorithm (i586/SSE2)" |
| 1494 | depends on X86 && !64BIT |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1495 | select CRYPTO_SKCIPHER |
Jussi Kivilinna | 251496d | 2011-11-09 16:26:31 +0200 | [diff] [blame] | 1496 | select CRYPTO_SERPENT |
Eric Biggers | e0f409d | 2018-02-19 23:48:03 -0800 | [diff] [blame] | 1497 | select CRYPTO_SIMD |
Ard Biesheuvel | 2e9440a | 2021-01-05 17:47:55 +0100 | [diff] [blame] | 1498 | imply CRYPTO_CTR |
Jussi Kivilinna | 251496d | 2011-11-09 16:26:31 +0200 | [diff] [blame] | 1499 | help |
| 1500 | Serpent cipher algorithm, by Anderson, Biham & Knudsen. |
| 1501 | |
| 1502 | Keys are allowed to be from 0 to 256 bits in length, in steps |
| 1503 | of 8 bits. |
| 1504 | |
| 1505 | This module provides Serpent cipher algorithm that processes four |
| 1506 | blocks parallel using SSE2 instruction set. |
| 1507 | |
| 1508 | See also: |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 1509 | <https://www.cl.cam.ac.uk/~rja14/serpent.html> |
Jussi Kivilinna | 251496d | 2011-11-09 16:26:31 +0200 | [diff] [blame] | 1510 | |
Johannes Goetzfried | 7efe407 | 2012-06-12 16:47:43 +0800 | [diff] [blame] | 1511 | config CRYPTO_SERPENT_AVX_X86_64 |
| 1512 | tristate "Serpent cipher algorithm (x86_64/AVX)" |
| 1513 | depends on X86 && 64BIT |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1514 | select CRYPTO_SKCIPHER |
Johannes Goetzfried | 7efe407 | 2012-06-12 16:47:43 +0800 | [diff] [blame] | 1515 | select CRYPTO_SERPENT |
Eric Biggers | e16bf97 | 2018-02-19 23:48:06 -0800 | [diff] [blame] | 1516 | select CRYPTO_SIMD |
Ard Biesheuvel | 9ec0af8 | 2021-01-05 17:47:51 +0100 | [diff] [blame] | 1517 | imply CRYPTO_XTS |
Ard Biesheuvel | 2e9440a | 2021-01-05 17:47:55 +0100 | [diff] [blame] | 1518 | imply CRYPTO_CTR |
Johannes Goetzfried | 7efe407 | 2012-06-12 16:47:43 +0800 | [diff] [blame] | 1519 | help |
| 1520 | Serpent cipher algorithm, by Anderson, Biham & Knudsen. |
| 1521 | |
| 1522 | Keys are allowed to be from 0 to 256 bits in length, in steps |
| 1523 | of 8 bits. |
| 1524 | |
| 1525 | This module provides the Serpent cipher algorithm that processes |
| 1526 | eight blocks parallel using the AVX instruction set. |
| 1527 | |
| 1528 | See also: |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 1529 | <https://www.cl.cam.ac.uk/~rja14/serpent.html> |
Johannes Goetzfried | 7efe407 | 2012-06-12 16:47:43 +0800 | [diff] [blame] | 1530 | |
Jussi Kivilinna | 56d76c9 | 2013-04-13 13:46:55 +0300 | [diff] [blame] | 1531 | config CRYPTO_SERPENT_AVX2_X86_64 |
| 1532 | tristate "Serpent cipher algorithm (x86_64/AVX2)" |
| 1533 | depends on X86 && 64BIT |
Jussi Kivilinna | 56d76c9 | 2013-04-13 13:46:55 +0300 | [diff] [blame] | 1534 | select CRYPTO_SERPENT_AVX_X86_64 |
Jussi Kivilinna | 56d76c9 | 2013-04-13 13:46:55 +0300 | [diff] [blame] | 1535 | help |
| 1536 | Serpent cipher algorithm, by Anderson, Biham & Knudsen. |
| 1537 | |
| 1538 | Keys are allowed to be from 0 to 256 bits in length, in steps |
| 1539 | of 8 bits. |
| 1540 | |
| 1541 | This module provides Serpent cipher algorithm that processes 16 |
| 1542 | blocks parallel using AVX2 instruction set. |
| 1543 | |
| 1544 | See also: |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 1545 | <https://www.cl.cam.ac.uk/~rja14/serpent.html> |
Jussi Kivilinna | 56d76c9 | 2013-04-13 13:46:55 +0300 | [diff] [blame] | 1546 | |
Gilad Ben-Yossef | 747c8ce | 2018-03-06 09:44:42 +0000 | [diff] [blame] | 1547 | config CRYPTO_SM4 |
| 1548 | tristate "SM4 cipher algorithm" |
| 1549 | select CRYPTO_ALGAPI |
Tianjia Zhang | 2b31277 | 2021-07-20 11:46:39 +0800 | [diff] [blame] | 1550 | select CRYPTO_LIB_SM4 |
Gilad Ben-Yossef | 747c8ce | 2018-03-06 09:44:42 +0000 | [diff] [blame] | 1551 | help |
| 1552 | SM4 cipher algorithms (OSCCA GB/T 32907-2016). |
| 1553 | |
| 1554 | SM4 (GBT.32907-2016) is a cryptographic standard issued by the |
| 1555 | Organization of State Commercial Administration of China (OSCCA) |
| 1556 | as an authorized cryptographic algorithms for the use within China. |
| 1557 | |
| 1558 | SMS4 was originally created for use in protecting wireless |
| 1559 | networks, and is mandated in the Chinese National Standard for |
| 1560 | Wireless LAN WAPI (Wired Authentication and Privacy Infrastructure) |
| 1561 | (GB.15629.11-2003). |
| 1562 | |
| 1563 | The latest SM4 standard (GBT.32907-2016) was proposed by OSCCA and |
| 1564 | standardized through TC 260 of the Standardization Administration |
| 1565 | of the People's Republic of China (SAC). |
| 1566 | |
| 1567 | The input, output, and key of SMS4 are each 128 bits. |
| 1568 | |
| 1569 | See also: <https://eprint.iacr.org/2008/329.pdf> |
| 1570 | |
| 1571 | If unsure, say N. |
| 1572 | |
Tianjia Zhang | a7ee22e | 2021-07-20 11:46:41 +0800 | [diff] [blame] | 1573 | config CRYPTO_SM4_AESNI_AVX_X86_64 |
| 1574 | tristate "SM4 cipher algorithm (x86_64/AES-NI/AVX)" |
| 1575 | depends on X86 && 64BIT |
| 1576 | select CRYPTO_SKCIPHER |
| 1577 | select CRYPTO_SIMD |
| 1578 | select CRYPTO_ALGAPI |
| 1579 | select CRYPTO_LIB_SM4 |
| 1580 | help |
| 1581 | SM4 cipher algorithms (OSCCA GB/T 32907-2016) (x86_64/AES-NI/AVX). |
| 1582 | |
| 1583 | SM4 (GBT.32907-2016) is a cryptographic standard issued by the |
| 1584 | Organization of State Commercial Administration of China (OSCCA) |
| 1585 | as an authorized cryptographic algorithms for the use within China. |
| 1586 | |
| 1587 | This is SM4 optimized implementation using AES-NI/AVX/x86_64 |
| 1588 | instruction set for block cipher. Through two affine transforms, |
| 1589 | we can use the AES S-Box to simulate the SM4 S-Box to achieve the |
| 1590 | effect of instruction acceleration. |
| 1591 | |
| 1592 | If unsure, say N. |
| 1593 | |
Tianjia Zhang | 5b2efa2 | 2021-08-18 11:31:17 +0800 | [diff] [blame] | 1594 | config CRYPTO_SM4_AESNI_AVX2_X86_64 |
| 1595 | tristate "SM4 cipher algorithm (x86_64/AES-NI/AVX2)" |
| 1596 | depends on X86 && 64BIT |
| 1597 | select CRYPTO_SKCIPHER |
| 1598 | select CRYPTO_SIMD |
| 1599 | select CRYPTO_ALGAPI |
| 1600 | select CRYPTO_LIB_SM4 |
| 1601 | select CRYPTO_SM4_AESNI_AVX_X86_64 |
| 1602 | help |
| 1603 | SM4 cipher algorithms (OSCCA GB/T 32907-2016) (x86_64/AES-NI/AVX2). |
| 1604 | |
| 1605 | SM4 (GBT.32907-2016) is a cryptographic standard issued by the |
| 1606 | Organization of State Commercial Administration of China (OSCCA) |
| 1607 | as an authorized cryptographic algorithms for the use within China. |
| 1608 | |
| 1609 | This is SM4 optimized implementation using AES-NI/AVX2/x86_64 |
| 1610 | instruction set for block cipher. Through two affine transforms, |
| 1611 | we can use the AES S-Box to simulate the SM4 S-Box to achieve the |
| 1612 | effect of instruction acceleration. |
| 1613 | |
| 1614 | If unsure, say N. |
| 1615 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1616 | config CRYPTO_TEA |
| 1617 | tristate "TEA, XTEA and XETA cipher algorithms" |
Ard Biesheuvel | 1674aea | 2020-09-11 17:11:03 +0300 | [diff] [blame] | 1618 | depends on CRYPTO_USER_API_ENABLE_OBSOLETE |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1619 | select CRYPTO_ALGAPI |
| 1620 | help |
| 1621 | TEA cipher algorithm. |
| 1622 | |
| 1623 | Tiny Encryption Algorithm is a simple cipher that uses |
| 1624 | many rounds for security. It is very fast and uses |
| 1625 | little memory. |
| 1626 | |
| 1627 | Xtendend Tiny Encryption Algorithm is a modification to |
| 1628 | the TEA algorithm to address a potential key weakness |
| 1629 | in the TEA algorithm. |
| 1630 | |
| 1631 | Xtendend Encryption Tiny Algorithm is a mis-implementation |
| 1632 | of the XTEA algorithm for compatibility purposes. |
| 1633 | |
| 1634 | config CRYPTO_TWOFISH |
| 1635 | tristate "Twofish cipher algorithm" |
| 1636 | select CRYPTO_ALGAPI |
| 1637 | select CRYPTO_TWOFISH_COMMON |
| 1638 | help |
| 1639 | Twofish cipher algorithm. |
| 1640 | |
| 1641 | Twofish was submitted as an AES (Advanced Encryption Standard) |
| 1642 | candidate cipher by researchers at CounterPane Systems. It is a |
| 1643 | 16 round block cipher supporting key sizes of 128, 192, and 256 |
| 1644 | bits. |
| 1645 | |
| 1646 | See also: |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 1647 | <https://www.schneier.com/twofish.html> |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1648 | |
| 1649 | config CRYPTO_TWOFISH_COMMON |
| 1650 | tristate |
| 1651 | help |
| 1652 | Common parts of the Twofish cipher algorithm shared by the |
| 1653 | generic c and the assembler implementations. |
| 1654 | |
| 1655 | config CRYPTO_TWOFISH_586 |
| 1656 | tristate "Twofish cipher algorithms (i586)" |
| 1657 | depends on (X86 || UML_X86) && !64BIT |
| 1658 | select CRYPTO_ALGAPI |
| 1659 | select CRYPTO_TWOFISH_COMMON |
Ard Biesheuvel | f43dcaf | 2021-01-05 17:47:58 +0100 | [diff] [blame] | 1660 | imply CRYPTO_CTR |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1661 | help |
| 1662 | Twofish cipher algorithm. |
| 1663 | |
| 1664 | Twofish was submitted as an AES (Advanced Encryption Standard) |
| 1665 | candidate cipher by researchers at CounterPane Systems. It is a |
| 1666 | 16 round block cipher supporting key sizes of 128, 192, and 256 |
| 1667 | bits. |
| 1668 | |
| 1669 | See also: |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 1670 | <https://www.schneier.com/twofish.html> |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1671 | |
| 1672 | config CRYPTO_TWOFISH_X86_64 |
| 1673 | tristate "Twofish cipher algorithm (x86_64)" |
| 1674 | depends on (X86 || UML_X86) && 64BIT |
| 1675 | select CRYPTO_ALGAPI |
| 1676 | select CRYPTO_TWOFISH_COMMON |
Ard Biesheuvel | f43dcaf | 2021-01-05 17:47:58 +0100 | [diff] [blame] | 1677 | imply CRYPTO_CTR |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1678 | help |
| 1679 | Twofish cipher algorithm (x86_64). |
| 1680 | |
| 1681 | Twofish was submitted as an AES (Advanced Encryption Standard) |
| 1682 | candidate cipher by researchers at CounterPane Systems. It is a |
| 1683 | 16 round block cipher supporting key sizes of 128, 192, and 256 |
| 1684 | bits. |
| 1685 | |
| 1686 | See also: |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 1687 | <https://www.schneier.com/twofish.html> |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1688 | |
Jussi Kivilinna | 8280daa | 2011-09-26 16:47:25 +0300 | [diff] [blame] | 1689 | config CRYPTO_TWOFISH_X86_64_3WAY |
| 1690 | tristate "Twofish cipher algorithm (x86_64, 3-way parallel)" |
Al Viro | f21a7c1 | 2012-04-08 20:31:22 -0400 | [diff] [blame] | 1691 | depends on X86 && 64BIT |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1692 | select CRYPTO_SKCIPHER |
Jussi Kivilinna | 8280daa | 2011-09-26 16:47:25 +0300 | [diff] [blame] | 1693 | select CRYPTO_TWOFISH_COMMON |
| 1694 | select CRYPTO_TWOFISH_X86_64 |
| 1695 | help |
| 1696 | Twofish cipher algorithm (x86_64, 3-way parallel). |
| 1697 | |
| 1698 | Twofish was submitted as an AES (Advanced Encryption Standard) |
| 1699 | candidate cipher by researchers at CounterPane Systems. It is a |
| 1700 | 16 round block cipher supporting key sizes of 128, 192, and 256 |
| 1701 | bits. |
| 1702 | |
| 1703 | This module provides Twofish cipher algorithm that processes three |
| 1704 | blocks parallel, utilizing resources of out-of-order CPUs better. |
| 1705 | |
| 1706 | See also: |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 1707 | <https://www.schneier.com/twofish.html> |
Jussi Kivilinna | 8280daa | 2011-09-26 16:47:25 +0300 | [diff] [blame] | 1708 | |
Johannes Goetzfried | 107778b5 | 2012-05-28 15:54:24 +0200 | [diff] [blame] | 1709 | config CRYPTO_TWOFISH_AVX_X86_64 |
| 1710 | tristate "Twofish cipher algorithm (x86_64/AVX)" |
| 1711 | depends on X86 && 64BIT |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1712 | select CRYPTO_SKCIPHER |
Eric Biggers | 0e6ab46 | 2018-02-19 23:48:11 -0800 | [diff] [blame] | 1713 | select CRYPTO_SIMD |
Johannes Goetzfried | 107778b5 | 2012-05-28 15:54:24 +0200 | [diff] [blame] | 1714 | select CRYPTO_TWOFISH_COMMON |
| 1715 | select CRYPTO_TWOFISH_X86_64 |
| 1716 | select CRYPTO_TWOFISH_X86_64_3WAY |
Ard Biesheuvel | da4df93 | 2021-01-05 17:47:52 +0100 | [diff] [blame] | 1717 | imply CRYPTO_XTS |
Johannes Goetzfried | 107778b5 | 2012-05-28 15:54:24 +0200 | [diff] [blame] | 1718 | help |
| 1719 | Twofish cipher algorithm (x86_64/AVX). |
| 1720 | |
| 1721 | Twofish was submitted as an AES (Advanced Encryption Standard) |
| 1722 | candidate cipher by researchers at CounterPane Systems. It is a |
| 1723 | 16 round block cipher supporting key sizes of 128, 192, and 256 |
| 1724 | bits. |
| 1725 | |
| 1726 | This module provides the Twofish cipher algorithm that processes |
| 1727 | eight blocks parallel using the AVX Instruction Set. |
| 1728 | |
| 1729 | See also: |
Alexander A. Klimov | 9332a9e | 2020-07-19 18:49:59 +0200 | [diff] [blame] | 1730 | <https://www.schneier.com/twofish.html> |
Johannes Goetzfried | 107778b5 | 2012-05-28 15:54:24 +0200 | [diff] [blame] | 1731 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1732 | comment "Compression" |
| 1733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | config CRYPTO_DEFLATE |
| 1735 | tristate "Deflate compression algorithm" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 1736 | select CRYPTO_ALGAPI |
Giovanni Cabiddu | f6ded09 | 2016-10-21 13:19:53 +0100 | [diff] [blame] | 1737 | select CRYPTO_ACOMP2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1738 | select ZLIB_INFLATE |
| 1739 | select ZLIB_DEFLATE |
| 1740 | help |
| 1741 | This is the Deflate algorithm (RFC1951), specified for use in |
| 1742 | IPSec with the IPCOMP protocol (RFC3173, RFC2394). |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 1743 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 | You will most probably want this if using IPSec. |
| 1745 | |
Zoltan Sogor | 0b77abb | 2007-12-07 16:53:23 +0800 | [diff] [blame] | 1746 | config CRYPTO_LZO |
| 1747 | tristate "LZO compression algorithm" |
| 1748 | select CRYPTO_ALGAPI |
Giovanni Cabiddu | ac9d2c4 | 2016-10-21 13:19:49 +0100 | [diff] [blame] | 1749 | select CRYPTO_ACOMP2 |
Zoltan Sogor | 0b77abb | 2007-12-07 16:53:23 +0800 | [diff] [blame] | 1750 | select LZO_COMPRESS |
| 1751 | select LZO_DECOMPRESS |
| 1752 | help |
| 1753 | This is the LZO algorithm. |
| 1754 | |
Seth Jennings | 35a1fc1 | 2012-07-19 09:42:41 -0500 | [diff] [blame] | 1755 | config CRYPTO_842 |
| 1756 | tristate "842 compression algorithm" |
Dan Streetman | 2062c5b | 2015-05-07 13:49:15 -0400 | [diff] [blame] | 1757 | select CRYPTO_ALGAPI |
Giovanni Cabiddu | 6a8de3a | 2016-10-21 13:19:52 +0100 | [diff] [blame] | 1758 | select CRYPTO_ACOMP2 |
Dan Streetman | 2062c5b | 2015-05-07 13:49:15 -0400 | [diff] [blame] | 1759 | select 842_COMPRESS |
| 1760 | select 842_DECOMPRESS |
Seth Jennings | 35a1fc1 | 2012-07-19 09:42:41 -0500 | [diff] [blame] | 1761 | help |
| 1762 | This is the 842 algorithm. |
| 1763 | |
Chanho Min | 0ea8530 | 2013-07-08 16:01:51 -0700 | [diff] [blame] | 1764 | config CRYPTO_LZ4 |
| 1765 | tristate "LZ4 compression algorithm" |
| 1766 | select CRYPTO_ALGAPI |
Giovanni Cabiddu | 8cd9330 | 2016-10-21 13:19:50 +0100 | [diff] [blame] | 1767 | select CRYPTO_ACOMP2 |
Chanho Min | 0ea8530 | 2013-07-08 16:01:51 -0700 | [diff] [blame] | 1768 | select LZ4_COMPRESS |
| 1769 | select LZ4_DECOMPRESS |
| 1770 | help |
| 1771 | This is the LZ4 algorithm. |
| 1772 | |
| 1773 | config CRYPTO_LZ4HC |
| 1774 | tristate "LZ4HC compression algorithm" |
| 1775 | select CRYPTO_ALGAPI |
Giovanni Cabiddu | 91d53d9 | 2016-10-21 13:19:51 +0100 | [diff] [blame] | 1776 | select CRYPTO_ACOMP2 |
Chanho Min | 0ea8530 | 2013-07-08 16:01:51 -0700 | [diff] [blame] | 1777 | select LZ4HC_COMPRESS |
| 1778 | select LZ4_DECOMPRESS |
| 1779 | help |
| 1780 | This is the LZ4 high compression mode algorithm. |
| 1781 | |
Nick Terrell | d28fc3d | 2018-03-30 12:14:53 -0700 | [diff] [blame] | 1782 | config CRYPTO_ZSTD |
| 1783 | tristate "Zstd compression algorithm" |
| 1784 | select CRYPTO_ALGAPI |
| 1785 | select CRYPTO_ACOMP2 |
| 1786 | select ZSTD_COMPRESS |
| 1787 | select ZSTD_DECOMPRESS |
| 1788 | help |
| 1789 | This is the zstd algorithm. |
| 1790 | |
Neil Horman | 17f0f4a | 2008-08-14 22:15:52 +1000 | [diff] [blame] | 1791 | comment "Random Number Generation" |
| 1792 | |
| 1793 | config CRYPTO_ANSI_CPRNG |
| 1794 | tristate "Pseudo Random Number Generation for Cryptographic modules" |
| 1795 | select CRYPTO_AES |
| 1796 | select CRYPTO_RNG |
Neil Horman | 17f0f4a | 2008-08-14 22:15:52 +1000 | [diff] [blame] | 1797 | help |
| 1798 | This option enables the generic pseudo random number generator |
| 1799 | for cryptographic modules. Uses the Algorithm specified in |
Jiri Kosina | 7dd607e | 2010-01-27 01:00:10 +0100 | [diff] [blame] | 1800 | ANSI X9.31 A.2.4. Note that this option must be enabled if |
| 1801 | CRYPTO_FIPS is selected |
Neil Horman | 17f0f4a | 2008-08-14 22:15:52 +1000 | [diff] [blame] | 1802 | |
Herbert Xu | f2c89a1 | 2014-07-04 22:15:08 +0800 | [diff] [blame] | 1803 | menuconfig CRYPTO_DRBG_MENU |
Stephan Mueller | 419090c | 2014-05-31 17:22:31 +0200 | [diff] [blame] | 1804 | tristate "NIST SP800-90A DRBG" |
Stephan Mueller | 419090c | 2014-05-31 17:22:31 +0200 | [diff] [blame] | 1805 | help |
| 1806 | NIST SP800-90A compliant DRBG. In the following submenu, one or |
| 1807 | more of the DRBG types must be selected. |
| 1808 | |
Herbert Xu | f2c89a1 | 2014-07-04 22:15:08 +0800 | [diff] [blame] | 1809 | if CRYPTO_DRBG_MENU |
Stephan Mueller | 419090c | 2014-05-31 17:22:31 +0200 | [diff] [blame] | 1810 | |
| 1811 | config CRYPTO_DRBG_HMAC |
Herbert Xu | 401e423 | 2015-06-03 14:49:31 +0800 | [diff] [blame] | 1812 | bool |
Stephan Mueller | 419090c | 2014-05-31 17:22:31 +0200 | [diff] [blame] | 1813 | default y |
Stephan Mueller | 419090c | 2014-05-31 17:22:31 +0200 | [diff] [blame] | 1814 | select CRYPTO_HMAC |
Stephan Mueller | 5261cdf | 2021-06-30 12:32:52 +0200 | [diff] [blame] | 1815 | select CRYPTO_SHA512 |
Stephan Mueller | 419090c | 2014-05-31 17:22:31 +0200 | [diff] [blame] | 1816 | |
| 1817 | config CRYPTO_DRBG_HASH |
| 1818 | bool "Enable Hash DRBG" |
Herbert Xu | 826775b | 2015-06-11 08:55:10 +0800 | [diff] [blame] | 1819 | select CRYPTO_SHA256 |
Stephan Mueller | 419090c | 2014-05-31 17:22:31 +0200 | [diff] [blame] | 1820 | help |
| 1821 | Enable the Hash DRBG variant as defined in NIST SP800-90A. |
| 1822 | |
| 1823 | config CRYPTO_DRBG_CTR |
| 1824 | bool "Enable CTR DRBG" |
Stephan Mueller | 419090c | 2014-05-31 17:22:31 +0200 | [diff] [blame] | 1825 | select CRYPTO_AES |
Corentin Labbe | d6fc1a4 | 2020-04-24 13:40:47 +0000 | [diff] [blame] | 1826 | select CRYPTO_CTR |
Stephan Mueller | 419090c | 2014-05-31 17:22:31 +0200 | [diff] [blame] | 1827 | help |
| 1828 | Enable the CTR DRBG variant as defined in NIST SP800-90A. |
| 1829 | |
Herbert Xu | f2c89a1 | 2014-07-04 22:15:08 +0800 | [diff] [blame] | 1830 | config CRYPTO_DRBG |
| 1831 | tristate |
Herbert Xu | 401e423 | 2015-06-03 14:49:31 +0800 | [diff] [blame] | 1832 | default CRYPTO_DRBG_MENU |
Herbert Xu | f2c89a1 | 2014-07-04 22:15:08 +0800 | [diff] [blame] | 1833 | select CRYPTO_RNG |
Stephan Mueller | bb5530e | 2015-05-25 15:10:20 +0200 | [diff] [blame] | 1834 | select CRYPTO_JITTERENTROPY |
Herbert Xu | f2c89a1 | 2014-07-04 22:15:08 +0800 | [diff] [blame] | 1835 | |
| 1836 | endif # if CRYPTO_DRBG_MENU |
Stephan Mueller | 419090c | 2014-05-31 17:22:31 +0200 | [diff] [blame] | 1837 | |
Stephan Mueller | bb5530e | 2015-05-25 15:10:20 +0200 | [diff] [blame] | 1838 | config CRYPTO_JITTERENTROPY |
| 1839 | tristate "Jitterentropy Non-Deterministic Random Number Generator" |
Arnd Bergmann | 2f313e0 | 2016-01-26 14:47:10 +0100 | [diff] [blame] | 1840 | select CRYPTO_RNG |
Stephan Mueller | bb5530e | 2015-05-25 15:10:20 +0200 | [diff] [blame] | 1841 | help |
| 1842 | The Jitterentropy RNG is a noise that is intended |
| 1843 | to provide seed to another RNG. The RNG does not |
| 1844 | perform any cryptographic whitening of the generated |
| 1845 | random numbers. This Jitterentropy RNG registers with |
| 1846 | the kernel crypto API and can be used by any caller. |
| 1847 | |
Stephan Müller | 026a733 | 2021-11-19 07:55:58 +0100 | [diff] [blame] | 1848 | config CRYPTO_KDF800108_CTR |
| 1849 | tristate |
Stephan Müller | 304b4ac | 2021-12-21 20:31:42 +0100 | [diff] [blame] | 1850 | select CRYPTO_SHA256 |
Stephan Müller | 026a733 | 2021-11-19 07:55:58 +0100 | [diff] [blame] | 1851 | |
Herbert Xu | 03c8efc | 2010-10-19 21:12:39 +0800 | [diff] [blame] | 1852 | config CRYPTO_USER_API |
| 1853 | tristate |
| 1854 | |
Herbert Xu | fe869cd | 2010-10-19 21:23:00 +0800 | [diff] [blame] | 1855 | config CRYPTO_USER_API_HASH |
| 1856 | tristate "User-space interface for hash algorithms" |
Herbert Xu | 7451708 | 2010-11-29 22:56:03 +0800 | [diff] [blame] | 1857 | depends on NET |
Herbert Xu | fe869cd | 2010-10-19 21:23:00 +0800 | [diff] [blame] | 1858 | select CRYPTO_HASH |
| 1859 | select CRYPTO_USER_API |
| 1860 | help |
| 1861 | This option enables the user-spaces interface for hash |
| 1862 | algorithms. |
| 1863 | |
Herbert Xu | 8ff5909 | 2010-10-19 21:31:55 +0800 | [diff] [blame] | 1864 | config CRYPTO_USER_API_SKCIPHER |
| 1865 | tristate "User-space interface for symmetric key cipher algorithms" |
Herbert Xu | 7451708 | 2010-11-29 22:56:03 +0800 | [diff] [blame] | 1866 | depends on NET |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1867 | select CRYPTO_SKCIPHER |
Herbert Xu | 8ff5909 | 2010-10-19 21:31:55 +0800 | [diff] [blame] | 1868 | select CRYPTO_USER_API |
| 1869 | help |
| 1870 | This option enables the user-spaces interface for symmetric |
| 1871 | key cipher algorithms. |
| 1872 | |
Stephan Mueller | 2f375538 | 2014-12-25 23:00:39 +0100 | [diff] [blame] | 1873 | config CRYPTO_USER_API_RNG |
| 1874 | tristate "User-space interface for random number generator algorithms" |
| 1875 | depends on NET |
| 1876 | select CRYPTO_RNG |
| 1877 | select CRYPTO_USER_API |
| 1878 | help |
| 1879 | This option enables the user-spaces interface for random |
| 1880 | number generator algorithms. |
| 1881 | |
Elena Petrova | 77ebdab | 2020-09-18 16:42:16 +0100 | [diff] [blame] | 1882 | config CRYPTO_USER_API_RNG_CAVP |
| 1883 | bool "Enable CAVP testing of DRBG" |
| 1884 | depends on CRYPTO_USER_API_RNG && CRYPTO_DRBG |
| 1885 | help |
| 1886 | This option enables extra API for CAVP testing via the user-space |
| 1887 | interface: resetting of DRBG entropy, and providing Additional Data. |
| 1888 | This should only be enabled for CAVP testing. You should say |
| 1889 | no unless you know what this is. |
| 1890 | |
Herbert Xu | b64a2d9 | 2015-05-28 11:30:35 +0800 | [diff] [blame] | 1891 | config CRYPTO_USER_API_AEAD |
| 1892 | tristate "User-space interface for AEAD cipher algorithms" |
| 1893 | depends on NET |
| 1894 | select CRYPTO_AEAD |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 1895 | select CRYPTO_SKCIPHER |
Stephan Mueller | 72548b0 | 2017-07-30 14:32:58 +0200 | [diff] [blame] | 1896 | select CRYPTO_NULL |
Herbert Xu | b64a2d9 | 2015-05-28 11:30:35 +0800 | [diff] [blame] | 1897 | select CRYPTO_USER_API |
| 1898 | help |
| 1899 | This option enables the user-spaces interface for AEAD |
| 1900 | cipher algorithms. |
| 1901 | |
Ard Biesheuvel | 9ace677 | 2020-08-31 18:16:49 +0300 | [diff] [blame] | 1902 | config CRYPTO_USER_API_ENABLE_OBSOLETE |
| 1903 | bool "Enable obsolete cryptographic algorithms for userspace" |
| 1904 | depends on CRYPTO_USER_API |
| 1905 | default y |
| 1906 | help |
| 1907 | Allow obsolete cryptographic algorithms to be selected that have |
| 1908 | already been phased out from internal use by the kernel, and are |
| 1909 | only useful for userspace clients that still rely on them. |
| 1910 | |
Corentin Labbe | cac5818 | 2018-09-19 10:10:54 +0000 | [diff] [blame] | 1911 | config CRYPTO_STATS |
| 1912 | bool "Crypto usage statistics for User-space" |
Corentin Labbe | a6a3138 | 2018-11-29 14:42:17 +0000 | [diff] [blame] | 1913 | depends on CRYPTO_USER |
Corentin Labbe | cac5818 | 2018-09-19 10:10:54 +0000 | [diff] [blame] | 1914 | help |
| 1915 | This option enables the gathering of crypto stats. |
| 1916 | This will collect: |
| 1917 | - encrypt/decrypt size and numbers of symmeric operations |
| 1918 | - compress/decompress size and numbers of compress operations |
| 1919 | - size and numbers of hash operations |
| 1920 | - encrypt/decrypt/sign/verify numbers for asymmetric operations |
| 1921 | - generate/seed numbers for rng operations |
| 1922 | |
Dmitry Kasatkin | ee08997 | 2013-05-06 15:40:01 +0300 | [diff] [blame] | 1923 | config CRYPTO_HASH_INFO |
| 1924 | bool |
| 1925 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1926 | source "drivers/crypto/Kconfig" |
Masahiro Yamada | 8636a1f | 2018-12-11 20:01:04 +0900 | [diff] [blame] | 1927 | source "crypto/asymmetric_keys/Kconfig" |
| 1928 | source "certs/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1929 | |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 1930 | endif # if CRYPTO |