Searched refs:EVP_PBE_scrypt (Results 1 - 5 of 5) sorted by relevance

/external/boringssl/src/crypto/evp/
H A Dscrypt_test.cc55 ASSERT_TRUE(EVP_PBE_scrypt(reinterpret_cast<const char *>(password.data()),
68 EXPECT_FALSE(EVP_PBE_scrypt(kPassword, strlen(kPassword),
81 EXPECT_FALSE(EVP_PBE_scrypt(nullptr, 0, nullptr, 0, 1024 /* N */, 0 /* r */,
83 EXPECT_FALSE(EVP_PBE_scrypt(nullptr, 0, nullptr, 0, 1024 /* N */, 8 /* r */,
87 EXPECT_FALSE(EVP_PBE_scrypt(nullptr, 0, nullptr, 0, 0 /* N */, 8 /* r */,
89 EXPECT_FALSE(EVP_PBE_scrypt(nullptr, 0, nullptr, 0, 1 /* N */, 8 /* r */,
91 EXPECT_FALSE(EVP_PBE_scrypt(nullptr, 0, nullptr, 0, 1023 /* N */, 8 /* r */,
93 EXPECT_TRUE(EVP_PBE_scrypt(nullptr, 0, nullptr, 0, 1024 /* N */, 8 /* r */,
95 EXPECT_FALSE(EVP_PBE_scrypt(nullptr, 0, nullptr, 0, 1025 /* N */, 8 /* r */,
99 EXPECT_FALSE(EVP_PBE_scrypt(nullpt
[all...]
H A Dscrypt.c143 * |EVP_PBE_scrypt|. */
146 int EVP_PBE_scrypt(const char *password, size_t password_len, function
/external/boringssl/src/tool/
H A Dspeed.cc592 return !!EVP_PBE_scrypt(kPassword, sizeof(kPassword) - 1, kSalt,
603 return !!EVP_PBE_scrypt(kPassword, sizeof(kPassword) - 1, kSalt,
/external/boringssl/include/openssl/
H A Devp.h436 /* EVP_PBE_scrypt expands |password| into a secret key of length |key_len| using
444 OPENSSL_EXPORT int EVP_PBE_scrypt(const char *password, size_t password_len,
/external/boringssl/src/include/openssl/
H A Devp.h436 /* EVP_PBE_scrypt expands |password| into a secret key of length |key_len| using
444 OPENSSL_EXPORT int EVP_PBE_scrypt(const char *password, size_t password_len,

Completed in 4515 milliseconds