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