Merge pull request #44 from DmitryRendov/team

Fixed PBKDF2DJANGO hash map
This commit is contained in:
Gabriele C. 2015-09-13 12:12:51 +02:00
commit b2234b1e0d

View File

@ -85,6 +85,7 @@ public class PasswordSecurity {
salt = BCRYPT.gensalt(8);
userSalt.put(playerName, salt);
break;
case PBKDF2DJANGO:
case PBKDF2:
salt = createSalt(12);
userSalt.put(playerName, salt);