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/Makefile | |
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/Makefile')
-rw-r--r-- | crypto/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/Makefile b/crypto/Makefile index cf702a270c59..6d34bf7ecf8d 100644 --- a/crypto/Makefile +++ b/crypto/Makefile | |||
@@ -35,6 +35,7 @@ obj-$(CONFIG_CRYPTO_GF128MUL) += gf128mul.o | |||
35 | obj-$(CONFIG_CRYPTO_ECB) += ecb.o | 35 | obj-$(CONFIG_CRYPTO_ECB) += ecb.o |
36 | obj-$(CONFIG_CRYPTO_CBC) += cbc.o | 36 | obj-$(CONFIG_CRYPTO_CBC) += cbc.o |
37 | obj-$(CONFIG_CRYPTO_PCBC) += pcbc.o | 37 | obj-$(CONFIG_CRYPTO_PCBC) += pcbc.o |
38 | obj-$(CONFIG_CRYPTO_CTS) += cts.o | ||
38 | obj-$(CONFIG_CRYPTO_LRW) += lrw.o | 39 | obj-$(CONFIG_CRYPTO_LRW) += lrw.o |
39 | obj-$(CONFIG_CRYPTO_XTS) += xts.o | 40 | obj-$(CONFIG_CRYPTO_XTS) += xts.o |
40 | obj-$(CONFIG_CRYPTO_CTR) += ctr.o | 41 | obj-$(CONFIG_CRYPTO_CTR) += ctr.o |