git-svn-id: svn://db.shs.com.ru/pip@612 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2018-05-07 14:39:00 +00:00
parent 0d1a584f56
commit 906da66480

View File

@@ -359,6 +359,7 @@ PIByteArray PICrypt::decrypt(const PIByteArray & crypt_data, const PIByteArray &
PIByteArray PICrypt::passwordHash(const PIString & password, const PIByteArray & seed) {
#ifdef crypto_pwhash_ALG_ARGON2I13
// char out[crypto_pwhash_STRBYTES];
PIByteArray pass = password.toUTF8();
PIByteArray n;
@@ -374,6 +375,9 @@ PIByteArray PICrypt::passwordHash(const PIString & password, const PIByteArray &
PIByteArray ret;
ret << ph << n << crypto_pwhash_argon2i_opslimit_moderate() << crypto_pwhash_argon2i_memlimit_moderate();
return ret;
#else
return PIByteArray();
#endif
}