Searched refs:crypto_scrypt (Results 1 – 9 of 9) sorted by relevance
/external/scrypt/ |
D | scrypt.config | 20 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 …]
|
D | sources.bp | 43 "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/ |
D | use_openssl_pbkdf2.patch | 1 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 …]
|
D | arm_neon.patch | 1 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/ |
D | crypto_scrypt.h | 43 int crypto_scrypt(const uint8_t *, size_t, const uint8_t *, size_t, uint64_t,
|
D | crypto_scrypt-neon.c | 192 crypto_scrypt(const uint8_t * passwd, size_t passwdlen, in crypto_scrypt() function
|
D | crypto_scrypt-ref.c | 220 crypto_scrypt(const uint8_t * passwd, size_t passwdlen, in crypto_scrypt() function
|
D | crypto_scrypt-sse.c | 266 crypto_scrypt(const uint8_t * passwd, size_t passwdlen, in crypto_scrypt() function
|
/external/scrypt/tests/ |
D | scrypt_test.cpp | 69 crypto_scrypt((const uint8_t*) s.pw, strlen(s.pw), (const uint8_t*) s.salt, in TEST_F()
|