-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Closed
Labels
good first issueIdeal for your first contribution! (some Symfony experience may be required)Ideal for your first contribution! (some Symfony experience may be required)help wantedIssues and PRs which are looking for volunteers to complete them.Issues and PRs which are looking for volunteers to complete them.
Description
Good first issue:
In https://symfony.com/doc/3.4/reference/configuration/security.html#encoders, the first config block contains:
# PBKDF2 encoder using SHA512 hashing with default options
AppBundle\Entity\User: 'sha512'
Actually such config does not wire a PBKDF2
encoder but a MessageDigestPasswordEncoder
which uses the hash()
function.
(you'd need AppBundle\Entity\User: pbkdf2
for a PBKDF2 encoder with sha512 hash algo).
Metadata
Metadata
Assignees
Labels
good first issueIdeal for your first contribution! (some Symfony experience may be required)Ideal for your first contribution! (some Symfony experience may be required)help wantedIssues and PRs which are looking for volunteers to complete them.Issues and PRs which are looking for volunteers to complete them.