Hi Herbert and Sebastian, thanks for testing the x86-64
implementation. Much appreciated. :-)
I will remember to use "git-format-patch -M" next time. I didn't know
about the -M switch before this.
Sebastian is right about the "select CRYPTO_SALSA20". It seems
unnecessary in both i586 and x86-64 versions. Attached is a patch that
removes them.
Swee Heng
Subject: [PATCH] Removed dependency on CRYPTO_SALSA20
Signed-off-by: Tan Swee Heng <[EMAIL PROTECTED]>
---
crypto/Kconfig | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/crypto/Kconfig b/crypto/Kconfig
index 93ad53a..c3166a1 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -494,7 +494,6 @@ config CRYPTO_SALSA20_586
depends on (X86 || UML_X86) && !64BIT
depends on EXPERIMENTAL
select CRYPTO_BLKCIPHER
- select CRYPTO_SALSA20
help
Salsa20 stream cipher algorithm.
@@ -509,7 +508,6 @@ config CRYPTO_SALSA20_X86_64
depends on (X86 || UML_X86) && 64BIT
depends on EXPERIMENTAL
select CRYPTO_BLKCIPHER
- select CRYPTO_SALSA20
help
Salsa20 stream cipher algorithm.
--
1.5.3.6