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