File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ encoding algorithm. Also, each algorithm defines different config options:
152152 # Argon2i encoder with default options
153153 AppBundle\Entity\User : ' argon2i'
154154
155- # PBKDF2 encoder using SHA512 hashing with default options
155+ # MessageDigestPasswordEncoder encoder using SHA512 hashing with default options
156156 AppBundle\Entity\User : ' sha512'
157157
158158 .. code-block :: xml
@@ -186,7 +186,7 @@ encoding algorithm. Also, each algorithm defines different config options:
186186 algorithm =" argon2i"
187187 />
188188
189- <!-- PBKDF2 encoder using SHA512 hashing with default options -->
189+ <!-- MessageDigestPasswordEncoder encoder using SHA512 hashing with default options -->
190190 <encoder
191191 class =" AppBundle\Entity\User"
192192 algorithm =" sha512"
@@ -218,7 +218,7 @@ encoding algorithm. Also, each algorithm defines different config options:
218218 'algorithm' => 'argon2i',
219219 ],
220220
221- // PBKDF2 encoder using SHA512 hashing with default options
221+ // MessageDigestPasswordEncoder encoder using SHA512 hashing with default options
222222 User::class => [
223223 'algorithm' => 'sha512',
224224 ],
You can’t perform that action at this time.
0 commit comments