Skip to content

Commit

Permalink
bug #5187 Fixing a bad bcrypt string using http://www.bcrypt-generato…
Browse files Browse the repository at this point in the history
…r.com/ (weaverryan)

This PR was merged into the 2.3 branch.

Discussion
----------

Fixing a bad bcrypt string using http://www.bcrypt-generator.com/

Hi guys!

| Q             | A
| ------------- | ---
| Doc fix?      | no
| New docs?     | no
| Applies to    | 2.3+
| Fixed tickets | n/a

This was pointed out to me on Twitter - it seems like we may have just left the old sha256 hash on there - this definitely isn't bcrypt.

Thanks!

Commits
-------

6964bff Fixing a bad bcrypt string using http://www.bcrypt-generator.com/
  • Loading branch information
weaverryan committed Apr 17, 2015
2 parents 16e0849 + 6964bff commit 318bb8a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cookbook/security/entity_provider.rst
Original file line number Diff line number Diff line change
Expand Up @@ -297,11 +297,11 @@ and password ``admin`` (which has been encoded).
.. code-block:: bash
$ mysql> SELECT * FROM app_users;
+----+----------+------------------------------------------+--------------------+-----------+
| id | username | password | email | is_active |
+----+----------+------------------------------------------+--------------------+-----------+
| 1 | admin | d033e22ae348aeb5660fc2140aec35850c4da997 | [email protected] | 1 |
+----+----------+------------------------------------------+--------------------+-----------+
+----+----------+--------------------------------------------------------------+--------------------+-----------+
| id | username | password | email | is_active |
+----+----------+--------------------------------------------------------------+--------------------+-----------+
| 1 | admin | $2a$08$jHZj/wJfcVKlIwr5AvR78euJxYK7Ku5kURNhNx.7.CSIJ3Pq6LEPC | [email protected] | 1 |
+----+----------+--------------------------------------------------------------+--------------------+-----------+
.. sidebar:: Do you need to a Salt property?

Expand Down

0 comments on commit 318bb8a

Please sign in to comment.