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" |
| 26 | help |
| 27 | This options enables the fips boot option which is |
| 28 | required if you want to system to operate in a FIPS 200 |
| 29 | certification. You should say no unless you know what |
| 30 | this is. |
| 31 | |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 32 | config CRYPTO_ALGAPI |
| 33 | tristate |
| 34 | help |
| 35 | This option provides the API for cryptographic algorithms. |
| 36 | |
Herbert Xu | 1ae9782 | 2007-08-30 15:36:14 +0800 | [diff] [blame] | 37 | config CRYPTO_AEAD |
| 38 | tristate |
| 39 | select CRYPTO_ALGAPI |
| 40 | |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 41 | config CRYPTO_BLKCIPHER |
| 42 | tristate |
| 43 | select CRYPTO_ALGAPI |
Herbert Xu | a0f000e | 2008-08-14 22:21:31 +1000 | [diff] [blame] | 44 | select CRYPTO_RNG |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 45 | |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 46 | config CRYPTO_HASH |
| 47 | tristate |
| 48 | select CRYPTO_ALGAPI |
| 49 | |
Neil Horman | 17f0f4a | 2008-08-14 22:15:52 +1000 | [diff] [blame] | 50 | config CRYPTO_RNG |
| 51 | tristate |
| 52 | select CRYPTO_ALGAPI |
| 53 | |
Herbert Xu | 2b8c19d | 2006-09-21 11:31:44 +1000 | [diff] [blame] | 54 | config CRYPTO_MANAGER |
| 55 | tristate "Cryptographic algorithm manager" |
Herbert Xu | da7f033 | 2008-07-31 17:08:25 +0800 | [diff] [blame] | 56 | select CRYPTO_AEAD |
| 57 | select CRYPTO_HASH |
| 58 | select CRYPTO_BLKCIPHER |
Herbert Xu | 2b8c19d | 2006-09-21 11:31:44 +1000 | [diff] [blame] | 59 | help |
| 60 | Create default cryptographic template instantiations such as |
| 61 | cbc(aes). |
| 62 | |
Rik Snel | c494e07 | 2006-11-29 18:59:44 +1100 | [diff] [blame] | 63 | config CRYPTO_GF128MUL |
| 64 | tristate "GF(2^128) multiplication functions (EXPERIMENTAL)" |
| 65 | depends on EXPERIMENTAL |
| 66 | help |
| 67 | Efficient table driven implementation of multiplications in the |
| 68 | field GF(2^128). This is needed by some cypher modes. This |
| 69 | option will be selected automatically if you select such a |
| 70 | cipher mode. Only select this option by hand if you expect to load |
| 71 | an external module that requires these functions. |
| 72 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 73 | config CRYPTO_NULL |
| 74 | tristate "Null algorithms" |
| 75 | select CRYPTO_ALGAPI |
| 76 | select CRYPTO_BLKCIPHER |
| 77 | help |
| 78 | These are 'Null' algorithms, used by IPsec, which do nothing. |
| 79 | |
| 80 | config CRYPTO_CRYPTD |
| 81 | tristate "Software async crypto daemon" |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 82 | select CRYPTO_BLKCIPHER |
Loc Ho | b8a2825 | 2008-05-14 21:23:00 +0800 | [diff] [blame] | 83 | select CRYPTO_HASH |
Herbert Xu | 4351840 | 2006-10-16 21:28:58 +1000 | [diff] [blame] | 84 | select CRYPTO_MANAGER |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 85 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 86 | This is a generic software asynchronous crypto daemon that |
| 87 | converts an arbitrary synchronous software crypto algorithm |
| 88 | into an asynchronous algorithm that executes in a kernel thread. |
| 89 | |
| 90 | config CRYPTO_AUTHENC |
| 91 | tristate "Authenc support" |
| 92 | select CRYPTO_AEAD |
| 93 | select CRYPTO_BLKCIPHER |
| 94 | select CRYPTO_MANAGER |
| 95 | select CRYPTO_HASH |
| 96 | help |
| 97 | Authenc: Combined mode wrapper for IPsec. |
| 98 | This is required for IPSec. |
| 99 | |
| 100 | config CRYPTO_TEST |
| 101 | tristate "Testing module" |
| 102 | depends on m |
Herbert Xu | da7f033 | 2008-07-31 17:08:25 +0800 | [diff] [blame] | 103 | select CRYPTO_MANAGER |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 104 | help |
| 105 | Quick & dirty crypto test module. |
| 106 | |
| 107 | comment "Authenticated Encryption with Associated Data" |
| 108 | |
| 109 | config CRYPTO_CCM |
| 110 | tristate "CCM support" |
| 111 | select CRYPTO_CTR |
| 112 | select CRYPTO_AEAD |
| 113 | help |
| 114 | Support for Counter with CBC MAC. Required for IPsec. |
| 115 | |
| 116 | config CRYPTO_GCM |
| 117 | tristate "GCM/GMAC support" |
| 118 | select CRYPTO_CTR |
| 119 | select CRYPTO_AEAD |
| 120 | select CRYPTO_GF128MUL |
| 121 | help |
| 122 | Support for Galois/Counter Mode (GCM) and Galois Message |
| 123 | Authentication Code (GMAC). Required for IPSec. |
| 124 | |
| 125 | config CRYPTO_SEQIV |
| 126 | tristate "Sequence Number IV Generator" |
| 127 | select CRYPTO_AEAD |
| 128 | select CRYPTO_BLKCIPHER |
Herbert Xu | a0f000e | 2008-08-14 22:21:31 +1000 | [diff] [blame] | 129 | select CRYPTO_RNG |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 130 | help |
| 131 | This IV generator generates an IV based on a sequence number by |
| 132 | xoring it with a salt. This algorithm is mainly useful for CTR |
| 133 | |
| 134 | comment "Block modes" |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 135 | |
| 136 | config CRYPTO_CBC |
| 137 | tristate "CBC support" |
| 138 | select CRYPTO_BLKCIPHER |
Herbert Xu | 4351840 | 2006-10-16 21:28:58 +1000 | [diff] [blame] | 139 | select CRYPTO_MANAGER |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 140 | help |
| 141 | CBC: Cipher Block Chaining mode |
| 142 | This block cipher algorithm is required for IPSec. |
| 143 | |
Joy Latten | 23e353c | 2007-10-23 08:50:32 +0800 | [diff] [blame] | 144 | config CRYPTO_CTR |
| 145 | tristate "CTR support" |
| 146 | select CRYPTO_BLKCIPHER |
Herbert Xu | 0a27032 | 2007-11-30 21:38:37 +1100 | [diff] [blame] | 147 | select CRYPTO_SEQIV |
Joy Latten | 23e353c | 2007-10-23 08:50:32 +0800 | [diff] [blame] | 148 | select CRYPTO_MANAGER |
Joy Latten | 23e353c | 2007-10-23 08:50:32 +0800 | [diff] [blame] | 149 | help |
| 150 | CTR: Counter mode |
| 151 | This block cipher algorithm is required for IPSec. |
| 152 | |
Kevin Coffman | 76cb952 | 2008-03-24 21:26:16 +0800 | [diff] [blame] | 153 | config CRYPTO_CTS |
| 154 | tristate "CTS support" |
| 155 | select CRYPTO_BLKCIPHER |
| 156 | help |
| 157 | CTS: Cipher Text Stealing |
| 158 | This is the Cipher Text Stealing mode as described by |
| 159 | Section 8 of rfc2040 and referenced by rfc3962. |
| 160 | (rfc3962 includes errata information in its Appendix A) |
| 161 | This mode is required for Kerberos gss mechanism support |
| 162 | for AES encryption. |
| 163 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 164 | config CRYPTO_ECB |
| 165 | tristate "ECB support" |
Herbert Xu | 653ebd9 | 2007-11-27 19:48:27 +0800 | [diff] [blame] | 166 | select CRYPTO_BLKCIPHER |
Herbert Xu | 124b53d | 2007-04-16 20:49:20 +1000 | [diff] [blame] | 167 | select CRYPTO_MANAGER |
| 168 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 169 | ECB: Electronic CodeBook mode |
| 170 | This is the simplest block cipher algorithm. It simply encrypts |
| 171 | the input block by block. |
Herbert Xu | 124b53d | 2007-04-16 20:49:20 +1000 | [diff] [blame] | 172 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 173 | config CRYPTO_LRW |
| 174 | tristate "LRW support (EXPERIMENTAL)" |
| 175 | depends on EXPERIMENTAL |
David Howells | 9083163 | 2006-12-16 12:13:14 +1100 | [diff] [blame] | 176 | select CRYPTO_BLKCIPHER |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 177 | select CRYPTO_MANAGER |
| 178 | select CRYPTO_GF128MUL |
David Howells | 9083163 | 2006-12-16 12:13:14 +1100 | [diff] [blame] | 179 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 180 | LRW: Liskov Rivest Wagner, a tweakable, non malleable, non movable |
| 181 | narrow block cipher mode for dm-crypt. Use it with cipher |
| 182 | specification string aes-lrw-benbi, the key must be 256, 320 or 384. |
| 183 | The first 128, 192 or 256 bits in the key are used for AES and the |
| 184 | rest is used to tie each cipher block to its logical position. |
David Howells | 9083163 | 2006-12-16 12:13:14 +1100 | [diff] [blame] | 185 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 186 | config CRYPTO_PCBC |
| 187 | tristate "PCBC support" |
| 188 | select CRYPTO_BLKCIPHER |
| 189 | select CRYPTO_MANAGER |
| 190 | help |
| 191 | PCBC: Propagating Cipher Block Chaining mode |
| 192 | This block cipher algorithm is required for RxRPC. |
| 193 | |
| 194 | config CRYPTO_XTS |
| 195 | tristate "XTS support (EXPERIMENTAL)" |
| 196 | depends on EXPERIMENTAL |
| 197 | select CRYPTO_BLKCIPHER |
| 198 | select CRYPTO_MANAGER |
| 199 | select CRYPTO_GF128MUL |
| 200 | help |
| 201 | XTS: IEEE1619/D16 narrow block cipher use with aes-xts-plain, |
| 202 | key size 256, 384 or 512 bits. This implementation currently |
| 203 | can't handle a sectorsize which is not a multiple of 16 bytes. |
| 204 | |
| 205 | comment "Hash modes" |
| 206 | |
| 207 | config CRYPTO_HMAC |
| 208 | tristate "HMAC support" |
| 209 | select CRYPTO_HASH |
| 210 | select CRYPTO_MANAGER |
| 211 | help |
| 212 | HMAC: Keyed-Hashing for Message Authentication (RFC2104). |
| 213 | This is required for IPSec. |
| 214 | |
| 215 | config CRYPTO_XCBC |
| 216 | tristate "XCBC support" |
| 217 | depends on EXPERIMENTAL |
| 218 | select CRYPTO_HASH |
| 219 | select CRYPTO_MANAGER |
| 220 | help |
| 221 | XCBC: Keyed-Hashing with encryption algorithm |
| 222 | http://www.ietf.org/rfc/rfc3566.txt |
| 223 | http://csrc.nist.gov/encryption/modes/proposedmodes/ |
| 224 | xcbc-mac/xcbc-mac-spec.pdf |
| 225 | |
| 226 | comment "Digest" |
| 227 | |
| 228 | config CRYPTO_CRC32C |
| 229 | tristate "CRC32c CRC algorithm" |
Herbert Xu | 5773a3e | 2008-07-08 20:54:28 +0800 | [diff] [blame] | 230 | select CRYPTO_HASH |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 231 | select LIBCRC32C |
| 232 | help |
| 233 | Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used |
| 234 | by iSCSI for header and data digests and by others. |
| 235 | See Castagnoli93. This implementation uses lib/libcrc32c. |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 236 | Module will be crc32c. |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 237 | |
Austin Zhang | 8cb51ba | 2008-08-07 09:57:03 +0800 | [diff] [blame] | 238 | config CRYPTO_CRC32C_INTEL |
| 239 | tristate "CRC32c INTEL hardware acceleration" |
| 240 | depends on X86 |
| 241 | select CRYPTO_HASH |
| 242 | help |
| 243 | In Intel processor with SSE4.2 supported, the processor will |
| 244 | support CRC32C implementation using hardware accelerated CRC32 |
| 245 | instruction. This option will create 'crc32c-intel' module, |
| 246 | which will enable any routine to use the CRC32 instruction to |
| 247 | gain performance compared with software implementation. |
| 248 | Module will be crc32c-intel. |
| 249 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 250 | config CRYPTO_MD4 |
| 251 | tristate "MD4 digest algorithm" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 252 | select CRYPTO_ALGAPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 254 | MD4 message digest algorithm (RFC1320). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 256 | config CRYPTO_MD5 |
| 257 | tristate "MD5 digest algorithm" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 258 | select CRYPTO_ALGAPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 260 | MD5 message digest algorithm (RFC1321). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 262 | config CRYPTO_MICHAEL_MIC |
| 263 | tristate "Michael MIC keyed digest algorithm" |
| 264 | select CRYPTO_ALGAPI |
| 265 | help |
| 266 | Michael MIC is used for message integrity protection in TKIP |
| 267 | (IEEE 802.11i). This algorithm is required for TKIP, but it |
| 268 | should not be used for other purposes because of the weakness |
| 269 | of the algorithm. |
| 270 | |
Adrian-Ken Rueegsegger | 82798f9 | 2008-05-07 22:17:37 +0800 | [diff] [blame] | 271 | config CRYPTO_RMD128 |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 272 | tristate "RIPEMD-128 digest algorithm" |
| 273 | select CRYPTO_ALGAPI |
| 274 | help |
| 275 | RIPEMD-128 (ISO/IEC 10118-3:2004). |
Adrian-Ken Rueegsegger | 82798f9 | 2008-05-07 22:17:37 +0800 | [diff] [blame] | 276 | |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 277 | RIPEMD-128 is a 128-bit cryptographic hash function. It should only |
| 278 | to be used as a secure replacement for RIPEMD. For other use cases |
| 279 | RIPEMD-160 should be used. |
Adrian-Ken Rueegsegger | 82798f9 | 2008-05-07 22:17:37 +0800 | [diff] [blame] | 280 | |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 281 | Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel. |
| 282 | See <http://home.esat.kuleuven.be/~bosselae/ripemd160.html> |
Adrian-Ken Rueegsegger | 82798f9 | 2008-05-07 22:17:37 +0800 | [diff] [blame] | 283 | |
| 284 | config CRYPTO_RMD160 |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 285 | tristate "RIPEMD-160 digest algorithm" |
| 286 | select CRYPTO_ALGAPI |
| 287 | help |
| 288 | RIPEMD-160 (ISO/IEC 10118-3:2004). |
Adrian-Ken Rueegsegger | 82798f9 | 2008-05-07 22:17:37 +0800 | [diff] [blame] | 289 | |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 290 | RIPEMD-160 is a 160-bit cryptographic hash function. It is intended |
| 291 | to be used as a secure replacement for the 128-bit hash functions |
| 292 | MD4, MD5 and it's predecessor RIPEMD |
| 293 | (not to be confused with RIPEMD-128). |
Adrian-Ken Rueegsegger | 82798f9 | 2008-05-07 22:17:37 +0800 | [diff] [blame] | 294 | |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 295 | It's speed is comparable to SHA1 and there are no known attacks |
| 296 | against RIPEMD-160. |
Adrian-Ken Rueegsegger | 534fe2c | 2008-05-09 21:30:27 +0800 | [diff] [blame] | 297 | |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 298 | Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel. |
| 299 | See <http://home.esat.kuleuven.be/~bosselae/ripemd160.html> |
Adrian-Ken Rueegsegger | 534fe2c | 2008-05-09 21:30:27 +0800 | [diff] [blame] | 300 | |
| 301 | config CRYPTO_RMD256 |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 302 | tristate "RIPEMD-256 digest algorithm" |
| 303 | select CRYPTO_ALGAPI |
| 304 | help |
| 305 | RIPEMD-256 is an optional extension of RIPEMD-128 with a |
| 306 | 256 bit hash. It is intended for applications that require |
| 307 | longer hash-results, without needing a larger security level |
| 308 | (than RIPEMD-128). |
Adrian-Ken Rueegsegger | 534fe2c | 2008-05-09 21:30:27 +0800 | [diff] [blame] | 309 | |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 310 | Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel. |
| 311 | See <http://home.esat.kuleuven.be/~bosselae/ripemd160.html> |
Adrian-Ken Rueegsegger | 534fe2c | 2008-05-09 21:30:27 +0800 | [diff] [blame] | 312 | |
| 313 | config CRYPTO_RMD320 |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 314 | tristate "RIPEMD-320 digest algorithm" |
| 315 | select CRYPTO_ALGAPI |
| 316 | help |
| 317 | RIPEMD-320 is an optional extension of RIPEMD-160 with a |
| 318 | 320 bit hash. It is intended for applications that require |
| 319 | longer hash-results, without needing a larger security level |
| 320 | (than RIPEMD-160). |
Adrian-Ken Rueegsegger | 534fe2c | 2008-05-09 21:30:27 +0800 | [diff] [blame] | 321 | |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 322 | Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel. |
| 323 | See <http://home.esat.kuleuven.be/~bosselae/ripemd160.html> |
Adrian-Ken Rueegsegger | 82798f9 | 2008-05-07 22:17:37 +0800 | [diff] [blame] | 324 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 325 | config CRYPTO_SHA1 |
| 326 | tristate "SHA1 digest algorithm" |
| 327 | select CRYPTO_ALGAPI |
| 328 | help |
| 329 | SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2). |
| 330 | |
| 331 | config CRYPTO_SHA256 |
| 332 | tristate "SHA224 and SHA256 digest algorithm" |
| 333 | select CRYPTO_ALGAPI |
| 334 | help |
| 335 | SHA256 secure hash standard (DFIPS 180-2). |
| 336 | |
| 337 | This version of SHA implements a 256 bit hash with 128 bits of |
| 338 | security against collision attacks. |
| 339 | |
Adrian Bunk | b6d4434 | 2008-07-16 19:28:00 +0800 | [diff] [blame] | 340 | This code also includes SHA-224, a 224 bit hash with 112 bits |
| 341 | of security against collision attacks. |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 342 | |
| 343 | config CRYPTO_SHA512 |
| 344 | tristate "SHA384 and SHA512 digest algorithms" |
| 345 | select CRYPTO_ALGAPI |
| 346 | help |
| 347 | SHA512 secure hash standard (DFIPS 180-2). |
| 348 | |
| 349 | This version of SHA implements a 512 bit hash with 256 bits of |
| 350 | security against collision attacks. |
| 351 | |
| 352 | This code also includes SHA-384, a 384 bit hash with 192 bits |
| 353 | of security against collision attacks. |
| 354 | |
| 355 | config CRYPTO_TGR192 |
| 356 | tristate "Tiger digest algorithms" |
| 357 | select CRYPTO_ALGAPI |
| 358 | help |
| 359 | Tiger hash algorithm 192, 160 and 128-bit hashes |
| 360 | |
| 361 | Tiger is a hash function optimized for 64-bit processors while |
| 362 | still having decent performance on 32-bit processors. |
| 363 | Tiger was developed by Ross Anderson and Eli Biham. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | |
| 365 | See also: |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 366 | <http://www.cs.technion.ac.il/~biham/Reports/Tiger/>. |
| 367 | |
| 368 | config CRYPTO_WP512 |
| 369 | tristate "Whirlpool digest algorithms" |
| 370 | select CRYPTO_ALGAPI |
| 371 | help |
| 372 | Whirlpool hash algorithm 512, 384 and 256-bit hashes |
| 373 | |
| 374 | Whirlpool-512 is part of the NESSIE cryptographic primitives. |
| 375 | Whirlpool will be part of the ISO/IEC 10118-3:2003(E) standard |
| 376 | |
| 377 | See also: |
| 378 | <http://planeta.terra.com.br/informatica/paulobarreto/WhirlpoolPage.html> |
| 379 | |
| 380 | comment "Ciphers" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | |
| 382 | config CRYPTO_AES |
| 383 | tristate "AES cipher algorithms" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 384 | select CRYPTO_ALGAPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 386 | AES cipher algorithms (FIPS-197). AES uses the Rijndael |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | algorithm. |
| 388 | |
| 389 | Rijndael appears to be consistently a very good performer in |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 390 | both hardware and software across a wide range of computing |
| 391 | environments regardless of its use in feedback or non-feedback |
| 392 | modes. Its key setup time is excellent, and its key agility is |
| 393 | good. Rijndael's very low memory requirements make it very well |
| 394 | suited for restricted-space environments, in which it also |
| 395 | demonstrates excellent performance. Rijndael's operations are |
| 396 | among the easiest to defend against power and timing attacks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 398 | The AES specifies three key sizes: 128, 192 and 256 bits |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
| 400 | See <http://csrc.nist.gov/CryptoToolkit/aes/> for more information. |
| 401 | |
| 402 | config CRYPTO_AES_586 |
| 403 | tristate "AES cipher algorithms (i586)" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 404 | depends on (X86 || UML_X86) && !64BIT |
| 405 | select CRYPTO_ALGAPI |
Sebastian Siewior | 5157dea | 2007-11-10 19:07:16 +0800 | [diff] [blame] | 406 | select CRYPTO_AES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 408 | AES cipher algorithms (FIPS-197). AES uses the Rijndael |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | algorithm. |
| 410 | |
| 411 | Rijndael appears to be consistently a very good performer in |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 412 | both hardware and software across a wide range of computing |
| 413 | environments regardless of its use in feedback or non-feedback |
| 414 | modes. Its key setup time is excellent, and its key agility is |
| 415 | good. Rijndael's very low memory requirements make it very well |
| 416 | suited for restricted-space environments, in which it also |
| 417 | demonstrates excellent performance. Rijndael's operations are |
| 418 | among the easiest to defend against power and timing attacks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 420 | The AES specifies three key sizes: 128, 192 and 256 bits |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | |
| 422 | See <http://csrc.nist.gov/encryption/aes/> for more information. |
| 423 | |
Andreas Steinmetz | a2a892a | 2005-07-06 13:55:00 -0700 | [diff] [blame] | 424 | config CRYPTO_AES_X86_64 |
| 425 | tristate "AES cipher algorithms (x86_64)" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 426 | depends on (X86 || UML_X86) && 64BIT |
| 427 | select CRYPTO_ALGAPI |
Sebastian Siewior | 81190b3 | 2007-11-08 21:25:04 +0800 | [diff] [blame] | 428 | select CRYPTO_AES |
Andreas Steinmetz | a2a892a | 2005-07-06 13:55:00 -0700 | [diff] [blame] | 429 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 430 | AES cipher algorithms (FIPS-197). AES uses the Rijndael |
Andreas Steinmetz | a2a892a | 2005-07-06 13:55:00 -0700 | [diff] [blame] | 431 | algorithm. |
| 432 | |
| 433 | Rijndael appears to be consistently a very good performer in |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 434 | both hardware and software across a wide range of computing |
| 435 | environments regardless of its use in feedback or non-feedback |
| 436 | modes. Its key setup time is excellent, and its key agility is |
| 437 | good. Rijndael's very low memory requirements make it very well |
| 438 | suited for restricted-space environments, in which it also |
| 439 | demonstrates excellent performance. Rijndael's operations are |
| 440 | among the easiest to defend against power and timing attacks. |
Andreas Steinmetz | a2a892a | 2005-07-06 13:55:00 -0700 | [diff] [blame] | 441 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 442 | The AES specifies three key sizes: 128, 192 and 256 bits |
Andreas Steinmetz | a2a892a | 2005-07-06 13:55:00 -0700 | [diff] [blame] | 443 | |
| 444 | See <http://csrc.nist.gov/encryption/aes/> for more information. |
| 445 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 446 | config CRYPTO_ANUBIS |
| 447 | tristate "Anubis cipher algorithm" |
| 448 | select CRYPTO_ALGAPI |
| 449 | help |
| 450 | Anubis cipher algorithm. |
| 451 | |
| 452 | Anubis is a variable key length cipher which can use keys from |
| 453 | 128 bits to 320 bits in length. It was evaluated as a entrant |
| 454 | in the NESSIE competition. |
| 455 | |
| 456 | See also: |
| 457 | <https://www.cosic.esat.kuleuven.ac.be/nessie/reports/> |
| 458 | <http://planeta.terra.com.br/informatica/paulobarreto/AnubisPage.html> |
| 459 | |
| 460 | config CRYPTO_ARC4 |
| 461 | tristate "ARC4 cipher algorithm" |
| 462 | select CRYPTO_ALGAPI |
| 463 | help |
| 464 | ARC4 cipher algorithm. |
| 465 | |
| 466 | ARC4 is a stream cipher using keys ranging from 8 bits to 2048 |
| 467 | bits in length. This algorithm is required for driver-based |
| 468 | WEP, but it should not be for other purposes because of the |
| 469 | weakness of the algorithm. |
| 470 | |
| 471 | config CRYPTO_BLOWFISH |
| 472 | tristate "Blowfish cipher algorithm" |
| 473 | select CRYPTO_ALGAPI |
| 474 | help |
| 475 | Blowfish cipher algorithm, by Bruce Schneier. |
| 476 | |
| 477 | This is a variable key length cipher which can use keys from 32 |
| 478 | bits to 448 bits in length. It's fast, simple and specifically |
| 479 | designed for use on "large microprocessors". |
| 480 | |
| 481 | See also: |
| 482 | <http://www.schneier.com/blowfish.html> |
| 483 | |
| 484 | config CRYPTO_CAMELLIA |
| 485 | tristate "Camellia cipher algorithms" |
| 486 | depends on CRYPTO |
| 487 | select CRYPTO_ALGAPI |
| 488 | help |
| 489 | Camellia cipher algorithms module. |
| 490 | |
| 491 | Camellia is a symmetric key block cipher developed jointly |
| 492 | at NTT and Mitsubishi Electric Corporation. |
| 493 | |
| 494 | The Camellia specifies three key sizes: 128, 192 and 256 bits. |
| 495 | |
| 496 | See also: |
| 497 | <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html> |
| 498 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | config CRYPTO_CAST5 |
| 500 | tristate "CAST5 (CAST-128) cipher algorithm" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 501 | select CRYPTO_ALGAPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | help |
| 503 | The CAST5 encryption algorithm (synonymous with CAST-128) is |
| 504 | described in RFC2144. |
| 505 | |
| 506 | config CRYPTO_CAST6 |
| 507 | tristate "CAST6 (CAST-256) cipher algorithm" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 508 | select CRYPTO_ALGAPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | help |
| 510 | The CAST6 encryption algorithm (synonymous with CAST-256) is |
| 511 | described in RFC2612. |
| 512 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 513 | config CRYPTO_DES |
| 514 | tristate "DES and Triple DES EDE cipher algorithms" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 515 | select CRYPTO_ALGAPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 517 | 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] | 518 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 519 | config CRYPTO_FCRYPT |
| 520 | tristate "FCrypt cipher algorithm" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 521 | select CRYPTO_ALGAPI |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 522 | select CRYPTO_BLKCIPHER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | help |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 524 | FCrypt algorithm used by RxRPC. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | |
| 526 | config CRYPTO_KHAZAD |
| 527 | tristate "Khazad cipher algorithm" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 528 | select CRYPTO_ALGAPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | help |
| 530 | Khazad cipher algorithm. |
| 531 | |
| 532 | Khazad was a finalist in the initial NESSIE competition. It is |
| 533 | an algorithm optimized for 64-bit processors with good performance |
| 534 | on 32-bit processors. Khazad uses an 128 bit key size. |
| 535 | |
| 536 | See also: |
| 537 | <http://planeta.terra.com.br/informatica/paulobarreto/KhazadPage.html> |
| 538 | |
Tan Swee Heng | 2407d60 | 2007-11-23 19:45:00 +0800 | [diff] [blame] | 539 | config CRYPTO_SALSA20 |
| 540 | tristate "Salsa20 stream cipher algorithm (EXPERIMENTAL)" |
| 541 | depends on EXPERIMENTAL |
| 542 | select CRYPTO_BLKCIPHER |
| 543 | help |
| 544 | Salsa20 stream cipher algorithm. |
| 545 | |
| 546 | Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT |
| 547 | Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/> |
| 548 | |
| 549 | The Salsa20 stream cipher algorithm is designed by Daniel J. |
| 550 | Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | |
Tan Swee Heng | 974e4b7 | 2007-12-10 15:52:56 +0800 | [diff] [blame] | 552 | config CRYPTO_SALSA20_586 |
| 553 | tristate "Salsa20 stream cipher algorithm (i586) (EXPERIMENTAL)" |
| 554 | depends on (X86 || UML_X86) && !64BIT |
| 555 | depends on EXPERIMENTAL |
| 556 | select CRYPTO_BLKCIPHER |
Tan Swee Heng | 974e4b7 | 2007-12-10 15:52:56 +0800 | [diff] [blame] | 557 | help |
| 558 | Salsa20 stream cipher algorithm. |
| 559 | |
| 560 | Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT |
| 561 | Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/> |
| 562 | |
| 563 | The Salsa20 stream cipher algorithm is designed by Daniel J. |
| 564 | Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html> |
| 565 | |
Tan Swee Heng | 9a7dafb | 2007-12-18 00:04:40 +0800 | [diff] [blame] | 566 | config CRYPTO_SALSA20_X86_64 |
| 567 | tristate "Salsa20 stream cipher algorithm (x86_64) (EXPERIMENTAL)" |
| 568 | depends on (X86 || UML_X86) && 64BIT |
| 569 | depends on EXPERIMENTAL |
| 570 | select CRYPTO_BLKCIPHER |
Tan Swee Heng | 9a7dafb | 2007-12-18 00:04:40 +0800 | [diff] [blame] | 571 | help |
| 572 | Salsa20 stream cipher algorithm. |
| 573 | |
| 574 | Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT |
| 575 | Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/> |
| 576 | |
| 577 | The Salsa20 stream cipher algorithm is designed by Daniel J. |
| 578 | Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html> |
| 579 | |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 580 | config CRYPTO_SEED |
| 581 | tristate "SEED cipher algorithm" |
| 582 | select CRYPTO_ALGAPI |
| 583 | help |
| 584 | SEED cipher algorithm (RFC4269). |
| 585 | |
| 586 | SEED is a 128-bit symmetric key block cipher that has been |
| 587 | developed by KISA (Korea Information Security Agency) as a |
| 588 | national standard encryption algorithm of the Republic of Korea. |
| 589 | It is a 16 round block cipher with the key size of 128 bit. |
| 590 | |
| 591 | See also: |
| 592 | <http://www.kisa.or.kr/kisa/seed/jsp/seed_eng.jsp> |
| 593 | |
| 594 | config CRYPTO_SERPENT |
| 595 | tristate "Serpent cipher algorithm" |
| 596 | select CRYPTO_ALGAPI |
| 597 | help |
| 598 | Serpent cipher algorithm, by Anderson, Biham & Knudsen. |
| 599 | |
| 600 | Keys are allowed to be from 0 to 256 bits in length, in steps |
| 601 | of 8 bits. Also includes the 'Tnepres' algorithm, a reversed |
| 602 | variant of Serpent for compatibility with old kerneli.org code. |
| 603 | |
| 604 | See also: |
| 605 | <http://www.cl.cam.ac.uk/~rja14/serpent.html> |
| 606 | |
| 607 | config CRYPTO_TEA |
| 608 | tristate "TEA, XTEA and XETA cipher algorithms" |
| 609 | select CRYPTO_ALGAPI |
| 610 | help |
| 611 | TEA cipher algorithm. |
| 612 | |
| 613 | Tiny Encryption Algorithm is a simple cipher that uses |
| 614 | many rounds for security. It is very fast and uses |
| 615 | little memory. |
| 616 | |
| 617 | Xtendend Tiny Encryption Algorithm is a modification to |
| 618 | the TEA algorithm to address a potential key weakness |
| 619 | in the TEA algorithm. |
| 620 | |
| 621 | Xtendend Encryption Tiny Algorithm is a mis-implementation |
| 622 | of the XTEA algorithm for compatibility purposes. |
| 623 | |
| 624 | config CRYPTO_TWOFISH |
| 625 | tristate "Twofish cipher algorithm" |
| 626 | select CRYPTO_ALGAPI |
| 627 | select CRYPTO_TWOFISH_COMMON |
| 628 | help |
| 629 | Twofish cipher algorithm. |
| 630 | |
| 631 | Twofish was submitted as an AES (Advanced Encryption Standard) |
| 632 | candidate cipher by researchers at CounterPane Systems. It is a |
| 633 | 16 round block cipher supporting key sizes of 128, 192, and 256 |
| 634 | bits. |
| 635 | |
| 636 | See also: |
| 637 | <http://www.schneier.com/twofish.html> |
| 638 | |
| 639 | config CRYPTO_TWOFISH_COMMON |
| 640 | tristate |
| 641 | help |
| 642 | Common parts of the Twofish cipher algorithm shared by the |
| 643 | generic c and the assembler implementations. |
| 644 | |
| 645 | config CRYPTO_TWOFISH_586 |
| 646 | tristate "Twofish cipher algorithms (i586)" |
| 647 | depends on (X86 || UML_X86) && !64BIT |
| 648 | select CRYPTO_ALGAPI |
| 649 | select CRYPTO_TWOFISH_COMMON |
| 650 | help |
| 651 | Twofish cipher algorithm. |
| 652 | |
| 653 | Twofish was submitted as an AES (Advanced Encryption Standard) |
| 654 | candidate cipher by researchers at CounterPane Systems. It is a |
| 655 | 16 round block cipher supporting key sizes of 128, 192, and 256 |
| 656 | bits. |
| 657 | |
| 658 | See also: |
| 659 | <http://www.schneier.com/twofish.html> |
| 660 | |
| 661 | config CRYPTO_TWOFISH_X86_64 |
| 662 | tristate "Twofish cipher algorithm (x86_64)" |
| 663 | depends on (X86 || UML_X86) && 64BIT |
| 664 | select CRYPTO_ALGAPI |
| 665 | select CRYPTO_TWOFISH_COMMON |
| 666 | help |
| 667 | Twofish cipher algorithm (x86_64). |
| 668 | |
| 669 | Twofish was submitted as an AES (Advanced Encryption Standard) |
| 670 | candidate cipher by researchers at CounterPane Systems. It is a |
| 671 | 16 round block cipher supporting key sizes of 128, 192, and 256 |
| 672 | bits. |
| 673 | |
| 674 | See also: |
| 675 | <http://www.schneier.com/twofish.html> |
| 676 | |
| 677 | comment "Compression" |
| 678 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | config CRYPTO_DEFLATE |
| 680 | tristate "Deflate compression algorithm" |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 681 | select CRYPTO_ALGAPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | select ZLIB_INFLATE |
| 683 | select ZLIB_DEFLATE |
| 684 | help |
| 685 | This is the Deflate algorithm (RFC1951), specified for use in |
| 686 | IPSec with the IPCOMP protocol (RFC3173, RFC2394). |
Sebastian Siewior | 584fffc | 2008-04-05 21:04:48 +0800 | [diff] [blame] | 687 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | You will most probably want this if using IPSec. |
| 689 | |
Zoltan Sogor | 0b77abb | 2007-12-07 16:53:23 +0800 | [diff] [blame] | 690 | config CRYPTO_LZO |
| 691 | tristate "LZO compression algorithm" |
| 692 | select CRYPTO_ALGAPI |
| 693 | select LZO_COMPRESS |
| 694 | select LZO_DECOMPRESS |
| 695 | help |
| 696 | This is the LZO algorithm. |
| 697 | |
Neil Horman | 17f0f4a | 2008-08-14 22:15:52 +1000 | [diff] [blame] | 698 | comment "Random Number Generation" |
| 699 | |
| 700 | config CRYPTO_ANSI_CPRNG |
| 701 | tristate "Pseudo Random Number Generation for Cryptographic modules" |
| 702 | select CRYPTO_AES |
| 703 | select CRYPTO_RNG |
| 704 | select CRYPTO_FIPS |
| 705 | help |
| 706 | This option enables the generic pseudo random number generator |
| 707 | for cryptographic modules. Uses the Algorithm specified in |
| 708 | ANSI X9.31 A.2.4 |
| 709 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | source "drivers/crypto/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | |
Herbert Xu | cce9e06 | 2006-08-21 21:08:13 +1000 | [diff] [blame] | 712 | endif # if CRYPTO |