aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/Kconfig
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2008-07-08 08:54:28 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2008-07-10 08:35:18 -0400
commit5773a3e6e396d5fd9de58372abe6a86b7e258e3e (patch)
tree8c8576fdc279e95d16ed4dfd332b6380285027bf /crypto/Kconfig
parent20036252fc61c624a49770fb89684ea5cfdfa05e (diff)
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 43b7473ff19b..ea503572fcbe 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -213,7 +213,7 @@ comment "Digest"
213 213
214config CRYPTO_CRC32C 214config CRYPTO_CRC32C
215 tristate "CRC32c CRC algorithm" 215 tristate "CRC32c CRC algorithm"
216 select CRYPTO_ALGAPI 216 select CRYPTO_HASH
217 select LIBCRC32C 217 select LIBCRC32C
218 help 218 help
219 Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used 219 Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used