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 \
51 lib/crypto/crypto_scrypt-ref.c \
61 lib/crypto/crypto_scrypt-neon.c \
65 lib/crypto/crypto_scrypt-ref.c \
69 lib/crypto/crypto_scrypt-neon.c \
73 lib/crypto/crypto_scrypt-ref.c \
83 lib/crypto/crypto_scrypt-sse.c \
87 lib/crypto/crypto_scrypt-ref.c \
91 lib/crypto/crypto_scrypt-sse.c \
95 lib/crypto/crypto_scrypt-ref.c \
[all …]
Dsources.bp43 "lib/crypto/crypto_scrypt-ref.c",
50 "lib/crypto/crypto_scrypt-neon.c",
53 "lib/crypto/crypto_scrypt-ref.c",
59 "lib/crypto/crypto_scrypt-neon.c",
62 "lib/crypto/crypto_scrypt-ref.c",
67 "lib/crypto/crypto_scrypt-sse.c",
70 "lib/crypto/crypto_scrypt-ref.c",
75 "lib/crypto/crypto_scrypt-sse.c",
78 "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
178 +#include "crypto_scrypt.h"
180 +#include "crypto_scrypt-neon-salsa208.h"
315 + * crypto_scrypt(passwd, passwdlen, salt, saltlen, N, r, p, buf, buflen):
324 +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.c192 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.cpp69 crypto_scrypt((const uint8_t*) s.pw, strlen(s.pw), (const uint8_t*) s.salt, in TEST_F()