summaryrefslogtreecommitdiff
path: root/crypto/Kconfig
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2008-07-08 20:54:28 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2008-07-10 20:35:18 +0800
commit636cbb5c38a3c4a7afcad19aae8221e59f8f5783 (patch)
tree34d87b1261f1415de2658c179c538303b1cc9bbc /crypto/Kconfig
parentc41403f4f90c773e27d1f7c79324ce9531993c3f (diff)
downloadlinux-crypto-636cbb5c38a3c4a7afcad19aae8221e59f8f5783.tar.gz
linux-crypto-636cbb5c38a3c4a7afcad19aae8221e59f8f5783.zip
crypto: crc32c - Add ahash implementation
This patch reimplements crc32c using the ahash interface. This allows one tfm to be used by an unlimited number of users provided that they all use the same key (which all current crc32c users do). Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Kconfig')
-rw-r--r--crypto/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index 43b7473f..ea503572 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -213,7 +213,7 @@ comment "Digest"
config CRYPTO_CRC32C
tristate "CRC32c CRC algorithm"
- select CRYPTO_ALGAPI
+ select CRYPTO_HASH
select LIBCRC32C
help
Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used