diff options
Diffstat (limited to 'crypto/Kconfig')
-rw-r--r-- | crypto/Kconfig | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index 26b5dd0cb564..403857ad06d4 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig | |||
@@ -114,6 +114,16 @@ config CRYPTO_NULL | |||
114 | help | 114 | help |
115 | These are 'Null' algorithms, used by IPsec, which do nothing. | 115 | These are 'Null' algorithms, used by IPsec, which do nothing. |
116 | 116 | ||
117 | config CRYPTO_PCRYPT | ||
118 | tristate "Parallel crypto engine (EXPERIMENTAL)" | ||
119 | depends on SMP && EXPERIMENTAL | ||
120 | select PADATA | ||
121 | select CRYPTO_MANAGER | ||
122 | select CRYPTO_AEAD | ||
123 | help | ||
124 | This converts an arbitrary crypto algorithm into a parallel | ||
125 | algorithm that executes in kernel threads. | ||
126 | |||
117 | config CRYPTO_WORKQUEUE | 127 | config CRYPTO_WORKQUEUE |
118 | tristate | 128 | tristate |
119 | 129 | ||
@@ -440,6 +450,15 @@ config CRYPTO_WP512 | |||
440 | See also: | 450 | See also: |
441 | <http://planeta.terra.com.br/informatica/paulobarreto/WhirlpoolPage.html> | 451 | <http://planeta.terra.com.br/informatica/paulobarreto/WhirlpoolPage.html> |
442 | 452 | ||
453 | config CRYPTO_GHASH_CLMUL_NI_INTEL | ||
454 | tristate "GHASH digest algorithm (CLMUL-NI accelerated)" | ||
455 | depends on (X86 || UML_X86) && 64BIT | ||
456 | select CRYPTO_SHASH | ||
457 | select CRYPTO_CRYPTD | ||
458 | help | ||
459 | GHASH is message digest algorithm for GCM (Galois/Counter Mode). | ||
460 | The implementation is accelerated by CLMUL-NI of Intel. | ||
461 | |||
443 | comment "Ciphers" | 462 | comment "Ciphers" |
444 | 463 | ||
445 | config CRYPTO_AES | 464 | config CRYPTO_AES |
@@ -807,8 +826,8 @@ config CRYPTO_ANSI_CPRNG | |||
807 | help | 826 | help |
808 | This option enables the generic pseudo random number generator | 827 | This option enables the generic pseudo random number generator |
809 | for cryptographic modules. Uses the Algorithm specified in | 828 | for cryptographic modules. Uses the Algorithm specified in |
810 | ANSI X9.31 A.2.4. Not this option must be enabled if CRYPTO_FIPS | 829 | ANSI X9.31 A.2.4. Note that this option must be enabled if |
811 | is selected | 830 | CRYPTO_FIPS is selected |
812 | 831 | ||
813 | source "drivers/crypto/Kconfig" | 832 | source "drivers/crypto/Kconfig" |
814 | 833 | ||