FOSUserBundle как включить соли? Зачем нужен confirmation token?
Приветствую. Скачал и установил FOSUserBundle.
Заметил, что в БД salt = NULL, как включить? В документации не сказано.
Подумал, что делаю что-то не правильно. Посмотрел урок на YouTube на английском, проделал тоже самое, но соли все-равно пустые. У него включены. Может быть разные версии FOS?
И зачем нужен confirmation_token? Он тоже пустой, кстати.
- 2a identifies the bcrypt algorithm version that was used.
- 10 is the cost factor; 210 iterations of the key derivation function are used (which is not enough, by the way. I'd recommend a cost of 12 or more.)
- vI8aWBnW3fID.ZQ4/zo1G.q1lRps.9cGLcZEiGDMVr5yUP1KUOYTa is the salt and the cipher text, concatenated and encoded in a modified Base-64. The first 22 characters decode to a 16-byte value for the salt. The remaining characters are cipher text to be compared for authentication.