summaryrefslogtreecommitdiffstats
path: root/include/crypto/salsa20.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* crypto: salsa20 - Revert "crypto: salsa20 - export generic helpers"Eric Biggers2018-05-301-27/+0
| | | | | | | | | | | | | This reverts commit eb772f37ae8163a89e28a435f6a18742ae06653b, as now the x86 Salsa20 implementation has been removed and the generic helpers are no longer needed outside of salsa20_generic.c. We could keep this just in case someone else wants to add a new optimized Salsa20 implementation. But given that we have ChaCha20 now too, I think it's unlikely. And this can always be reverted back. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
* crypto: salsa20 - export generic helpersEric Biggers2018-01-121-0/+27
Export the Salsa20 constants, transform context, and initialization functions so that they can be reused by the x86 implementation. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>