BCrypt.checkpw() Invalid salt version exception

前端 未结 7 1573
一生所求
一生所求 2021-02-05 05:45

I\'m trying to implement authentication using BCrypt, in my Play 2.1. Java application, but I\'m getting Invalid salt version exception when I\'m trying to authenti

7条回答
  •  难免孤独
    2021-02-05 06:04

    I encountered the same problem; Make sure your password is stored in the database in hashed format instead of plain text. Here is a Bcrypt generator to translate your plain text password into a Bcrypt hash.

提交回复
热议问题