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:
152
152
# Argon2i encoder with default options
153
153
AppBundle\Entity\User : ' argon2i'
154
154
155
- # PBKDF2 encoder using SHA512 hashing with default options
155
+ # MessageDigestPasswordEncoder encoder using SHA512 hashing with default options
156
156
AppBundle\Entity\User : ' sha512'
157
157
158
158
.. code-block :: xml
@@ -186,7 +186,7 @@ encoding algorithm. Also, each algorithm defines different config options:
186
186
algorithm =" argon2i"
187
187
/>
188
188
189
- <!-- PBKDF2 encoder using SHA512 hashing with default options -->
189
+ <!-- MessageDigestPasswordEncoder encoder using SHA512 hashing with default options -->
190
190
<encoder
191
191
class =" AppBundle\Entity\User"
192
192
algorithm =" sha512"
@@ -218,7 +218,7 @@ encoding algorithm. Also, each algorithm defines different config options:
218
218
'algorithm' => 'argon2i',
219
219
],
220
220
221
- // PBKDF2 encoder using SHA512 hashing with default options
221
+ // MessageDigestPasswordEncoder encoder using SHA512 hashing with default options
222
222
User::class => [
223
223
'algorithm' => 'sha512',
224
224
],
You can’t perform that action at this time.
0 commit comments