diff options
author | Kevin Coffman <kwc@citi.umich.edu> | 2008-03-24 09:26:16 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-04-20 22:19:23 -0400 |
commit | 76cb9521795a167ae3d206343c072f602d84f815 (patch) | |
tree | 36aa2e201867c76ac244de69e1bb16befa0504ee /crypto/Kconfig | |
parent | fd4609a8e00a867303783ade62d67953fb72adc8 (diff) |
[CRYPTO] cts: Add CTS mode required for Kerberos AES support
Implement CTS wrapper for CBC mode required for support of AES
encryption support for Kerberos (rfc3962).
Signed-off-by: Kevin Coffman <kwc@citi.umich.edu>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Kconfig')
-rw-r--r-- | crypto/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index 69f1be6816f7..e14ff1275018 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig | |||
@@ -213,6 +213,17 @@ config CRYPTO_CTR | |||
213 | CTR: Counter mode | 213 | CTR: Counter mode |
214 | This block cipher algorithm is required for IPSec. | 214 | This block cipher algorithm is required for IPSec. |
215 | 215 | ||
216 | config CRYPTO_CTS | ||
217 | tristate "CTS support" | ||
218 | select CRYPTO_BLKCIPHER | ||
219 | help | ||
220 | CTS: Cipher Text Stealing | ||
221 | This is the Cipher Text Stealing mode as described by | ||
222 | Section 8 of rfc2040 and referenced by rfc3962. | ||
223 | (rfc3962 includes errata information in its Appendix A) | ||
224 | This mode is required for Kerberos gss mechanism support | ||
225 | for AES encryption. | ||
226 | |||
216 | config CRYPTO_GCM | 227 | config CRYPTO_GCM |
217 | tristate "GCM/GMAC support" | 228 | tristate "GCM/GMAC support" |
218 | select CRYPTO_CTR | 229 | select CRYPTO_CTR |