commit | 2407d60872dd2a95404c6048f775f3b64d438f4b | [log] [tgz] |
---|---|---|
author | Tan Swee Heng <thesweeheng@gmail.com> | Fri Nov 23 19:45:00 2007 +0800 |
committer | Herbert Xu <herbert@gondor.apana.org.au> | Fri Jan 11 08:16:15 2008 +1100 |
tree | 6a333c5eaae616736b2f184cee8e9f052cee966d | |
parent | 332f8840f7095d294f9bb066b175a100bcde214c [diff] [blame] |
[CRYPTO] salsa20: Salsa20 stream cipher This patch implements the Salsa20 stream cipher using the blkcipher interface. The core cipher code comes from Daniel Bernstein's submission to eSTREAM: http://www.ecrypt.eu.org/stream/svn/viewcvs.cgi/ecrypt/trunk/submissions/salsa20/full/ref/ The test vectors comes from: http://www.ecrypt.eu.org/stream/svn/viewcvs.cgi/ecrypt/trunk/submissions/salsa20/full/ It has been tested successfully with "modprobe tcrypt mode=34" on an UML instance. Signed-off-by: Tan Swee Heng <thesweeheng@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
diff --git a/crypto/Makefile b/crypto/Makefile index 1f87db2..9b1476e 100644 --- a/crypto/Makefile +++ b/crypto/Makefile
@@ -49,6 +49,7 @@ obj-$(CONFIG_CRYPTO_KHAZAD) += khazad.o obj-$(CONFIG_CRYPTO_ANUBIS) += anubis.o obj-$(CONFIG_CRYPTO_SEED) += seed.o +obj-$(CONFIG_CRYPTO_SALSA20) += salsa20_generic.o obj-$(CONFIG_CRYPTO_DEFLATE) += deflate.o obj-$(CONFIG_CRYPTO_MICHAEL_MIC) += michael_mic.o obj-$(CONFIG_CRYPTO_CRC32C) += crc32c.o