Home
last modified time | relevance | path

Searched refs:crypto_scrypt (Results 1 – 9 of 9) sorted by relevance

/external/scrypt/
Dscrypt.config20 lib/crypto/crypto_scrypt-nosse.c \
43 lib/crypto/crypto_scrypt-ref.c \
53 lib/crypto/crypto_scrypt-neon.c \
57 lib/crypto/crypto_scrypt-ref.c \
67 lib/crypto/crypto_scrypt-sse.c \
71 lib/crypto/crypto_scrypt-ref.c \
75 lib/crypto/crypto_scrypt-sse.c \
79 lib/crypto/crypto_scrypt-ref.c \
88 lib/crypto/crypto_scrypt-ref.c \
92 lib/crypto/crypto_scrypt-neon.c \
[all …]
DScrypt-config.mk32 lib/crypto/crypto_scrypt-ref.c \
47 lib/crypto/crypto_scrypt-neon.c \
50 lib/crypto/crypto_scrypt-ref.c \
55 lib/crypto/crypto_scrypt-sse.c \
58 lib/crypto/crypto_scrypt-ref.c \
63 lib/crypto/crypto_scrypt-sse.c \
66 lib/crypto/crypto_scrypt-ref.c \
/external/scrypt/patches/
Duse_openssl_pbkdf2.patch1 diff --git a/lib/crypto/crypto_scrypt-ref.c b/lib/crypto/crypto_scrypt-ref.c
3 --- a/lib/crypto/crypto_scrypt-ref.c
4 +++ b/lib/crypto/crypto_scrypt-ref.c
16 #include "crypto_scrypt.h"
17 @@ -256,7 +260,11 @@ crypto_scrypt(const uint8_t * passwd, size_t passwdlen,
29 @@ -265,7 +273,11 @@ crypto_scrypt(const uint8_t * passwd, size_t passwdlen,
41 diff --git a/lib/crypto/crypto_scrypt-sse.c b/lib/crypto/crypto_scrypt-sse.c
43 --- a/lib/crypto/crypto_scrypt-sse.c
44 +++ b/lib/crypto/crypto_scrypt-sse.c
56 #include "crypto_scrypt.h"
[all …]
Darm-neon.patch1 diff --git a/lib/crypto/crypto_scrypt-neon-salsa208.h b/lib/crypto/crypto_scrypt-neon-salsa208.h
5 +++ b/lib/crypto/crypto_scrypt-neon-salsa208.h
127 diff --git a/lib/crypto/crypto_scrypt-neon.c b/lib/crypto/crypto_scrypt-neon.c
131 +++ b/lib/crypto/crypto_scrypt-neon.c
179 +#include "crypto_scrypt.h"
181 +#include "crypto_scrypt-neon-salsa208.h"
316 + * crypto_scrypt(passwd, passwdlen, salt, saltlen, N, r, p, buf, buflen):
325 +crypto_scrypt(const uint8_t * passwd, size_t passwdlen,
/external/scrypt/lib/crypto/
Dcrypto_scrypt.h43 int crypto_scrypt(const uint8_t *, size_t, const uint8_t *, size_t, uint64_t,
Dcrypto_scrypt-neon.c193 crypto_scrypt(const uint8_t * passwd, size_t passwdlen, in crypto_scrypt() function
Dcrypto_scrypt-ref.c220 crypto_scrypt(const uint8_t * passwd, size_t passwdlen, in crypto_scrypt() function
Dcrypto_scrypt-sse.c266 crypto_scrypt(const uint8_t * passwd, size_t passwdlen, in crypto_scrypt() function
/external/scrypt/tests/
Dscrypt_test.cpp70 crypto_scrypt((const uint8_t*) s.pw, strlen(s.pw), (const uint8_t*) s.salt, in TEST_F()