diff options
Diffstat (limited to 'crypto/Kconfig')
-rw-r--r-- | crypto/Kconfig | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index 68790ad7308d..90d467c99c2c 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig | |||
@@ -123,6 +123,23 @@ config CRYPTO_TGR192 | |||
123 | See also: | 123 | See also: |
124 | <http://www.cs.technion.ac.il/~biham/Reports/Tiger/>. | 124 | <http://www.cs.technion.ac.il/~biham/Reports/Tiger/>. |
125 | 125 | ||
126 | config CRYPTO_ECB | ||
127 | tristate "ECB support" | ||
128 | select CRYPTO_BLKCIPHER | ||
129 | default m | ||
130 | help | ||
131 | ECB: Electronic CodeBook mode | ||
132 | This is the simplest block cipher algorithm. It simply encrypts | ||
133 | the input block by block. | ||
134 | |||
135 | config CRYPTO_CBC | ||
136 | tristate "CBC support" | ||
137 | select CRYPTO_BLKCIPHER | ||
138 | default m | ||
139 | help | ||
140 | CBC: Cipher Block Chaining mode | ||
141 | This block cipher algorithm is required for IPSec. | ||
142 | |||
126 | config CRYPTO_DES | 143 | config CRYPTO_DES |
127 | tristate "DES and Triple DES EDE cipher algorithms" | 144 | tristate "DES and Triple DES EDE cipher algorithms" |
128 | select CRYPTO_ALGAPI | 145 | select CRYPTO_ALGAPI |