From 6964bff38fbf5fc520912ab4bc42ca8eae52c4c3 Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Fri, 17 Apr 2015 06:07:22 -0400 Subject: [PATCH] Fixing a bad bcrypt string using http://www.bcrypt-generator.com/ --- cookbook/security/entity_provider.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cookbook/security/entity_provider.rst b/cookbook/security/entity_provider.rst index a46fab48d02..90c55eaf5dc 100644 --- a/cookbook/security/entity_provider.rst +++ b/cookbook/security/entity_provider.rst @@ -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 | admin@example.com | 1 | - +----+----------+------------------------------------------+--------------------+-----------+ + +----+----------+--------------------------------------------------------------+--------------------+-----------+ + | id | username | password | email | is_active | + +----+----------+--------------------------------------------------------------+--------------------+-----------+ + | 1 | admin | $2a$08$jHZj/wJfcVKlIwr5AvR78euJxYK7Ku5kURNhNx.7.CSIJ3Pq6LEPC | admin@example.com | 1 | + +----+----------+--------------------------------------------------------------+--------------------+-----------+ .. sidebar:: Do you need to a Salt property?