Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
**Why**: A 2017 paper on the SCrypt site offers the following guidelines for SCrypt parameters for an interactive login: N = 2^14; r = 8; p = 4 Note that the parameter p offers the same time-memory tradeoff for both the legitimate user and the attacker, while the parameter N offers more advantage for the user. For that reason, this commit sets the default scrypt cost to: N = 2^16; r = 8; p = 1 ref: https://blog.filippo.io/the-scrypt-parameters/
- Loading branch information