10
leksyib
6y

bcrypt.hash(md5(password));

Comments
  • 7
    You end up with lower entropy than without the md5.
    Just use PBKDF2 standard. You don't have to include a library for that, just as long as you do what it says.
  • 1
    you can configure some options to use more cpu(more computations == more security == longer computation)
  • 1
Add Comment