What’s the advantage of scrypt over bcrypt? [closed]

With scrypt in addition to increasing computation you can increase the amount of memory needed to compute the hash. This doesn’t bother software implementations much but is much harder to implement with hardware – which is what a dedicated attacker is likely to develop and use.

bcrypt (and PBKDF2) use constant, and small, amounts of memory.

Leave a Comment