Kconfig (b242a60206881559bb3102110048762422e6b74e) | Kconfig (f7d0561ea1dadec5462846520b1f4fb304294fd5) |
---|---|
1 2menuconfig CRYPTO_HW 3 bool "Hardware crypto devices" 4 default y 5 ---help--- 6 Say Y here to get to see options for hardware crypto devices and 7 processors. This option alone does not add any kernel code. 8 9 If you say N, all options in this submenu will be skipped and disabled. 10 11if CRYPTO_HW 12 13config CRYPTO_DEV_PADLOCK 14 tristate "Support for VIA PadLock ACE" | 1 2menuconfig CRYPTO_HW 3 bool "Hardware crypto devices" 4 default y 5 ---help--- 6 Say Y here to get to see options for hardware crypto devices and 7 processors. This option alone does not add any kernel code. 8 9 If you say N, all options in this submenu will be skipped and disabled. 10 11if CRYPTO_HW 12 13config CRYPTO_DEV_PADLOCK 14 tristate "Support for VIA PadLock ACE" |
15 depends on X86_32 && !UML | 15 depends on X86_32 |
16 select CRYPTO_ALGAPI 17 help 18 Some VIA processors come with an integrated crypto engine 19 (so called VIA PadLock ACE, Advanced Cryptography Engine) 20 that provides instructions for very fast cryptographic 21 operations with supported algorithms. 22 23 The instructions are used only when the CPU supports them. --- 54 unchanged lines hidden (view full) --- 78config ZCRYPT_MONOLITHIC 79 bool "Monolithic zcrypt module" 80 depends on ZCRYPT="m" 81 help 82 Select this option if you want to have a single module z90crypt.ko 83 that contains all parts of the crypto device driver (ap bus, 84 request router and all the card drivers). 85 | 16 select CRYPTO_ALGAPI 17 help 18 Some VIA processors come with an integrated crypto engine 19 (so called VIA PadLock ACE, Advanced Cryptography Engine) 20 that provides instructions for very fast cryptographic 21 operations with supported algorithms. 22 23 The instructions are used only when the CPU supports them. --- 54 unchanged lines hidden (view full) --- 78config ZCRYPT_MONOLITHIC 79 bool "Monolithic zcrypt module" 80 depends on ZCRYPT="m" 81 help 82 Select this option if you want to have a single module z90crypt.ko 83 that contains all parts of the crypto device driver (ap bus, 84 request router and all the card drivers). 85 |
86config CRYPTO_DEV_HIFN_795X 87 tristate "Driver HIFN 795x crypto accelerator chips" 88 select CRYPTO_ALGAPI 89 select CRYPTO_ABLKCIPHER 90 select CRYPTO_BLKCIPHER 91 help 92 This option allows you to have support for HIFN 795x crypto adapters. 93 94 95 |
|
86endif # CRYPTO_HW | 96endif # CRYPTO_HW |