diff --git a/_posts/08-03-01-Password-Hashing.md b/_posts/08-03-01-Password-Hashing.md index 0bc6bc5..cf9f544 100644 --- a/_posts/08-03-01-Password-Hashing.md +++ b/_posts/08-03-01-Password-Hashing.md @@ -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. -{% highlight php %} -