From b051573cc106714e124ede7bf164e9603abec6e7 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sat, 30 May 2020 16:19:09 +0100 Subject: [PATCH] Fix typo --- content/posts/how-to-store-passwords.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/how-to-store-passwords.md b/content/posts/how-to-store-passwords.md index d8a506b..cd294f3 100644 --- a/content/posts/how-to-store-passwords.md +++ b/content/posts/how-to-store-passwords.md @@ -97,7 +97,7 @@ def constant_time_compare(val1, val2): ## Concluding -Storing passwords is pretty simple, right? Whilst the above sounds fairly complicated, in reality it's simple. The advise for now is only valid for now, for right now. In a few months, years or even days from now, this could all be obsolete. The best thing you can do is to not store passwords yourself and let someone else, someone who's up-to-date with security practices, to define it for you. +Storing passwords is pretty simple, right? Whilst the above sounds fairly complicated, in reality it's simple. The advice for now is only valid for now, for right now. In a few months, years or even days from now, this could all be obsolete. The best thing you can do is to not store passwords yourself and let someone else, someone who's up-to-date with security practices, to define it for you. ```python def encode(self, password, salt, iterations):