blob: aac4bc90a138e7f5cfc1c2b4faa871f1d0ba2e4e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
Dan Williams685784a2007-07-09 11:56:42 -07002# Generic algorithms support
3#
4config XOR_BLOCKS
5 tristate
6
7#
Dan Williams9bc89cd2007-01-02 11:10:44 -07008# async_tx api: hardware offloaded memory transfer/transform support
9#
10source "crypto/async_tx/Kconfig"
11
12#
Linus Torvalds1da177e2005-04-16 15:20:36 -070013# Cryptographic API Configuration
14#
Jan Engelhardt2e290f42007-05-18 15:11:01 +100015menuconfig CRYPTO
Sebastian Siewiorc3715cb92008-03-30 16:36:09 +080016 tristate "Cryptographic API"
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 help
18 This option provides the core Cryptographic API.
19
Herbert Xucce9e062006-08-21 21:08:13 +100020if CRYPTO
21
Sebastian Siewior584fffc2008-04-05 21:04:48 +080022comment "Crypto core or helper"
23
Neil Hormanccb778e2008-08-05 14:13:08 +080024config CRYPTO_FIPS
25 bool "FIPS 200 compliance"
Herbert Xuf2c89a12014-07-04 22:15:08 +080026 depends on (CRYPTO_ANSI_CPRNG || CRYPTO_DRBG) && !CRYPTO_MANAGER_DISABLE_TESTS
Alec Ari1f696092016-10-04 19:34:30 -030027 depends on (MODULE_SIG || !MODULES)
Neil Hormanccb778e2008-08-05 14:13:08 +080028 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 Ebberte84c5482010-09-03 19:17:49 +080032 this is.
Neil Hormanccb778e2008-08-05 14:13:08 +080033
Herbert Xucce9e062006-08-21 21:08:13 +100034config CRYPTO_ALGAPI
35 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110036 select CRYPTO_ALGAPI2
Herbert Xucce9e062006-08-21 21:08:13 +100037 help
38 This option provides the API for cryptographic algorithms.
39
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110040config CRYPTO_ALGAPI2
41 tristate
42
Herbert Xu1ae97822007-08-30 15:36:14 +080043config CRYPTO_AEAD
44 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110045 select CRYPTO_AEAD2
Herbert Xu1ae97822007-08-30 15:36:14 +080046 select CRYPTO_ALGAPI
47
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110048config CRYPTO_AEAD2
49 tristate
50 select CRYPTO_ALGAPI2
Herbert Xu149a3972015-08-13 17:28:58 +080051 select CRYPTO_NULL2
52 select CRYPTO_RNG2
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110053
Herbert Xu5cde0af2006-08-22 00:07:53 +100054config CRYPTO_BLKCIPHER
55 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110056 select CRYPTO_BLKCIPHER2
Herbert Xu5cde0af2006-08-22 00:07:53 +100057 select CRYPTO_ALGAPI
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110058
59config CRYPTO_BLKCIPHER2
60 tristate
61 select CRYPTO_ALGAPI2
62 select CRYPTO_RNG2
Huang Ying0a2e8212009-02-19 14:44:02 +080063 select CRYPTO_WORKQUEUE
Herbert Xu5cde0af2006-08-22 00:07:53 +100064
Herbert Xu055bcee2006-08-19 22:24:23 +100065config CRYPTO_HASH
66 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110067 select CRYPTO_HASH2
Herbert Xu055bcee2006-08-19 22:24:23 +100068 select CRYPTO_ALGAPI
69
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110070config CRYPTO_HASH2
71 tristate
72 select CRYPTO_ALGAPI2
73
Neil Horman17f0f4a2008-08-14 22:15:52 +100074config CRYPTO_RNG
75 tristate
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110076 select CRYPTO_RNG2
Neil Horman17f0f4a2008-08-14 22:15:52 +100077 select CRYPTO_ALGAPI
78
Herbert Xu6a0fcbb2008-12-10 23:29:44 +110079config CRYPTO_RNG2
80 tristate
81 select CRYPTO_ALGAPI2
82
Herbert Xu401e4232015-06-03 14:49:31 +080083config CRYPTO_RNG_DEFAULT
84 tristate
85 select CRYPTO_DRBG_MENU
86
Tadeusz Struk3c339ab2015-06-16 10:30:55 -070087config CRYPTO_AKCIPHER2
88 tristate
89 select CRYPTO_ALGAPI2
90
91config CRYPTO_AKCIPHER
92 tristate
93 select CRYPTO_AKCIPHER2
94 select CRYPTO_ALGAPI
95
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +010096config CRYPTO_KPP2
97 tristate
98 select CRYPTO_ALGAPI2
99
100config CRYPTO_KPP
101 tristate
102 select CRYPTO_ALGAPI
103 select CRYPTO_KPP2
104
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100105config CRYPTO_ACOMP2
106 tristate
107 select CRYPTO_ALGAPI2
108
109config CRYPTO_ACOMP
110 tristate
111 select CRYPTO_ALGAPI
112 select CRYPTO_ACOMP2
113
Tadeusz Strukcfc2bb32015-06-16 10:31:01 -0700114config CRYPTO_RSA
115 tristate "RSA algorithm"
Tadeusz Struk425e0172015-06-19 10:27:39 -0700116 select CRYPTO_AKCIPHER
Tadeusz Struk58446fe2016-05-04 06:38:46 -0700117 select CRYPTO_MANAGER
Tadeusz Strukcfc2bb32015-06-16 10:31:01 -0700118 select MPILIB
119 select ASN1
120 help
121 Generic implementation of the RSA public key algorithm.
122
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100123config CRYPTO_DH
124 tristate "Diffie-Hellman algorithm"
125 select CRYPTO_KPP
126 select MPILIB
127 help
128 Generic implementation of the Diffie-Hellman algorithm.
129
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +0100130config CRYPTO_ECDH
131 tristate "ECDH algorithm"
132 select CRYTPO_KPP
133 help
134 Generic implementation of the ECDH algorithm
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100135
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000136config CRYPTO_MANAGER
137 tristate "Cryptographic algorithm manager"
Herbert Xu6a0fcbb2008-12-10 23:29:44 +1100138 select CRYPTO_MANAGER2
Herbert Xu2b8c19d2006-09-21 11:31:44 +1000139 help
140 Create default cryptographic template instantiations such as
141 cbc(aes).
142
Herbert Xu6a0fcbb2008-12-10 23:29:44 +1100143config CRYPTO_MANAGER2
144 def_tristate CRYPTO_MANAGER || (CRYPTO_MANAGER!=n && CRYPTO_ALGAPI=y)
145 select CRYPTO_AEAD2
146 select CRYPTO_HASH2
147 select CRYPTO_BLKCIPHER2
Tadeusz Struk946cc462015-06-16 10:31:06 -0700148 select CRYPTO_AKCIPHER2
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +0100149 select CRYPTO_KPP2
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100150 select CRYPTO_ACOMP2
Herbert Xu6a0fcbb2008-12-10 23:29:44 +1100151
Steffen Klasserta38f7902011-09-27 07:23:50 +0200152config CRYPTO_USER
153 tristate "Userspace cryptographic algorithm configuration"
Herbert Xu5db017a2011-11-01 12:12:43 +1100154 depends on NET
Steffen Klasserta38f7902011-09-27 07:23:50 +0200155 select CRYPTO_MANAGER
156 help
Valdis.Kletnieks@vt.edud19978f2011-11-09 01:29:20 -0500157 Userspace configuration for cryptographic instantiations such as
Steffen Klasserta38f7902011-09-27 07:23:50 +0200158 cbc(aes).
159
Herbert Xu326a6342010-08-06 09:40:28 +0800160config CRYPTO_MANAGER_DISABLE_TESTS
161 bool "Disable run-time self tests"
Herbert Xu00ca28a2010-08-06 10:34:00 +0800162 default y
163 depends on CRYPTO_MANAGER2
Alexander Shishkin0b767f92010-06-03 20:53:43 +1000164 help
Herbert Xu326a6342010-08-06 09:40:28 +0800165 Disable run-time self tests that normally take place at
166 algorithm registration.
Alexander Shishkin0b767f92010-06-03 20:53:43 +1000167
Rik Snelc494e072006-11-29 18:59:44 +1100168config CRYPTO_GF128MUL
Jussi Kivilinna08c70fc2011-12-13 12:53:22 +0200169 tristate "GF(2^128) multiplication functions"
Rik Snelc494e072006-11-29 18:59:44 +1100170 help
171 Efficient table driven implementation of multiplications in the
172 field GF(2^128). This is needed by some cypher modes. This
173 option will be selected automatically if you select such a
174 cipher mode. Only select this option by hand if you expect to load
175 an external module that requires these functions.
176
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800177config CRYPTO_NULL
178 tristate "Null algorithms"
Herbert Xu149a3972015-08-13 17:28:58 +0800179 select CRYPTO_NULL2
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800180 help
181 These are 'Null' algorithms, used by IPsec, which do nothing.
182
Herbert Xu149a3972015-08-13 17:28:58 +0800183config CRYPTO_NULL2
Herbert Xudd43c4e2015-08-17 20:39:40 +0800184 tristate
Herbert Xu149a3972015-08-13 17:28:58 +0800185 select CRYPTO_ALGAPI2
186 select CRYPTO_BLKCIPHER2
187 select CRYPTO_HASH2
188
Steffen Klassert5068c7a2010-01-07 15:57:19 +1100189config CRYPTO_PCRYPT
Kees Cook3b4afaf2012-10-02 11:16:49 -0700190 tristate "Parallel crypto engine"
191 depends on SMP
Steffen Klassert5068c7a2010-01-07 15:57:19 +1100192 select PADATA
193 select CRYPTO_MANAGER
194 select CRYPTO_AEAD
195 help
196 This converts an arbitrary crypto algorithm into a parallel
197 algorithm that executes in kernel threads.
198
Huang Ying25c38d32009-02-19 14:33:40 +0800199config CRYPTO_WORKQUEUE
200 tristate
201
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800202config CRYPTO_CRYPTD
203 tristate "Software async crypto daemon"
Herbert Xudb131ef2006-09-21 11:44:08 +1000204 select CRYPTO_BLKCIPHER
Loc Hob8a28252008-05-14 21:23:00 +0800205 select CRYPTO_HASH
Herbert Xu43518402006-10-16 21:28:58 +1000206 select CRYPTO_MANAGER
Huang Ying254eff72009-02-19 14:42:19 +0800207 select CRYPTO_WORKQUEUE
Herbert Xudb131ef2006-09-21 11:44:08 +1000208 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800209 This is a generic software asynchronous crypto daemon that
210 converts an arbitrary synchronous software crypto algorithm
211 into an asynchronous algorithm that executes in a kernel thread.
212
Tim Chen1e65b812014-07-31 10:29:51 -0700213config CRYPTO_MCRYPTD
214 tristate "Software async multi-buffer crypto daemon"
215 select CRYPTO_BLKCIPHER
216 select CRYPTO_HASH
217 select CRYPTO_MANAGER
218 select CRYPTO_WORKQUEUE
219 help
220 This is a generic software asynchronous crypto daemon that
221 provides the kernel thread to assist multi-buffer crypto
222 algorithms for submitting jobs and flushing jobs in multi-buffer
223 crypto algorithms. Multi-buffer crypto algorithms are executed
224 in the context of this kernel thread and drivers can post
Ted Percival0e566732014-09-04 15:18:21 +0800225 their crypto request asynchronously to be processed by this daemon.
Tim Chen1e65b812014-07-31 10:29:51 -0700226
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800227config CRYPTO_AUTHENC
228 tristate "Authenc support"
229 select CRYPTO_AEAD
230 select CRYPTO_BLKCIPHER
231 select CRYPTO_MANAGER
232 select CRYPTO_HASH
Herbert Xue94c6a72015-08-04 21:23:14 +0800233 select CRYPTO_NULL
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800234 help
235 Authenc: Combined mode wrapper for IPsec.
236 This is required for IPSec.
237
238config CRYPTO_TEST
239 tristate "Testing module"
240 depends on m
Herbert Xuda7f0332008-07-31 17:08:25 +0800241 select CRYPTO_MANAGER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800242 help
243 Quick & dirty crypto test module.
244
Ard Biesheuvela62b01c2013-09-20 09:55:40 +0200245config CRYPTO_ABLK_HELPER
Jussi Kivilinnaffaf9152012-06-18 14:06:58 +0300246 tristate
Jussi Kivilinnaffaf9152012-06-18 14:06:58 +0300247 select CRYPTO_CRYPTD
248
Herbert Xu266d0512016-11-22 20:08:25 +0800249config CRYPTO_SIMD
250 tristate
251 select CRYPTO_CRYPTD
252
Jussi Kivilinna596d8752012-06-18 14:07:19 +0300253config CRYPTO_GLUE_HELPER_X86
254 tristate
255 depends on X86
Herbert Xu065ce322016-11-22 20:08:29 +0800256 select CRYPTO_BLKCIPHER
Jussi Kivilinna596d8752012-06-18 14:07:19 +0300257
Baolin Wang735d37b2016-01-26 20:25:39 +0800258config CRYPTO_ENGINE
259 tristate
260
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800261comment "Authenticated Encryption with Associated Data"
262
263config CRYPTO_CCM
264 tristate "CCM support"
265 select CRYPTO_CTR
Ard Biesheuvelf15f05b2017-02-03 14:49:36 +0000266 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800267 select CRYPTO_AEAD
268 help
269 Support for Counter with CBC MAC. Required for IPsec.
270
271config CRYPTO_GCM
272 tristate "GCM/GMAC support"
273 select CRYPTO_CTR
274 select CRYPTO_AEAD
Huang Ying9382d972009-08-06 15:34:26 +1000275 select CRYPTO_GHASH
Jussi Kivilinna9489667d2013-04-07 16:43:41 +0300276 select CRYPTO_NULL
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800277 help
278 Support for Galois/Counter Mode (GCM) and Galois Message
279 Authentication Code (GMAC). Required for IPSec.
280
Martin Willi71ebc4d2015-06-01 13:44:00 +0200281config CRYPTO_CHACHA20POLY1305
282 tristate "ChaCha20-Poly1305 AEAD support"
283 select CRYPTO_CHACHA20
284 select CRYPTO_POLY1305
285 select CRYPTO_AEAD
286 help
287 ChaCha20-Poly1305 AEAD support, RFC7539.
288
289 Support for the AEAD wrapper using the ChaCha20 stream cipher combined
290 with the Poly1305 authenticator. It is defined in RFC7539 for use in
291 IETF protocols.
292
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800293config CRYPTO_SEQIV
294 tristate "Sequence Number IV Generator"
295 select CRYPTO_AEAD
296 select CRYPTO_BLKCIPHER
Herbert Xu856e3f402015-05-21 15:11:13 +0800297 select CRYPTO_NULL
Herbert Xu401e4232015-06-03 14:49:31 +0800298 select CRYPTO_RNG_DEFAULT
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800299 help
300 This IV generator generates an IV based on a sequence number by
301 xoring it with a salt. This algorithm is mainly useful for CTR
302
Herbert Xua10f5542015-05-21 15:11:15 +0800303config CRYPTO_ECHAINIV
304 tristate "Encrypted Chain IV Generator"
305 select CRYPTO_AEAD
306 select CRYPTO_NULL
Herbert Xu401e4232015-06-03 14:49:31 +0800307 select CRYPTO_RNG_DEFAULT
Herbert Xu34912442015-06-03 14:49:29 +0800308 default m
Herbert Xua10f5542015-05-21 15:11:15 +0800309 help
310 This IV generator generates an IV based on the encryption of
311 a sequence number xored with a salt. This is the default
312 algorithm for CBC.
313
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800314comment "Block modes"
Herbert Xudb131ef2006-09-21 11:44:08 +1000315
316config CRYPTO_CBC
317 tristate "CBC support"
318 select CRYPTO_BLKCIPHER
Herbert Xu43518402006-10-16 21:28:58 +1000319 select CRYPTO_MANAGER
Herbert Xudb131ef2006-09-21 11:44:08 +1000320 help
321 CBC: Cipher Block Chaining mode
322 This block cipher algorithm is required for IPSec.
323
Joy Latten23e353c2007-10-23 08:50:32 +0800324config CRYPTO_CTR
325 tristate "CTR support"
326 select CRYPTO_BLKCIPHER
Herbert Xu0a270322007-11-30 21:38:37 +1100327 select CRYPTO_SEQIV
Joy Latten23e353c2007-10-23 08:50:32 +0800328 select CRYPTO_MANAGER
Joy Latten23e353c2007-10-23 08:50:32 +0800329 help
330 CTR: Counter mode
331 This block cipher algorithm is required for IPSec.
332
Kevin Coffman76cb9522008-03-24 21:26:16 +0800333config CRYPTO_CTS
334 tristate "CTS support"
335 select CRYPTO_BLKCIPHER
336 help
337 CTS: Cipher Text Stealing
338 This is the Cipher Text Stealing mode as described by
339 Section 8 of rfc2040 and referenced by rfc3962.
340 (rfc3962 includes errata information in its Appendix A)
341 This mode is required for Kerberos gss mechanism support
342 for AES encryption.
343
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800344config CRYPTO_ECB
345 tristate "ECB support"
Herbert Xu653ebd92007-11-27 19:48:27 +0800346 select CRYPTO_BLKCIPHER
Herbert Xu124b53d2007-04-16 20:49:20 +1000347 select CRYPTO_MANAGER
348 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800349 ECB: Electronic CodeBook mode
350 This is the simplest block cipher algorithm. It simply encrypts
351 the input block by block.
Herbert Xu124b53d2007-04-16 20:49:20 +1000352
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800353config CRYPTO_LRW
Jussi Kivilinna2470a2b2011-12-13 12:52:51 +0200354 tristate "LRW support"
David Howells90831632006-12-16 12:13:14 +1100355 select CRYPTO_BLKCIPHER
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800356 select CRYPTO_MANAGER
357 select CRYPTO_GF128MUL
David Howells90831632006-12-16 12:13:14 +1100358 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800359 LRW: Liskov Rivest Wagner, a tweakable, non malleable, non movable
360 narrow block cipher mode for dm-crypt. Use it with cipher
361 specification string aes-lrw-benbi, the key must be 256, 320 or 384.
362 The first 128, 192 or 256 bits in the key are used for AES and the
363 rest is used to tie each cipher block to its logical position.
David Howells90831632006-12-16 12:13:14 +1100364
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800365config CRYPTO_PCBC
366 tristate "PCBC support"
367 select CRYPTO_BLKCIPHER
368 select CRYPTO_MANAGER
369 help
370 PCBC: Propagating Cipher Block Chaining mode
371 This block cipher algorithm is required for RxRPC.
372
373config CRYPTO_XTS
Jussi Kivilinna5bcf8e62011-12-13 12:52:56 +0200374 tristate "XTS support"
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800375 select CRYPTO_BLKCIPHER
376 select CRYPTO_MANAGER
Milan Broz12cb3a12017-02-23 08:38:26 +0100377 select CRYPTO_ECB
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800378 help
379 XTS: IEEE1619/D16 narrow block cipher use with aes-xts-plain,
380 key size 256, 384 or 512 bits. This implementation currently
381 can't handle a sectorsize which is not a multiple of 16 bytes.
382
Stephan Mueller1c49678e2015-09-21 20:58:56 +0200383config CRYPTO_KEYWRAP
384 tristate "Key wrapping support"
385 select CRYPTO_BLKCIPHER
386 help
387 Support for key wrapping (NIST SP800-38F / RFC3394) without
388 padding.
389
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800390comment "Hash modes"
391
Jussi Kivilinna93b5e862013-04-08 10:48:44 +0300392config CRYPTO_CMAC
393 tristate "CMAC support"
394 select CRYPTO_HASH
395 select CRYPTO_MANAGER
396 help
397 Cipher-based Message Authentication Code (CMAC) specified by
398 The National Institute of Standards and Technology (NIST).
399
400 https://tools.ietf.org/html/rfc4493
401 http://csrc.nist.gov/publications/nistpubs/800-38B/SP_800-38B.pdf
402
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800403config CRYPTO_HMAC
404 tristate "HMAC support"
405 select CRYPTO_HASH
406 select CRYPTO_MANAGER
407 help
408 HMAC: Keyed-Hashing for Message Authentication (RFC2104).
409 This is required for IPSec.
410
411config CRYPTO_XCBC
412 tristate "XCBC support"
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800413 select CRYPTO_HASH
414 select CRYPTO_MANAGER
415 help
416 XCBC: Keyed-Hashing with encryption algorithm
417 http://www.ietf.org/rfc/rfc3566.txt
418 http://csrc.nist.gov/encryption/modes/proposedmodes/
419 xcbc-mac/xcbc-mac-spec.pdf
420
Shane Wangf1939f72009-09-02 20:05:22 +1000421config CRYPTO_VMAC
422 tristate "VMAC support"
Shane Wangf1939f72009-09-02 20:05:22 +1000423 select CRYPTO_HASH
424 select CRYPTO_MANAGER
425 help
426 VMAC is a message authentication algorithm designed for
427 very high speed on 64-bit architectures.
428
429 See also:
430 <http://fastcrypto.org/vmac>
431
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800432comment "Digest"
433
434config CRYPTO_CRC32C
435 tristate "CRC32c CRC algorithm"
Herbert Xu5773a3e2008-07-08 20:54:28 +0800436 select CRYPTO_HASH
Darrick J. Wong6a0962b2012-03-23 15:02:25 -0700437 select CRC32
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800438 help
439 Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used
440 by iSCSI for header and data digests and by others.
Herbert Xu69c35ef2008-11-07 15:11:47 +0800441 See Castagnoli93. Module will be crc32c.
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800442
Austin Zhang8cb51ba2008-08-07 09:57:03 +0800443config CRYPTO_CRC32C_INTEL
444 tristate "CRC32c INTEL hardware acceleration"
445 depends on X86
446 select CRYPTO_HASH
447 help
448 In Intel processor with SSE4.2 supported, the processor will
449 support CRC32C implementation using hardware accelerated CRC32
450 instruction. This option will create 'crc32c-intel' module,
451 which will enable any routine to use the CRC32 instruction to
452 gain performance compared with software implementation.
453 Module will be crc32c-intel.
454
Jean Delvare7cf31862016-11-22 10:32:44 +0100455config CRYPTO_CRC32C_VPMSUM
Anton Blanchard6dd7a822016-07-01 08:19:45 +1000456 tristate "CRC32c CRC algorithm (powerpc64)"
Michael Ellermanc12abf32016-08-09 08:46:15 +1000457 depends on PPC64 && ALTIVEC
Anton Blanchard6dd7a822016-07-01 08:19:45 +1000458 select CRYPTO_HASH
459 select CRC32
460 help
461 CRC32c algorithm implemented using vector polynomial multiply-sum
462 (vpmsum) instructions, introduced in POWER8. Enable on POWER8
463 and newer processors for improved performance.
464
465
David S. Miller442a7c42012-08-22 20:47:36 -0700466config CRYPTO_CRC32C_SPARC64
467 tristate "CRC32c CRC algorithm (SPARC64)"
468 depends on SPARC64
469 select CRYPTO_HASH
470 select CRC32
471 help
472 CRC32c CRC algorithm implemented using sparc64 crypto instructions,
473 when available.
474
Alexander Boyko78c37d12013-01-10 18:54:59 +0400475config CRYPTO_CRC32
476 tristate "CRC32 CRC algorithm"
477 select CRYPTO_HASH
478 select CRC32
479 help
480 CRC-32-IEEE 802.3 cyclic redundancy-check algorithm.
481 Shash crypto api wrappers to crc32_le function.
482
483config CRYPTO_CRC32_PCLMUL
484 tristate "CRC32 PCLMULQDQ hardware acceleration"
485 depends on X86
486 select CRYPTO_HASH
487 select CRC32
488 help
489 From Intel Westmere and AMD Bulldozer processor with SSE4.2
490 and PCLMULQDQ supported, the processor will support
491 CRC32 PCLMULQDQ implementation using hardware accelerated PCLMULQDQ
492 instruction. This option will create 'crc32-plcmul' module,
493 which will enable any routine to use the CRC-32-IEEE 802.3 checksum
494 and gain better performance as compared with the table implementation.
495
Herbert Xu684115212013-09-07 12:56:26 +1000496config CRYPTO_CRCT10DIF
497 tristate "CRCT10DIF algorithm"
498 select CRYPTO_HASH
499 help
500 CRC T10 Data Integrity Field computation is being cast as
501 a crypto transform. This allows for faster crc t10 diff
502 transforms to be used if they are available.
503
504config CRYPTO_CRCT10DIF_PCLMUL
505 tristate "CRCT10DIF PCLMULQDQ hardware acceleration"
506 depends on X86 && 64BIT && CRC_T10DIF
507 select CRYPTO_HASH
508 help
509 For x86_64 processors with SSE4.2 and PCLMULQDQ supported,
510 CRC T10 DIF PCLMULQDQ computation can be hardware
511 accelerated PCLMULQDQ instruction. This option will create
512 'crct10dif-plcmul' module, which is faster when computing the
513 crct10dif checksum as compared with the generic table implementation.
514
Daniel Axtensb01df1c2017-03-15 23:37:36 +1100515config CRYPTO_CRCT10DIF_VPMSUM
516 tristate "CRC32T10DIF powerpc64 hardware acceleration"
517 depends on PPC64 && ALTIVEC && CRC_T10DIF
518 select CRYPTO_HASH
519 help
520 CRC10T10DIF algorithm implemented using vector polynomial
521 multiply-sum (vpmsum) instructions, introduced in POWER8. Enable on
522 POWER8 and newer processors for improved performance.
523
Daniel Axtens146c8682017-03-15 23:37:37 +1100524config CRYPTO_VPMSUM_TESTER
525 tristate "Powerpc64 vpmsum hardware acceleration tester"
526 depends on CRYPTO_CRCT10DIF_VPMSUM && CRYPTO_CRC32C_VPMSUM
527 help
528 Stress test for CRC32c and CRC-T10DIF algorithms implemented with
529 POWER8 vpmsum instructions.
530 Unless you are testing these algorithms, you don't need this.
531
Huang Ying2cdc6892009-08-06 15:32:38 +1000532config CRYPTO_GHASH
533 tristate "GHASH digest algorithm"
Huang Ying2cdc6892009-08-06 15:32:38 +1000534 select CRYPTO_GF128MUL
Arnd Bergmann578c60f2016-01-25 17:51:21 +0100535 select CRYPTO_HASH
Huang Ying2cdc6892009-08-06 15:32:38 +1000536 help
537 GHASH is message digest algorithm for GCM (Galois/Counter Mode).
538
Martin Willif979e012015-06-01 13:43:58 +0200539config CRYPTO_POLY1305
540 tristate "Poly1305 authenticator algorithm"
Arnd Bergmann578c60f2016-01-25 17:51:21 +0100541 select CRYPTO_HASH
Martin Willif979e012015-06-01 13:43:58 +0200542 help
543 Poly1305 authenticator algorithm, RFC7539.
544
545 Poly1305 is an authenticator algorithm designed by Daniel J. Bernstein.
546 It is used for the ChaCha20-Poly1305 AEAD, specified in RFC7539 for use
547 in IETF protocols. This is the portable C implementation of Poly1305.
548
Martin Willic70f4ab2015-07-16 19:14:06 +0200549config CRYPTO_POLY1305_X86_64
Martin Willib1ccc8f2015-07-16 19:14:08 +0200550 tristate "Poly1305 authenticator algorithm (x86_64/SSE2/AVX2)"
Martin Willic70f4ab2015-07-16 19:14:06 +0200551 depends on X86 && 64BIT
552 select CRYPTO_POLY1305
553 help
554 Poly1305 authenticator algorithm, RFC7539.
555
556 Poly1305 is an authenticator algorithm designed by Daniel J. Bernstein.
557 It is used for the ChaCha20-Poly1305 AEAD, specified in RFC7539 for use
558 in IETF protocols. This is the x86_64 assembler implementation using SIMD
559 instructions.
560
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800561config CRYPTO_MD4
562 tristate "MD4 digest algorithm"
Adrian-Ken Rueegsegger808a1762008-12-03 19:55:27 +0800563 select CRYPTO_HASH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800565 MD4 message digest algorithm (RFC1320).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800567config CRYPTO_MD5
568 tristate "MD5 digest algorithm"
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +0800569 select CRYPTO_HASH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800571 MD5 message digest algorithm (RFC1321).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Aaro Koskinend69e75d2014-12-21 22:54:02 +0200573config CRYPTO_MD5_OCTEON
574 tristate "MD5 digest algorithm (OCTEON)"
575 depends on CPU_CAVIUM_OCTEON
576 select CRYPTO_MD5
577 select CRYPTO_HASH
578 help
579 MD5 message digest algorithm (RFC1321) implemented
580 using OCTEON crypto instructions, when available.
581
Markus Stockhausene8e59952015-03-01 19:30:46 +0100582config CRYPTO_MD5_PPC
583 tristate "MD5 digest algorithm (PPC)"
584 depends on PPC
585 select CRYPTO_HASH
586 help
587 MD5 message digest algorithm (RFC1321) implemented
588 in PPC assembler.
589
David S. Millerfa4dfed2012-08-19 21:51:26 -0700590config CRYPTO_MD5_SPARC64
591 tristate "MD5 digest algorithm (SPARC64)"
592 depends on SPARC64
593 select CRYPTO_MD5
594 select CRYPTO_HASH
595 help
596 MD5 message digest algorithm (RFC1321) implemented
597 using sparc64 crypto instructions, when available.
598
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800599config CRYPTO_MICHAEL_MIC
600 tristate "Michael MIC keyed digest algorithm"
Adrian-Ken Rueegsegger19e2bf12008-12-07 19:35:38 +0800601 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800602 help
603 Michael MIC is used for message integrity protection in TKIP
604 (IEEE 802.11i). This algorithm is required for TKIP, but it
605 should not be used for other purposes because of the weakness
606 of the algorithm.
607
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800608config CRYPTO_RMD128
Adrian Bunkb6d44342008-07-16 19:28:00 +0800609 tristate "RIPEMD-128 digest algorithm"
Herbert Xu7c4468b2008-11-08 09:10:40 +0800610 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800611 help
612 RIPEMD-128 (ISO/IEC 10118-3:2004).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800613
Adrian Bunkb6d44342008-07-16 19:28:00 +0800614 RIPEMD-128 is a 128-bit cryptographic hash function. It should only
Michael Witten35ed4b32011-07-09 04:02:31 +0000615 be used as a secure replacement for RIPEMD. For other use cases,
Adrian Bunkb6d44342008-07-16 19:28:00 +0800616 RIPEMD-160 should be used.
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800617
Adrian Bunkb6d44342008-07-16 19:28:00 +0800618 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800619 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800620
621config CRYPTO_RMD160
Adrian Bunkb6d44342008-07-16 19:28:00 +0800622 tristate "RIPEMD-160 digest algorithm"
Herbert Xue5835fb2008-11-08 09:18:51 +0800623 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800624 help
625 RIPEMD-160 (ISO/IEC 10118-3:2004).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800626
Adrian Bunkb6d44342008-07-16 19:28:00 +0800627 RIPEMD-160 is a 160-bit cryptographic hash function. It is intended
628 to be used as a secure replacement for the 128-bit hash functions
629 MD4, MD5 and it's predecessor RIPEMD
630 (not to be confused with RIPEMD-128).
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800631
Adrian Bunkb6d44342008-07-16 19:28:00 +0800632 It's speed is comparable to SHA1 and there are no known attacks
633 against RIPEMD-160.
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800634
Adrian Bunkb6d44342008-07-16 19:28:00 +0800635 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800636 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800637
638config CRYPTO_RMD256
Adrian Bunkb6d44342008-07-16 19:28:00 +0800639 tristate "RIPEMD-256 digest algorithm"
Herbert Xud8a5e2e2008-11-08 09:58:10 +0800640 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800641 help
642 RIPEMD-256 is an optional extension of RIPEMD-128 with a
643 256 bit hash. It is intended for applications that require
644 longer hash-results, without needing a larger security level
645 (than RIPEMD-128).
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800646
Adrian Bunkb6d44342008-07-16 19:28:00 +0800647 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800648 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800649
650config CRYPTO_RMD320
Adrian Bunkb6d44342008-07-16 19:28:00 +0800651 tristate "RIPEMD-320 digest algorithm"
Herbert Xu3b8efb42008-11-08 10:11:09 +0800652 select CRYPTO_HASH
Adrian Bunkb6d44342008-07-16 19:28:00 +0800653 help
654 RIPEMD-320 is an optional extension of RIPEMD-160 with a
655 320 bit hash. It is intended for applications that require
656 longer hash-results, without needing a larger security level
657 (than RIPEMD-160).
Adrian-Ken Rueegsegger534fe2c2008-05-09 21:30:27 +0800658
Adrian Bunkb6d44342008-07-16 19:28:00 +0800659 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800660 See <http://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
Adrian-Ken Rueegsegger82798f92008-05-07 22:17:37 +0800661
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800662config CRYPTO_SHA1
663 tristate "SHA1 digest algorithm"
Adrian-Ken Rueegsegger54ccb362008-12-02 21:08:20 +0800664 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800665 help
666 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
667
Mathias Krause66be8952011-08-04 20:19:25 +0200668config CRYPTO_SHA1_SSSE3
time38b6b72015-09-10 15:27:26 -0700669 tristate "SHA1 digest algorithm (SSSE3/AVX/AVX2/SHA-NI)"
Mathias Krause66be8952011-08-04 20:19:25 +0200670 depends on X86 && 64BIT
671 select CRYPTO_SHA1
672 select CRYPTO_HASH
673 help
674 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
675 using Supplemental SSE3 (SSSE3) instructions or Advanced Vector
time38b6b72015-09-10 15:27:26 -0700676 Extensions (AVX/AVX2) or SHA-NI(SHA Extensions New Instructions),
677 when available.
Mathias Krause66be8952011-08-04 20:19:25 +0200678
Tim Chen8275d1a2013-03-26 13:59:17 -0700679config CRYPTO_SHA256_SSSE3
time38b6b72015-09-10 15:27:26 -0700680 tristate "SHA256 digest algorithm (SSSE3/AVX/AVX2/SHA-NI)"
Tim Chen8275d1a2013-03-26 13:59:17 -0700681 depends on X86 && 64BIT
682 select CRYPTO_SHA256
683 select CRYPTO_HASH
684 help
685 SHA-256 secure hash standard (DFIPS 180-2) implemented
686 using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector
687 Extensions version 1 (AVX1), or Advanced Vector Extensions
time38b6b72015-09-10 15:27:26 -0700688 version 2 (AVX2) instructions, or SHA-NI (SHA Extensions New
689 Instructions) when available.
Tim Chen8275d1a2013-03-26 13:59:17 -0700690
Tim Chen87de4572013-03-26 14:00:02 -0700691config CRYPTO_SHA512_SSSE3
692 tristate "SHA512 digest algorithm (SSSE3/AVX/AVX2)"
693 depends on X86 && 64BIT
694 select CRYPTO_SHA512
695 select CRYPTO_HASH
696 help
697 SHA-512 secure hash standard (DFIPS 180-2) implemented
698 using Supplemental SSE3 (SSSE3) instructions, or Advanced Vector
699 Extensions version 1 (AVX1), or Advanced Vector Extensions
700 version 2 (AVX2) instructions, when available.
701
Aaro Koskinenefdb6f62015-03-08 22:07:47 +0200702config CRYPTO_SHA1_OCTEON
703 tristate "SHA1 digest algorithm (OCTEON)"
704 depends on CPU_CAVIUM_OCTEON
705 select CRYPTO_SHA1
706 select CRYPTO_HASH
707 help
708 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
709 using OCTEON crypto instructions, when available.
710
David S. Miller4ff28d42012-08-19 15:41:53 -0700711config CRYPTO_SHA1_SPARC64
712 tristate "SHA1 digest algorithm (SPARC64)"
713 depends on SPARC64
714 select CRYPTO_SHA1
715 select CRYPTO_HASH
716 help
717 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
718 using sparc64 crypto instructions, when available.
719
Michael Ellerman323a6bf2012-09-13 23:00:49 +0000720config CRYPTO_SHA1_PPC
721 tristate "SHA1 digest algorithm (powerpc)"
722 depends on PPC
723 help
724 This is the powerpc hardware accelerated implementation of the
725 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2).
726
Markus Stockhausend9850fc2015-02-24 20:36:50 +0100727config CRYPTO_SHA1_PPC_SPE
728 tristate "SHA1 digest algorithm (PPC SPE)"
729 depends on PPC && SPE
730 help
731 SHA-1 secure hash standard (DFIPS 180-4) implemented
732 using powerpc SPE SIMD instruction set.
733
Tim Chen1e65b812014-07-31 10:29:51 -0700734config CRYPTO_SHA1_MB
735 tristate "SHA1 digest algorithm (x86_64 Multi-Buffer, Experimental)"
736 depends on X86 && 64BIT
737 select CRYPTO_SHA1
738 select CRYPTO_HASH
739 select CRYPTO_MCRYPTD
740 help
741 SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
742 using multi-buffer technique. This algorithm computes on
743 multiple data lanes concurrently with SIMD instructions for
744 better throughput. It should not be enabled by default but
745 used when there is significant amount of work to keep the keep
746 the data lanes filled to get performance benefit. If the data
747 lanes remain unfilled, a flush operation will be initiated to
748 process the crypto jobs, adding a slight latency.
749
Megha Dey9be7e242016-06-23 18:40:43 -0700750config CRYPTO_SHA256_MB
751 tristate "SHA256 digest algorithm (x86_64 Multi-Buffer, Experimental)"
752 depends on X86 && 64BIT
753 select CRYPTO_SHA256
754 select CRYPTO_HASH
755 select CRYPTO_MCRYPTD
756 help
757 SHA-256 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
758 using multi-buffer technique. This algorithm computes on
759 multiple data lanes concurrently with SIMD instructions for
760 better throughput. It should not be enabled by default but
761 used when there is significant amount of work to keep the keep
762 the data lanes filled to get performance benefit. If the data
763 lanes remain unfilled, a flush operation will be initiated to
764 process the crypto jobs, adding a slight latency.
765
Megha Dey026bb8a2016-06-27 10:20:05 -0700766config CRYPTO_SHA512_MB
767 tristate "SHA512 digest algorithm (x86_64 Multi-Buffer, Experimental)"
768 depends on X86 && 64BIT
769 select CRYPTO_SHA512
770 select CRYPTO_HASH
771 select CRYPTO_MCRYPTD
772 help
773 SHA-512 secure hash standard (FIPS 180-1/DFIPS 180-2) implemented
774 using multi-buffer technique. This algorithm computes on
775 multiple data lanes concurrently with SIMD instructions for
776 better throughput. It should not be enabled by default but
777 used when there is significant amount of work to keep the keep
778 the data lanes filled to get performance benefit. If the data
779 lanes remain unfilled, a flush operation will be initiated to
780 process the crypto jobs, adding a slight latency.
781
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800782config CRYPTO_SHA256
783 tristate "SHA224 and SHA256 digest algorithm"
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +0800784 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800785 help
786 SHA256 secure hash standard (DFIPS 180-2).
787
788 This version of SHA implements a 256 bit hash with 128 bits of
789 security against collision attacks.
790
Adrian Bunkb6d44342008-07-16 19:28:00 +0800791 This code also includes SHA-224, a 224 bit hash with 112 bits
792 of security against collision attacks.
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800793
Markus Stockhausen2ecc1e92015-01-30 15:39:34 +0100794config CRYPTO_SHA256_PPC_SPE
795 tristate "SHA224 and SHA256 digest algorithm (PPC SPE)"
796 depends on PPC && SPE
797 select CRYPTO_SHA256
798 select CRYPTO_HASH
799 help
800 SHA224 and SHA256 secure hash standard (DFIPS 180-2)
801 implemented using powerpc SPE SIMD instruction set.
802
Aaro Koskinenefdb6f62015-03-08 22:07:47 +0200803config CRYPTO_SHA256_OCTEON
804 tristate "SHA224 and SHA256 digest algorithm (OCTEON)"
805 depends on CPU_CAVIUM_OCTEON
806 select CRYPTO_SHA256
807 select CRYPTO_HASH
808 help
809 SHA-256 secure hash standard (DFIPS 180-2) implemented
810 using OCTEON crypto instructions, when available.
811
David S. Miller86c93b22012-08-19 17:11:37 -0700812config CRYPTO_SHA256_SPARC64
813 tristate "SHA224 and SHA256 digest algorithm (SPARC64)"
814 depends on SPARC64
815 select CRYPTO_SHA256
816 select CRYPTO_HASH
817 help
818 SHA-256 secure hash standard (DFIPS 180-2) implemented
819 using sparc64 crypto instructions, when available.
820
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800821config CRYPTO_SHA512
822 tristate "SHA384 and SHA512 digest algorithms"
Adrian-Ken Rueegseggerbd9d20d2008-12-17 16:49:02 +1100823 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800824 help
825 SHA512 secure hash standard (DFIPS 180-2).
826
827 This version of SHA implements a 512 bit hash with 256 bits of
828 security against collision attacks.
829
830 This code also includes SHA-384, a 384 bit hash with 192 bits
831 of security against collision attacks.
832
Aaro Koskinenefdb6f62015-03-08 22:07:47 +0200833config CRYPTO_SHA512_OCTEON
834 tristate "SHA384 and SHA512 digest algorithms (OCTEON)"
835 depends on CPU_CAVIUM_OCTEON
836 select CRYPTO_SHA512
837 select CRYPTO_HASH
838 help
839 SHA-512 secure hash standard (DFIPS 180-2) implemented
840 using OCTEON crypto instructions, when available.
841
David S. Miller775e0c62012-08-19 17:37:56 -0700842config CRYPTO_SHA512_SPARC64
843 tristate "SHA384 and SHA512 digest algorithm (SPARC64)"
844 depends on SPARC64
845 select CRYPTO_SHA512
846 select CRYPTO_HASH
847 help
848 SHA-512 secure hash standard (DFIPS 180-2) implemented
849 using sparc64 crypto instructions, when available.
850
Jeff Garzik53964b92016-06-17 10:30:35 +0530851config CRYPTO_SHA3
852 tristate "SHA3 digest algorithm"
853 select CRYPTO_HASH
854 help
855 SHA-3 secure hash standard (DFIPS 202). It's based on
856 cryptographic sponge function family called Keccak.
857
858 References:
859 http://keccak.noekeon.org/
860
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800861config CRYPTO_TGR192
862 tristate "Tiger digest algorithms"
Adrian-Ken Rueegseggerf63fbd32008-12-03 19:58:32 +0800863 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800864 help
865 Tiger hash algorithm 192, 160 and 128-bit hashes
866
867 Tiger is a hash function optimized for 64-bit processors while
868 still having decent performance on 32-bit processors.
869 Tiger was developed by Ross Anderson and Eli Biham.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 See also:
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800872 <http://www.cs.technion.ac.il/~biham/Reports/Tiger/>.
873
874config CRYPTO_WP512
875 tristate "Whirlpool digest algorithms"
Adrian-Ken Rueegsegger49465102008-12-07 19:34:37 +0800876 select CRYPTO_HASH
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800877 help
878 Whirlpool hash algorithm 512, 384 and 256-bit hashes
879
880 Whirlpool-512 is part of the NESSIE cryptographic primitives.
881 Whirlpool will be part of the ISO/IEC 10118-3:2003(E) standard
882
883 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +0800884 <http://www.larc.usp.br/~pbarreto/WhirlpoolPage.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800885
Huang Ying0e1227d2009-10-19 11:53:06 +0900886config CRYPTO_GHASH_CLMUL_NI_INTEL
887 tristate "GHASH digest algorithm (CLMUL-NI accelerated)"
Richard Weinberger8af00862011-06-08 20:56:29 +0800888 depends on X86 && 64BIT
Huang Ying0e1227d2009-10-19 11:53:06 +0900889 select CRYPTO_CRYPTD
890 help
891 GHASH is message digest algorithm for GCM (Galois/Counter Mode).
892 The implementation is accelerated by CLMUL-NI of Intel.
893
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800894comment "Ciphers"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896config CRYPTO_AES
897 tristate "AES cipher algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +1000898 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800900 AES cipher algorithms (FIPS-197). AES uses the Rijndael
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 algorithm.
902
903 Rijndael appears to be consistently a very good performer in
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800904 both hardware and software across a wide range of computing
905 environments regardless of its use in feedback or non-feedback
906 modes. Its key setup time is excellent, and its key agility is
907 good. Rijndael's very low memory requirements make it very well
908 suited for restricted-space environments, in which it also
909 demonstrates excellent performance. Rijndael's operations are
910 among the easiest to defend against power and timing attacks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800912 The AES specifies three key sizes: 128, 192 and 256 bits
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 See <http://csrc.nist.gov/CryptoToolkit/aes/> for more information.
915
Ard Biesheuvelb5e0b032017-02-02 16:37:40 +0000916config CRYPTO_AES_TI
917 tristate "Fixed time AES cipher"
918 select CRYPTO_ALGAPI
919 help
920 This is a generic implementation of AES that attempts to eliminate
921 data dependent latencies as much as possible without affecting
922 performance too much. It is intended for use by the generic CCM
923 and GCM drivers, and other CTR or CMAC/XCBC based modes that rely
924 solely on encryption (although decryption is supported as well, but
925 with a more dramatic performance hit)
926
927 Instead of using 16 lookup tables of 1 KB each, (8 for encryption and
928 8 for decryption), this implementation only uses just two S-boxes of
929 256 bytes each, and attempts to eliminate data dependent latencies by
930 prefetching the entire table into the cache at the start of each
931 block.
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933config CRYPTO_AES_586
934 tristate "AES cipher algorithms (i586)"
Herbert Xucce9e062006-08-21 21:08:13 +1000935 depends on (X86 || UML_X86) && !64BIT
936 select CRYPTO_ALGAPI
Sebastian Siewior5157dea2007-11-10 19:07:16 +0800937 select CRYPTO_AES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800939 AES cipher algorithms (FIPS-197). AES uses the Rijndael
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 algorithm.
941
942 Rijndael appears to be consistently a very good performer in
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800943 both hardware and software across a wide range of computing
944 environments regardless of its use in feedback or non-feedback
945 modes. Its key setup time is excellent, and its key agility is
946 good. Rijndael's very low memory requirements make it very well
947 suited for restricted-space environments, in which it also
948 demonstrates excellent performance. Rijndael's operations are
949 among the easiest to defend against power and timing attacks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800951 The AES specifies three key sizes: 128, 192 and 256 bits
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 See <http://csrc.nist.gov/encryption/aes/> for more information.
954
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700955config CRYPTO_AES_X86_64
956 tristate "AES cipher algorithms (x86_64)"
Herbert Xucce9e062006-08-21 21:08:13 +1000957 depends on (X86 || UML_X86) && 64BIT
958 select CRYPTO_ALGAPI
Sebastian Siewior81190b32007-11-08 21:25:04 +0800959 select CRYPTO_AES
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700960 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800961 AES cipher algorithms (FIPS-197). AES uses the Rijndael
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700962 algorithm.
963
964 Rijndael appears to be consistently a very good performer in
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800965 both hardware and software across a wide range of computing
966 environments regardless of its use in feedback or non-feedback
967 modes. Its key setup time is excellent, and its key agility is
968 good. Rijndael's very low memory requirements make it very well
969 suited for restricted-space environments, in which it also
970 demonstrates excellent performance. Rijndael's operations are
971 among the easiest to defend against power and timing attacks.
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700972
Sebastian Siewior584fffc2008-04-05 21:04:48 +0800973 The AES specifies three key sizes: 128, 192 and 256 bits
Andreas Steinmetza2a892a2005-07-06 13:55:00 -0700974
975 See <http://csrc.nist.gov/encryption/aes/> for more information.
976
Huang Ying54b6a1b2009-01-18 16:28:34 +1100977config CRYPTO_AES_NI_INTEL
978 tristate "AES cipher algorithms (AES-NI)"
Richard Weinberger8af00862011-06-08 20:56:29 +0800979 depends on X86
Herbert Xu85671862016-11-22 20:08:33 +0800980 select CRYPTO_AEAD
Mathias Krause0d258ef2010-11-27 16:34:46 +0800981 select CRYPTO_AES_X86_64 if 64BIT
982 select CRYPTO_AES_586 if !64BIT
Huang Ying54b6a1b2009-01-18 16:28:34 +1100983 select CRYPTO_ALGAPI
Herbert Xu85671862016-11-22 20:08:33 +0800984 select CRYPTO_BLKCIPHER
Jussi Kivilinna7643a112013-04-10 18:39:20 +0300985 select CRYPTO_GLUE_HELPER_X86 if 64BIT
Herbert Xu85671862016-11-22 20:08:33 +0800986 select CRYPTO_SIMD
Huang Ying54b6a1b2009-01-18 16:28:34 +1100987 help
988 Use Intel AES-NI instructions for AES algorithm.
989
990 AES cipher algorithms (FIPS-197). AES uses the Rijndael
991 algorithm.
992
993 Rijndael appears to be consistently a very good performer in
994 both hardware and software across a wide range of computing
995 environments regardless of its use in feedback or non-feedback
996 modes. Its key setup time is excellent, and its key agility is
997 good. Rijndael's very low memory requirements make it very well
998 suited for restricted-space environments, in which it also
999 demonstrates excellent performance. Rijndael's operations are
1000 among the easiest to defend against power and timing attacks.
1001
1002 The AES specifies three key sizes: 128, 192 and 256 bits
1003
1004 See <http://csrc.nist.gov/encryption/aes/> for more information.
1005
Mathias Krause0d258ef2010-11-27 16:34:46 +08001006 In addition to AES cipher algorithm support, the acceleration
1007 for some popular block cipher mode is supported too, including
1008 ECB, CBC, LRW, PCBC, XTS. The 64 bit version has additional
1009 acceleration for CTR.
Huang Ying2cf4ac82009-03-29 15:41:20 +08001010
David S. Miller9bf48522012-08-21 03:58:13 -07001011config CRYPTO_AES_SPARC64
1012 tristate "AES cipher algorithms (SPARC64)"
1013 depends on SPARC64
1014 select CRYPTO_CRYPTD
1015 select CRYPTO_ALGAPI
1016 help
1017 Use SPARC64 crypto opcodes for AES algorithm.
1018
1019 AES cipher algorithms (FIPS-197). AES uses the Rijndael
1020 algorithm.
1021
1022 Rijndael appears to be consistently a very good performer in
1023 both hardware and software across a wide range of computing
1024 environments regardless of its use in feedback or non-feedback
1025 modes. Its key setup time is excellent, and its key agility is
1026 good. Rijndael's very low memory requirements make it very well
1027 suited for restricted-space environments, in which it also
1028 demonstrates excellent performance. Rijndael's operations are
1029 among the easiest to defend against power and timing attacks.
1030
1031 The AES specifies three key sizes: 128, 192 and 256 bits
1032
1033 See <http://csrc.nist.gov/encryption/aes/> for more information.
1034
1035 In addition to AES cipher algorithm support, the acceleration
1036 for some popular block cipher mode is supported too, including
1037 ECB and CBC.
1038
Markus Stockhausen504c6142015-02-22 10:00:10 +01001039config CRYPTO_AES_PPC_SPE
1040 tristate "AES cipher algorithms (PPC SPE)"
1041 depends on PPC && SPE
1042 help
1043 AES cipher algorithms (FIPS-197). Additionally the acceleration
1044 for popular block cipher modes ECB, CBC, CTR and XTS is supported.
1045 This module should only be used for low power (router) devices
1046 without hardware AES acceleration (e.g. caam crypto). It reduces the
1047 size of the AES tables from 16KB to 8KB + 256 bytes and mitigates
1048 timining attacks. Nevertheless it might be not as secure as other
1049 architecture specific assembler implementations that work on 1KB
1050 tables or 256 bytes S-boxes.
1051
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001052config CRYPTO_ANUBIS
1053 tristate "Anubis cipher algorithm"
1054 select CRYPTO_ALGAPI
1055 help
1056 Anubis cipher algorithm.
1057
1058 Anubis is a variable key length cipher which can use keys from
1059 128 bits to 320 bits in length. It was evaluated as a entrant
1060 in the NESSIE competition.
1061
1062 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +08001063 <https://www.cosic.esat.kuleuven.be/nessie/reports/>
1064 <http://www.larc.usp.br/~pbarreto/AnubisPage.html>
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001065
1066config CRYPTO_ARC4
1067 tristate "ARC4 cipher algorithm"
Sebastian Andrzej Siewiorb9b0f082012-06-26 18:13:46 +02001068 select CRYPTO_BLKCIPHER
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001069 help
1070 ARC4 cipher algorithm.
1071
1072 ARC4 is a stream cipher using keys ranging from 8 bits to 2048
1073 bits in length. This algorithm is required for driver-based
1074 WEP, but it should not be for other purposes because of the
1075 weakness of the algorithm.
1076
1077config CRYPTO_BLOWFISH
1078 tristate "Blowfish cipher algorithm"
1079 select CRYPTO_ALGAPI
Jussi Kivilinna52ba8672011-09-02 01:45:07 +03001080 select CRYPTO_BLOWFISH_COMMON
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001081 help
1082 Blowfish cipher algorithm, by Bruce Schneier.
1083
1084 This is a variable key length cipher which can use keys from 32
1085 bits to 448 bits in length. It's fast, simple and specifically
1086 designed for use on "large microprocessors".
1087
1088 See also:
1089 <http://www.schneier.com/blowfish.html>
1090
Jussi Kivilinna52ba8672011-09-02 01:45:07 +03001091config CRYPTO_BLOWFISH_COMMON
1092 tristate
1093 help
1094 Common parts of the Blowfish cipher algorithm shared by the
1095 generic c and the assembler implementations.
1096
1097 See also:
1098 <http://www.schneier.com/blowfish.html>
1099
Jussi Kivilinna64b94ce2011-09-02 01:45:22 +03001100config CRYPTO_BLOWFISH_X86_64
1101 tristate "Blowfish cipher algorithm (x86_64)"
Al Virof21a7c12012-04-08 20:31:22 -04001102 depends on X86 && 64BIT
Jussi Kivilinna64b94ce2011-09-02 01:45:22 +03001103 select CRYPTO_ALGAPI
1104 select CRYPTO_BLOWFISH_COMMON
1105 help
1106 Blowfish cipher algorithm (x86_64), by Bruce Schneier.
1107
1108 This is a variable key length cipher which can use keys from 32
1109 bits to 448 bits in length. It's fast, simple and specifically
1110 designed for use on "large microprocessors".
1111
1112 See also:
1113 <http://www.schneier.com/blowfish.html>
1114
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001115config CRYPTO_CAMELLIA
1116 tristate "Camellia cipher algorithms"
1117 depends on CRYPTO
1118 select CRYPTO_ALGAPI
1119 help
1120 Camellia cipher algorithms module.
1121
1122 Camellia is a symmetric key block cipher developed jointly
1123 at NTT and Mitsubishi Electric Corporation.
1124
1125 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1126
1127 See also:
1128 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1129
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +02001130config CRYPTO_CAMELLIA_X86_64
1131 tristate "Camellia cipher algorithm (x86_64)"
Al Virof21a7c12012-04-08 20:31:22 -04001132 depends on X86 && 64BIT
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +02001133 depends on CRYPTO
1134 select CRYPTO_ALGAPI
Jussi Kivilinna964263a2012-06-18 14:07:29 +03001135 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna0b95ec52012-03-05 20:26:47 +02001136 select CRYPTO_LRW
1137 select CRYPTO_XTS
1138 help
1139 Camellia cipher algorithm module (x86_64).
1140
1141 Camellia is a symmetric key block cipher developed jointly
1142 at NTT and Mitsubishi Electric Corporation.
1143
1144 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1145
1146 See also:
1147 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1148
Jussi Kivilinnad9b1d2e2012-10-26 14:49:01 +03001149config CRYPTO_CAMELLIA_AESNI_AVX_X86_64
1150 tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX)"
1151 depends on X86 && 64BIT
1152 depends on CRYPTO
1153 select CRYPTO_ALGAPI
1154 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001155 select CRYPTO_ABLK_HELPER
Jussi Kivilinnad9b1d2e2012-10-26 14:49:01 +03001156 select CRYPTO_GLUE_HELPER_X86
1157 select CRYPTO_CAMELLIA_X86_64
1158 select CRYPTO_LRW
1159 select CRYPTO_XTS
1160 help
1161 Camellia cipher algorithm module (x86_64/AES-NI/AVX).
1162
1163 Camellia is a symmetric key block cipher developed jointly
1164 at NTT and Mitsubishi Electric Corporation.
1165
1166 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1167
1168 See also:
1169 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1170
Jussi Kivilinnaf3f935a2013-04-13 13:47:00 +03001171config CRYPTO_CAMELLIA_AESNI_AVX2_X86_64
1172 tristate "Camellia cipher algorithm (x86_64/AES-NI/AVX2)"
1173 depends on X86 && 64BIT
1174 depends on CRYPTO
1175 select CRYPTO_ALGAPI
1176 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001177 select CRYPTO_ABLK_HELPER
Jussi Kivilinnaf3f935a2013-04-13 13:47:00 +03001178 select CRYPTO_GLUE_HELPER_X86
1179 select CRYPTO_CAMELLIA_X86_64
1180 select CRYPTO_CAMELLIA_AESNI_AVX_X86_64
1181 select CRYPTO_LRW
1182 select CRYPTO_XTS
1183 help
1184 Camellia cipher algorithm module (x86_64/AES-NI/AVX2).
1185
1186 Camellia is a symmetric key block cipher developed jointly
1187 at NTT and Mitsubishi Electric Corporation.
1188
1189 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1190
1191 See also:
1192 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1193
David S. Miller81658ad2012-08-28 12:05:54 -07001194config CRYPTO_CAMELLIA_SPARC64
1195 tristate "Camellia cipher algorithm (SPARC64)"
1196 depends on SPARC64
1197 depends on CRYPTO
1198 select CRYPTO_ALGAPI
1199 help
1200 Camellia cipher algorithm module (SPARC64).
1201
1202 Camellia is a symmetric key block cipher developed jointly
1203 at NTT and Mitsubishi Electric Corporation.
1204
1205 The Camellia specifies three key sizes: 128, 192 and 256 bits.
1206
1207 See also:
1208 <https://info.isl.ntt.co.jp/crypt/eng/camellia/index_s.html>
1209
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001210config CRYPTO_CAST_COMMON
1211 tristate
1212 help
1213 Common parts of the CAST cipher algorithms shared by the
1214 generic c and the assembler implementations.
1215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216config CRYPTO_CAST5
1217 tristate "CAST5 (CAST-128) cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001218 select CRYPTO_ALGAPI
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001219 select CRYPTO_CAST_COMMON
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 help
1221 The CAST5 encryption algorithm (synonymous with CAST-128) is
1222 described in RFC2144.
1223
Johannes Goetzfried4d6d6a22012-07-11 19:37:37 +02001224config CRYPTO_CAST5_AVX_X86_64
1225 tristate "CAST5 (CAST-128) cipher algorithm (x86_64/AVX)"
1226 depends on X86 && 64BIT
1227 select CRYPTO_ALGAPI
1228 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001229 select CRYPTO_ABLK_HELPER
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001230 select CRYPTO_CAST_COMMON
Johannes Goetzfried4d6d6a22012-07-11 19:37:37 +02001231 select CRYPTO_CAST5
1232 help
1233 The CAST5 encryption algorithm (synonymous with CAST-128) is
1234 described in RFC2144.
1235
1236 This module provides the Cast5 cipher algorithm that processes
1237 sixteen blocks parallel using the AVX instruction set.
1238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239config CRYPTO_CAST6
1240 tristate "CAST6 (CAST-256) cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001241 select CRYPTO_ALGAPI
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001242 select CRYPTO_CAST_COMMON
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 help
1244 The CAST6 encryption algorithm (synonymous with CAST-256) is
1245 described in RFC2612.
1246
Johannes Goetzfried4ea12772012-07-11 19:38:57 +02001247config CRYPTO_CAST6_AVX_X86_64
1248 tristate "CAST6 (CAST-256) cipher algorithm (x86_64/AVX)"
1249 depends on X86 && 64BIT
1250 select CRYPTO_ALGAPI
1251 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001252 select CRYPTO_ABLK_HELPER
Johannes Goetzfried4ea12772012-07-11 19:38:57 +02001253 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna044ab522012-11-13 11:43:14 +02001254 select CRYPTO_CAST_COMMON
Johannes Goetzfried4ea12772012-07-11 19:38:57 +02001255 select CRYPTO_CAST6
1256 select CRYPTO_LRW
1257 select CRYPTO_XTS
1258 help
1259 The CAST6 encryption algorithm (synonymous with CAST-256) is
1260 described in RFC2612.
1261
1262 This module provides the Cast6 cipher algorithm that processes
1263 eight blocks parallel using the AVX instruction set.
1264
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001265config CRYPTO_DES
1266 tristate "DES and Triple DES EDE cipher algorithms"
Herbert Xucce9e062006-08-21 21:08:13 +10001267 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001269 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
David S. Millerc5aac2d2012-08-25 22:37:23 -07001271config CRYPTO_DES_SPARC64
1272 tristate "DES and Triple DES EDE cipher algorithms (SPARC64)"
Dave Jones97da37b2012-10-02 17:13:20 -04001273 depends on SPARC64
David S. Millerc5aac2d2012-08-25 22:37:23 -07001274 select CRYPTO_ALGAPI
1275 select CRYPTO_DES
1276 help
1277 DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3),
1278 optimized using SPARC64 crypto opcodes.
1279
Jussi Kivilinna6574e6c2014-06-09 20:59:54 +03001280config CRYPTO_DES3_EDE_X86_64
1281 tristate "Triple DES EDE cipher algorithm (x86-64)"
1282 depends on X86 && 64BIT
1283 select CRYPTO_ALGAPI
1284 select CRYPTO_DES
1285 help
1286 Triple DES EDE (FIPS 46-3) algorithm.
1287
1288 This module provides implementation of the Triple DES EDE cipher
1289 algorithm that is optimized for x86-64 processors. Two versions of
1290 algorithm are provided; regular processing one input block and
1291 one that processes three blocks parallel.
1292
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001293config CRYPTO_FCRYPT
1294 tristate "FCrypt cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001295 select CRYPTO_ALGAPI
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001296 select CRYPTO_BLKCIPHER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 help
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001298 FCrypt algorithm used by RxRPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300config CRYPTO_KHAZAD
1301 tristate "Khazad cipher algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001302 select CRYPTO_ALGAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 help
1304 Khazad cipher algorithm.
1305
1306 Khazad was a finalist in the initial NESSIE competition. It is
1307 an algorithm optimized for 64-bit processors with good performance
1308 on 32-bit processors. Khazad uses an 128 bit key size.
1309
1310 See also:
Justin P. Mattock6d8de742010-09-12 10:42:47 +08001311 <http://www.larc.usp.br/~pbarreto/KhazadPage.html>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Tan Swee Heng2407d602007-11-23 19:45:00 +08001313config CRYPTO_SALSA20
Kees Cook3b4afaf2012-10-02 11:16:49 -07001314 tristate "Salsa20 stream cipher algorithm"
Tan Swee Heng2407d602007-11-23 19:45:00 +08001315 select CRYPTO_BLKCIPHER
1316 help
1317 Salsa20 stream cipher algorithm.
1318
1319 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
1320 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
1321
1322 The Salsa20 stream cipher algorithm is designed by Daniel J.
1323 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Tan Swee Heng974e4b72007-12-10 15:52:56 +08001325config CRYPTO_SALSA20_586
Kees Cook3b4afaf2012-10-02 11:16:49 -07001326 tristate "Salsa20 stream cipher algorithm (i586)"
Tan Swee Heng974e4b72007-12-10 15:52:56 +08001327 depends on (X86 || UML_X86) && !64BIT
Tan Swee Heng974e4b72007-12-10 15:52:56 +08001328 select CRYPTO_BLKCIPHER
Tan Swee Heng974e4b72007-12-10 15:52:56 +08001329 help
1330 Salsa20 stream cipher algorithm.
1331
1332 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
1333 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
1334
1335 The Salsa20 stream cipher algorithm is designed by Daniel J.
1336 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
1337
Tan Swee Heng9a7dafb2007-12-18 00:04:40 +08001338config CRYPTO_SALSA20_X86_64
Kees Cook3b4afaf2012-10-02 11:16:49 -07001339 tristate "Salsa20 stream cipher algorithm (x86_64)"
Tan Swee Heng9a7dafb2007-12-18 00:04:40 +08001340 depends on (X86 || UML_X86) && 64BIT
Tan Swee Heng9a7dafb2007-12-18 00:04:40 +08001341 select CRYPTO_BLKCIPHER
Tan Swee Heng9a7dafb2007-12-18 00:04:40 +08001342 help
1343 Salsa20 stream cipher algorithm.
1344
1345 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
1346 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
1347
1348 The Salsa20 stream cipher algorithm is designed by Daniel J.
1349 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html>
1350
Martin Willic08d0e62015-06-01 13:43:56 +02001351config CRYPTO_CHACHA20
1352 tristate "ChaCha20 cipher algorithm"
1353 select CRYPTO_BLKCIPHER
1354 help
1355 ChaCha20 cipher algorithm, RFC7539.
1356
1357 ChaCha20 is a 256-bit high-speed stream cipher designed by Daniel J.
1358 Bernstein and further specified in RFC7539 for use in IETF protocols.
1359 This is the portable C implementation of ChaCha20.
1360
1361 See also:
1362 <http://cr.yp.to/chacha/chacha-20080128.pdf>
1363
Martin Willic9320b62015-07-16 19:14:01 +02001364config CRYPTO_CHACHA20_X86_64
Martin Willi3d1e93c2015-07-16 19:14:03 +02001365 tristate "ChaCha20 cipher algorithm (x86_64/SSSE3/AVX2)"
Martin Willic9320b62015-07-16 19:14:01 +02001366 depends on X86 && 64BIT
1367 select CRYPTO_BLKCIPHER
1368 select CRYPTO_CHACHA20
1369 help
1370 ChaCha20 cipher algorithm, RFC7539.
1371
1372 ChaCha20 is a 256-bit high-speed stream cipher designed by Daniel J.
1373 Bernstein and further specified in RFC7539 for use in IETF protocols.
1374 This is the x86_64 assembler implementation using SIMD instructions.
1375
1376 See also:
1377 <http://cr.yp.to/chacha/chacha-20080128.pdf>
1378
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001379config CRYPTO_SEED
1380 tristate "SEED cipher algorithm"
1381 select CRYPTO_ALGAPI
1382 help
1383 SEED cipher algorithm (RFC4269).
1384
1385 SEED is a 128-bit symmetric key block cipher that has been
1386 developed by KISA (Korea Information Security Agency) as a
1387 national standard encryption algorithm of the Republic of Korea.
1388 It is a 16 round block cipher with the key size of 128 bit.
1389
1390 See also:
1391 <http://www.kisa.or.kr/kisa/seed/jsp/seed_eng.jsp>
1392
1393config CRYPTO_SERPENT
1394 tristate "Serpent cipher algorithm"
1395 select CRYPTO_ALGAPI
1396 help
1397 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1398
1399 Keys are allowed to be from 0 to 256 bits in length, in steps
1400 of 8 bits. Also includes the 'Tnepres' algorithm, a reversed
1401 variant of Serpent for compatibility with old kerneli.org code.
1402
1403 See also:
1404 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1405
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001406config CRYPTO_SERPENT_SSE2_X86_64
1407 tristate "Serpent cipher algorithm (x86_64/SSE2)"
1408 depends on X86 && 64BIT
1409 select CRYPTO_ALGAPI
Jussi Kivilinna341975b2011-11-24 08:37:41 +02001410 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001411 select CRYPTO_ABLK_HELPER
Jussi Kivilinna596d8752012-06-18 14:07:19 +03001412 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001413 select CRYPTO_SERPENT
Jussi Kivilinnafeaf0cf2011-12-13 12:53:12 +02001414 select CRYPTO_LRW
1415 select CRYPTO_XTS
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001416 help
1417 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1418
1419 Keys are allowed to be from 0 to 256 bits in length, in steps
1420 of 8 bits.
1421
Masanari Iida1e6232f2015-04-04 00:20:30 +09001422 This module provides Serpent cipher algorithm that processes eight
Jussi Kivilinna937c30d2011-11-09 16:26:25 +02001423 blocks parallel using SSE2 instruction set.
1424
1425 See also:
1426 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1427
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001428config CRYPTO_SERPENT_SSE2_586
1429 tristate "Serpent cipher algorithm (i586/SSE2)"
1430 depends on X86 && !64BIT
1431 select CRYPTO_ALGAPI
Jussi Kivilinna341975b2011-11-24 08:37:41 +02001432 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001433 select CRYPTO_ABLK_HELPER
Jussi Kivilinna596d8752012-06-18 14:07:19 +03001434 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001435 select CRYPTO_SERPENT
Jussi Kivilinnafeaf0cf2011-12-13 12:53:12 +02001436 select CRYPTO_LRW
1437 select CRYPTO_XTS
Jussi Kivilinna251496d2011-11-09 16:26:31 +02001438 help
1439 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1440
1441 Keys are allowed to be from 0 to 256 bits in length, in steps
1442 of 8 bits.
1443
1444 This module provides Serpent cipher algorithm that processes four
1445 blocks parallel using SSE2 instruction set.
1446
1447 See also:
1448 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1449
Johannes Goetzfried7efe4072012-06-12 16:47:43 +08001450config CRYPTO_SERPENT_AVX_X86_64
1451 tristate "Serpent cipher algorithm (x86_64/AVX)"
1452 depends on X86 && 64BIT
1453 select CRYPTO_ALGAPI
1454 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001455 select CRYPTO_ABLK_HELPER
Jussi Kivilinna1d0debb2012-06-18 14:07:24 +03001456 select CRYPTO_GLUE_HELPER_X86
Johannes Goetzfried7efe4072012-06-12 16:47:43 +08001457 select CRYPTO_SERPENT
1458 select CRYPTO_LRW
1459 select CRYPTO_XTS
1460 help
1461 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1462
1463 Keys are allowed to be from 0 to 256 bits in length, in steps
1464 of 8 bits.
1465
1466 This module provides the Serpent cipher algorithm that processes
1467 eight blocks parallel using the AVX instruction set.
1468
1469 See also:
1470 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1471
Jussi Kivilinna56d76c92013-04-13 13:46:55 +03001472config CRYPTO_SERPENT_AVX2_X86_64
1473 tristate "Serpent cipher algorithm (x86_64/AVX2)"
1474 depends on X86 && 64BIT
1475 select CRYPTO_ALGAPI
1476 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001477 select CRYPTO_ABLK_HELPER
Jussi Kivilinna56d76c92013-04-13 13:46:55 +03001478 select CRYPTO_GLUE_HELPER_X86
1479 select CRYPTO_SERPENT
1480 select CRYPTO_SERPENT_AVX_X86_64
1481 select CRYPTO_LRW
1482 select CRYPTO_XTS
1483 help
1484 Serpent cipher algorithm, by Anderson, Biham & Knudsen.
1485
1486 Keys are allowed to be from 0 to 256 bits in length, in steps
1487 of 8 bits.
1488
1489 This module provides Serpent cipher algorithm that processes 16
1490 blocks parallel using AVX2 instruction set.
1491
1492 See also:
1493 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1494
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001495config CRYPTO_TEA
1496 tristate "TEA, XTEA and XETA cipher algorithms"
1497 select CRYPTO_ALGAPI
1498 help
1499 TEA cipher algorithm.
1500
1501 Tiny Encryption Algorithm is a simple cipher that uses
1502 many rounds for security. It is very fast and uses
1503 little memory.
1504
1505 Xtendend Tiny Encryption Algorithm is a modification to
1506 the TEA algorithm to address a potential key weakness
1507 in the TEA algorithm.
1508
1509 Xtendend Encryption Tiny Algorithm is a mis-implementation
1510 of the XTEA algorithm for compatibility purposes.
1511
1512config CRYPTO_TWOFISH
1513 tristate "Twofish cipher algorithm"
1514 select CRYPTO_ALGAPI
1515 select CRYPTO_TWOFISH_COMMON
1516 help
1517 Twofish cipher algorithm.
1518
1519 Twofish was submitted as an AES (Advanced Encryption Standard)
1520 candidate cipher by researchers at CounterPane Systems. It is a
1521 16 round block cipher supporting key sizes of 128, 192, and 256
1522 bits.
1523
1524 See also:
1525 <http://www.schneier.com/twofish.html>
1526
1527config CRYPTO_TWOFISH_COMMON
1528 tristate
1529 help
1530 Common parts of the Twofish cipher algorithm shared by the
1531 generic c and the assembler implementations.
1532
1533config CRYPTO_TWOFISH_586
1534 tristate "Twofish cipher algorithms (i586)"
1535 depends on (X86 || UML_X86) && !64BIT
1536 select CRYPTO_ALGAPI
1537 select CRYPTO_TWOFISH_COMMON
1538 help
1539 Twofish cipher algorithm.
1540
1541 Twofish was submitted as an AES (Advanced Encryption Standard)
1542 candidate cipher by researchers at CounterPane Systems. It is a
1543 16 round block cipher supporting key sizes of 128, 192, and 256
1544 bits.
1545
1546 See also:
1547 <http://www.schneier.com/twofish.html>
1548
1549config CRYPTO_TWOFISH_X86_64
1550 tristate "Twofish cipher algorithm (x86_64)"
1551 depends on (X86 || UML_X86) && 64BIT
1552 select CRYPTO_ALGAPI
1553 select CRYPTO_TWOFISH_COMMON
1554 help
1555 Twofish cipher algorithm (x86_64).
1556
1557 Twofish was submitted as an AES (Advanced Encryption Standard)
1558 candidate cipher by researchers at CounterPane Systems. It is a
1559 16 round block cipher supporting key sizes of 128, 192, and 256
1560 bits.
1561
1562 See also:
1563 <http://www.schneier.com/twofish.html>
1564
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001565config CRYPTO_TWOFISH_X86_64_3WAY
1566 tristate "Twofish cipher algorithm (x86_64, 3-way parallel)"
Al Virof21a7c12012-04-08 20:31:22 -04001567 depends on X86 && 64BIT
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001568 select CRYPTO_ALGAPI
1569 select CRYPTO_TWOFISH_COMMON
1570 select CRYPTO_TWOFISH_X86_64
Jussi Kivilinna414cb5e2012-06-18 14:07:34 +03001571 select CRYPTO_GLUE_HELPER_X86
Jussi Kivilinnae7cda5d2011-12-13 12:53:01 +02001572 select CRYPTO_LRW
1573 select CRYPTO_XTS
Jussi Kivilinna8280daa2011-09-26 16:47:25 +03001574 help
1575 Twofish cipher algorithm (x86_64, 3-way parallel).
1576
1577 Twofish was submitted as an AES (Advanced Encryption Standard)
1578 candidate cipher by researchers at CounterPane Systems. It is a
1579 16 round block cipher supporting key sizes of 128, 192, and 256
1580 bits.
1581
1582 This module provides Twofish cipher algorithm that processes three
1583 blocks parallel, utilizing resources of out-of-order CPUs better.
1584
1585 See also:
1586 <http://www.schneier.com/twofish.html>
1587
Johannes Goetzfried107778b2012-05-28 15:54:24 +02001588config CRYPTO_TWOFISH_AVX_X86_64
1589 tristate "Twofish cipher algorithm (x86_64/AVX)"
1590 depends on X86 && 64BIT
1591 select CRYPTO_ALGAPI
1592 select CRYPTO_CRYPTD
Ard Biesheuvel801201a2013-09-20 09:55:41 +02001593 select CRYPTO_ABLK_HELPER
Jussi Kivilinnaa7378d42012-06-18 14:07:39 +03001594 select CRYPTO_GLUE_HELPER_X86
Johannes Goetzfried107778b2012-05-28 15:54:24 +02001595 select CRYPTO_TWOFISH_COMMON
1596 select CRYPTO_TWOFISH_X86_64
1597 select CRYPTO_TWOFISH_X86_64_3WAY
1598 select CRYPTO_LRW
1599 select CRYPTO_XTS
1600 help
1601 Twofish cipher algorithm (x86_64/AVX).
1602
1603 Twofish was submitted as an AES (Advanced Encryption Standard)
1604 candidate cipher by researchers at CounterPane Systems. It is a
1605 16 round block cipher supporting key sizes of 128, 192, and 256
1606 bits.
1607
1608 This module provides the Twofish cipher algorithm that processes
1609 eight blocks parallel using the AVX Instruction Set.
1610
1611 See also:
1612 <http://www.schneier.com/twofish.html>
1613
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001614comment "Compression"
1615
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616config CRYPTO_DEFLATE
1617 tristate "Deflate compression algorithm"
Herbert Xucce9e062006-08-21 21:08:13 +10001618 select CRYPTO_ALGAPI
Giovanni Cabidduf6ded092016-10-21 13:19:53 +01001619 select CRYPTO_ACOMP2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 select ZLIB_INFLATE
1621 select ZLIB_DEFLATE
1622 help
1623 This is the Deflate algorithm (RFC1951), specified for use in
1624 IPSec with the IPCOMP protocol (RFC3173, RFC2394).
Sebastian Siewior584fffc2008-04-05 21:04:48 +08001625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 You will most probably want this if using IPSec.
1627
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001628config CRYPTO_LZO
1629 tristate "LZO compression algorithm"
1630 select CRYPTO_ALGAPI
Giovanni Cabidduac9d2c42016-10-21 13:19:49 +01001631 select CRYPTO_ACOMP2
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001632 select LZO_COMPRESS
1633 select LZO_DECOMPRESS
1634 help
1635 This is the LZO algorithm.
1636
Seth Jennings35a1fc12012-07-19 09:42:41 -05001637config CRYPTO_842
1638 tristate "842 compression algorithm"
Dan Streetman2062c5b2015-05-07 13:49:15 -04001639 select CRYPTO_ALGAPI
Giovanni Cabiddu6a8de3a2016-10-21 13:19:52 +01001640 select CRYPTO_ACOMP2
Dan Streetman2062c5b2015-05-07 13:49:15 -04001641 select 842_COMPRESS
1642 select 842_DECOMPRESS
Seth Jennings35a1fc12012-07-19 09:42:41 -05001643 help
1644 This is the 842 algorithm.
1645
Chanho Min0ea85302013-07-08 16:01:51 -07001646config CRYPTO_LZ4
1647 tristate "LZ4 compression algorithm"
1648 select CRYPTO_ALGAPI
Giovanni Cabiddu8cd93302016-10-21 13:19:50 +01001649 select CRYPTO_ACOMP2
Chanho Min0ea85302013-07-08 16:01:51 -07001650 select LZ4_COMPRESS
1651 select LZ4_DECOMPRESS
1652 help
1653 This is the LZ4 algorithm.
1654
1655config CRYPTO_LZ4HC
1656 tristate "LZ4HC compression algorithm"
1657 select CRYPTO_ALGAPI
Giovanni Cabiddu91d53d92016-10-21 13:19:51 +01001658 select CRYPTO_ACOMP2
Chanho Min0ea85302013-07-08 16:01:51 -07001659 select LZ4HC_COMPRESS
1660 select LZ4_DECOMPRESS
1661 help
1662 This is the LZ4 high compression mode algorithm.
1663
Neil Horman17f0f4a2008-08-14 22:15:52 +10001664comment "Random Number Generation"
1665
1666config CRYPTO_ANSI_CPRNG
1667 tristate "Pseudo Random Number Generation for Cryptographic modules"
1668 select CRYPTO_AES
1669 select CRYPTO_RNG
Neil Horman17f0f4a2008-08-14 22:15:52 +10001670 help
1671 This option enables the generic pseudo random number generator
1672 for cryptographic modules. Uses the Algorithm specified in
Jiri Kosina7dd607e2010-01-27 01:00:10 +01001673 ANSI X9.31 A.2.4. Note that this option must be enabled if
1674 CRYPTO_FIPS is selected
Neil Horman17f0f4a2008-08-14 22:15:52 +10001675
Herbert Xuf2c89a12014-07-04 22:15:08 +08001676menuconfig CRYPTO_DRBG_MENU
Stephan Mueller419090c2014-05-31 17:22:31 +02001677 tristate "NIST SP800-90A DRBG"
Stephan Mueller419090c2014-05-31 17:22:31 +02001678 help
1679 NIST SP800-90A compliant DRBG. In the following submenu, one or
1680 more of the DRBG types must be selected.
1681
Herbert Xuf2c89a12014-07-04 22:15:08 +08001682if CRYPTO_DRBG_MENU
Stephan Mueller419090c2014-05-31 17:22:31 +02001683
1684config CRYPTO_DRBG_HMAC
Herbert Xu401e4232015-06-03 14:49:31 +08001685 bool
Stephan Mueller419090c2014-05-31 17:22:31 +02001686 default y
Stephan Mueller419090c2014-05-31 17:22:31 +02001687 select CRYPTO_HMAC
Herbert Xu826775b2015-06-11 08:55:10 +08001688 select CRYPTO_SHA256
Stephan Mueller419090c2014-05-31 17:22:31 +02001689
1690config CRYPTO_DRBG_HASH
1691 bool "Enable Hash DRBG"
Herbert Xu826775b2015-06-11 08:55:10 +08001692 select CRYPTO_SHA256
Stephan Mueller419090c2014-05-31 17:22:31 +02001693 help
1694 Enable the Hash DRBG variant as defined in NIST SP800-90A.
1695
1696config CRYPTO_DRBG_CTR
1697 bool "Enable CTR DRBG"
Stephan Mueller419090c2014-05-31 17:22:31 +02001698 select CRYPTO_AES
Stephan Mueller35591282016-06-14 07:34:13 +02001699 depends on CRYPTO_CTR
Stephan Mueller419090c2014-05-31 17:22:31 +02001700 help
1701 Enable the CTR DRBG variant as defined in NIST SP800-90A.
1702
Herbert Xuf2c89a12014-07-04 22:15:08 +08001703config CRYPTO_DRBG
1704 tristate
Herbert Xu401e4232015-06-03 14:49:31 +08001705 default CRYPTO_DRBG_MENU
Herbert Xuf2c89a12014-07-04 22:15:08 +08001706 select CRYPTO_RNG
Stephan Muellerbb5530e2015-05-25 15:10:20 +02001707 select CRYPTO_JITTERENTROPY
Herbert Xuf2c89a12014-07-04 22:15:08 +08001708
1709endif # if CRYPTO_DRBG_MENU
Stephan Mueller419090c2014-05-31 17:22:31 +02001710
Stephan Muellerbb5530e2015-05-25 15:10:20 +02001711config CRYPTO_JITTERENTROPY
1712 tristate "Jitterentropy Non-Deterministic Random Number Generator"
Arnd Bergmann2f313e02016-01-26 14:47:10 +01001713 select CRYPTO_RNG
Stephan Muellerbb5530e2015-05-25 15:10:20 +02001714 help
1715 The Jitterentropy RNG is a noise that is intended
1716 to provide seed to another RNG. The RNG does not
1717 perform any cryptographic whitening of the generated
1718 random numbers. This Jitterentropy RNG registers with
1719 the kernel crypto API and can be used by any caller.
1720
Herbert Xu03c8efc2010-10-19 21:12:39 +08001721config CRYPTO_USER_API
1722 tristate
1723
Herbert Xufe869cd2010-10-19 21:23:00 +08001724config CRYPTO_USER_API_HASH
1725 tristate "User-space interface for hash algorithms"
Herbert Xu74517082010-11-29 22:56:03 +08001726 depends on NET
Herbert Xufe869cd2010-10-19 21:23:00 +08001727 select CRYPTO_HASH
1728 select CRYPTO_USER_API
1729 help
1730 This option enables the user-spaces interface for hash
1731 algorithms.
1732
Herbert Xu8ff59092010-10-19 21:31:55 +08001733config CRYPTO_USER_API_SKCIPHER
1734 tristate "User-space interface for symmetric key cipher algorithms"
Herbert Xu74517082010-11-29 22:56:03 +08001735 depends on NET
Herbert Xu8ff59092010-10-19 21:31:55 +08001736 select CRYPTO_BLKCIPHER
1737 select CRYPTO_USER_API
1738 help
1739 This option enables the user-spaces interface for symmetric
1740 key cipher algorithms.
1741
Stephan Mueller2f3755382014-12-25 23:00:39 +01001742config CRYPTO_USER_API_RNG
1743 tristate "User-space interface for random number generator algorithms"
1744 depends on NET
1745 select CRYPTO_RNG
1746 select CRYPTO_USER_API
1747 help
1748 This option enables the user-spaces interface for random
1749 number generator algorithms.
1750
Herbert Xub64a2d92015-05-28 11:30:35 +08001751config CRYPTO_USER_API_AEAD
1752 tristate "User-space interface for AEAD cipher algorithms"
1753 depends on NET
1754 select CRYPTO_AEAD
1755 select CRYPTO_USER_API
1756 help
1757 This option enables the user-spaces interface for AEAD
1758 cipher algorithms.
1759
Dmitry Kasatkinee089972013-05-06 15:40:01 +03001760config CRYPTO_HASH_INFO
1761 bool
1762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763source "drivers/crypto/Kconfig"
David Howells964f3b32012-09-13 15:17:21 +01001764source crypto/asymmetric_keys/Kconfig
David Howellscfc411e2015-08-14 15:20:41 +01001765source certs/Kconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Herbert Xucce9e062006-08-21 21:08:13 +10001767endif # if CRYPTO