aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorAdrian-Ken Rueegsegger <rueegsegger@swiss-it.ch>2008-05-07 10:17:37 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2008-07-10 08:35:10 -0400
commit82798f90fb13fd934a15ed56fee227fe808dcbe8 (patch)
tree02addff62cf32c6ccbfdfe9c6441c200f177056a /crypto
parentfd4adf1a0b1923f6126835e1097b2997eb0d27e2 (diff)
[CRYPTO] ripemd: Add Kconfig entries for RIPEMD hash algorithms
This patch adds Kconfig entries for RIPEMD-128 and RIPEMD-160. Signed-off-by: Adrian-Ken Rueegsegger <rueegsegger@swiss-it.ch> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/Kconfig26
1 files changed, 26 insertions, 0 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index 864456c140fe..cfc521a0d55d 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -241,6 +241,32 @@ config CRYPTO_MICHAEL_MIC
241 should not be used for other purposes because of the weakness 241 should not be used for other purposes because of the weakness
242 of the algorithm. 242 of the algorithm.
243 243
244config CRYPTO_RMD128
245 tristate "RIPEMD-128 digest algorithm"
246 select CRYPTO_ALGAPI
247 help
248 RIPEMD-128 (ISO/IEC 10118-3:2004).
249
250 RIPEMD-128 is a 128-bit cryptographic hash function. It should only
251 to be used as a secure replacement for RIPEMD. For other use cases
252 RIPEMD-160 should be used.
253
254 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
255 See <http://home.esat.kuleuven.be/~bosselae/ripemd160.html>
256
257config CRYPTO_RMD160
258 tristate "RIPEMD-160 digest algorithm"
259 select CRYPTO_ALGAPI
260 help
261 RIPEMD-160 (ISO/IEC 10118-3:2004).
262
263 RIPEMD-160 is a 160-bit cryptographic hash function. It is intended
264 to be used as a secure replacement for the 128-bit hash functions
265 MD4, MD5 and it's predecessor RIPEMD (not to be confused with RIPEMD-128).
266
267 Developed by Hans Dobbertin, Antoon Bosselaers and Bart Preneel.
268 See <http://home.esat.kuleuven.be/~bosselae/ripemd160.html>
269
244config CRYPTO_SHA1 270config CRYPTO_SHA1
245 tristate "SHA1 digest algorithm" 271 tristate "SHA1 digest algorithm"
246 select CRYPTO_ALGAPI 272 select CRYPTO_ALGAPI