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