We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca3ef4b commit 41f6bc0Copy full SHA for 41f6bc0
book/security.rst
@@ -1358,6 +1358,10 @@ the password is simply run through the ``sha1`` algorithm one time and without
1358
any extra encoding. You can now calculate the hashed password either programmatically
1359
(e.g. ``hash('sha1', 'ryanpass')``) or via some online tool like `functions-online.com`_
1360
1361
+.. tip::
1362
+
1363
+ Supported algorithms for this method depend on your PHP version. Full list is available calling the PHP method ``hash_algos()``.
1364
1365
If you're creating your users dynamically (and storing them in a database),
1366
you can use even tougher hashing algorithms and then rely on an actual password
1367
encoder object to help you encode passwords. For example, suppose your User
0 commit comments