Merge pull request #303 from mathroc/fix-vertical-scrollbar

fix vertical scrollbar
This commit is contained in:
Phil Sturgeon
2013-10-01 09:28:49 -07:00

View File

@@ -14,8 +14,9 @@ In PHP 5.5 `password_hash` was introduced. At this time it is using BCrypt, the
Below we hash a string, and then check the hash against a new string. Because our two source strings are different ('secret-password' vs. 'bad-password') this login will fail. Below we hash a string, and then check the hash against a new string. Because our two source strings are different ('secret-password' vs. 'bad-password') this login will fail.
{% highlight php %} {% highlight php %}
<?php <?php
require 'password.php'; require 'password.php';
$passwordHash = password_hash('secret-password', PASSWORD_DEFAULT); $passwordHash = password_hash('secret-password', PASSWORD_DEFAULT);