diff options
author | Tan Swee Heng <thesweeheng@gmail.com> | 2007-12-17 11:04:40 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-01-10 16:16:57 -0500 |
commit | 9a7dafbba47384c330779c75a1546684efaa8c1a (patch) | |
tree | 0fde4a938ebc3c9deb0873b709dc5d2d69ab25c3 /arch/x86/crypto/salsa20_glue.c | |
parent | 974e4b752ee623854c5dc2bbfc7c7725029ce173 (diff) |
[CRYPTO] salsa20: Add x86-64 assembly version
This is the x86-64 version of the Salsa20 stream cipher algorithm. The
original assembly code came from
<http://cr.yp.to/snuffle/salsa20/amd64-3/salsa20.s>. It has been
reformatted for clarity.
Signed-off-by: Tan Swee Heng <thesweeheng@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/x86/crypto/salsa20_glue.c')
-rw-r--r-- | arch/x86/crypto/salsa20_glue.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/crypto/salsa20_glue.c b/arch/x86/crypto/salsa20_glue.c index 3be443995ed6..bccb76d80987 100644 --- a/arch/x86/crypto/salsa20_glue.c +++ b/arch/x86/crypto/salsa20_glue.c | |||
@@ -8,6 +8,8 @@ | |||
8 | * and to remove extraneous comments and functions that are not needed. | 8 | * and to remove extraneous comments and functions that are not needed. |
9 | * - i586 version, renamed as salsa20-i586-asm_32.S | 9 | * - i586 version, renamed as salsa20-i586-asm_32.S |
10 | * available from <http://cr.yp.to/snuffle/salsa20/x86-pm/salsa20.s> | 10 | * available from <http://cr.yp.to/snuffle/salsa20/x86-pm/salsa20.s> |
11 | * - x86-64 version, renamed as salsa20-x86_64-asm_64.S | ||
12 | * available from <http://cr.yp.to/snuffle/salsa20/amd64-3/salsa20.s> | ||
11 | * | 13 | * |
12 | * This program is free software; you can redistribute it and/or modify it | 14 | * This program is free software; you can redistribute it and/or modify it |
13 | * under the terms of the GNU General Public License as published by the Free | 15 | * under the terms of the GNU General Public License as published by the Free |