diff options
author | Joy Latten <latten@austin.ibm.com> | 2007-12-12 07:25:13 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-01-10 16:16:53 -0500 |
commit | 4a49b499dfa0c9e42be6d6fdd771f3434c776278 (patch) | |
tree | f9fe2be3cf378271dca62ba6e91f63a83604a051 /crypto/Kconfig | |
parent | d29ce988aeb459203c74f14747f4f77e1829ef78 (diff) |
[CRYPTO] ccm: Added CCM mode
This patch adds Counter with CBC-MAC (CCM) support.
RFC 3610 and NIST Special Publication 800-38C were referenced.
Signed-off-by: Joy Latten <latten@austin.ibm.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Kconfig')
-rw-r--r-- | crypto/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index 7ad9711eec98..0d89f77428e5 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig | |||
@@ -220,6 +220,13 @@ config CRYPTO_GCM | |||
220 | Support for Galois/Counter Mode (GCM) and Galois Message | 220 | Support for Galois/Counter Mode (GCM) and Galois Message |
221 | Authentication Code (GMAC). Required for IPSec. | 221 | Authentication Code (GMAC). Required for IPSec. |
222 | 222 | ||
223 | config CRYPTO_CCM | ||
224 | tristate "CCM support" | ||
225 | select CRYPTO_CTR | ||
226 | select CRYPTO_AEAD | ||
227 | help | ||
228 | Support for Counter with CBC MAC. Required for IPsec. | ||
229 | |||
223 | config CRYPTO_CRYPTD | 230 | config CRYPTO_CRYPTD |
224 | tristate "Software async crypto daemon" | 231 | tristate "Software async crypto daemon" |
225 | select CRYPTO_BLKCIPHER | 232 | select CRYPTO_BLKCIPHER |