summaryrefslogtreecommitdiff
path: root/scrypt.config
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2013-06-13 16:43:17 -0700
committerKenny Root <kroot@google.com>2013-06-14 09:16:52 -0700
commit187f492d9d783d53893c3dea07c0b14841ba61f8 (patch)
tree863c05962ae54cd84dc2bbdb4a13922438044d1b /scrypt.config
parent1584952c4d6d70f27808fda240c73d904c680c2e (diff)
downloadscrypt-187f492d9d783d53893c3dea07c0b14841ba61f8.tar.gz
Add NEON accelerated functions
Reference implementation: ScryptTest.TestVectors (2588 ms) NEON acceleration: ScryptTest.TestVectors (1169 ms) Change-Id: I23974b2f0f64435696e75acfbdee1115a699abae
Diffstat (limited to 'scrypt.config')
-rw-r--r--scrypt.config8
1 files changed, 8 insertions, 0 deletions
diff --git a/scrypt.config b/scrypt.config
index 3d3ec90..13fd4c9 100644
--- a/scrypt.config
+++ b/scrypt.config
@@ -44,9 +44,11 @@ lib/crypto/crypto_scrypt-ref.c \
"
SCRYPT_SOURCES_arm="\
+lib/crypto/crypto_scrypt-neon.c \
"
SCRYPT_SOURCES_EXCLUDES_arm="\
+lib/crypto/crypto_scrypt-ref.c \
"
SCRYPT_SOURCES_mips="\
@@ -73,8 +75,14 @@ lib/crypto/crypto_scrypt-ref.c \
SCRYPT_PATCHES="\
use_openssl_pbkdf2.patch \
+arm-neon.patch \
"
SCRYPT_PATCHES_use_openssl_pbkdf2_SOURCES="\
lib/crypto/crypto_scrypt-ref.c \
"
+
+SCRYPT_PATCHES_bionic_SOURCES="\
+lib/crypto/crypto_scrypt-neon.c \
+lib/crypto/crypto_scrypt-neon-salsa208.h \
+"