From f062ff73b9d2aaaee3648cb0aa9d9c8041162c77 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Tue, 30 Jun 2020 10:08:34 +0100 Subject: [PATCH] Remove duplicate heading --- content/posts/how-to-store-passwords.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/content/posts/how-to-store-passwords.md b/content/posts/how-to-store-passwords.md index 635371d..8aa4716 100644 --- a/content/posts/how-to-store-passwords.md +++ b/content/posts/how-to-store-passwords.md @@ -4,8 +4,6 @@ date: 2020-05-28 subtitle: How to store passwords **properly**! --- -# How to store passwords - Storing passwords is a pretty simple problem in software development, right? Wrong! Storing passwords _correctly_ is pretty complicated. With that said, it's very simple to just lean on work someone else has done, and the libraries available for your language of choice. In reality, you should never do it yourself. If whatever library or framework you're using can store passwords for you, use it. However, occasionally you'll need to write your own, whether for some specific requirements, or just a keen interest.