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