From 59d2ab2ce7ffc5fdad3164ff46cc209fde0026f4 Mon Sep 17 00:00:00 2001 From: Mathieu Rochette Date: Sat, 21 Sep 2013 19:53:41 +0200 Subject: [PATCH] fix vertical scrollbar --- _posts/08-03-01-Password-Hashing.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 %} -