Increased the default SCrypt rounds

This commit is contained in:
nathan 2018-01-25 16:09:31 +01:00
parent 1aede57c3c
commit ff502785fd
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class CryptoSCrypt {
*/
public static
String encrypt(char[] password, byte[] salt) {
return encrypt(password, salt, 16384, 32, 1, 64);
return encrypt(password, salt, 16384, 128, 1, 64);
}
/**