aboutsummaryrefslogtreecommitdiff
path: root/content/posts/2019-04-04-password-strength-tester.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/posts/2019-04-04-password-strength-tester.md')
-rw-r--r--content/posts/2019-04-04-password-strength-tester.md36
1 files changed, 36 insertions, 0 deletions
diff --git a/content/posts/2019-04-04-password-strength-tester.md b/content/posts/2019-04-04-password-strength-tester.md
new file mode 100644
index 0000000..e9b13ec
--- /dev/null
+++ b/content/posts/2019-04-04-password-strength-tester.md
@@ -0,0 +1,36 @@
+---
+date: "2019-04-04T07:34:45Z"
+title: Password Strength Tester
+---
+
+This weekend I put together a simple password strength tester. You can
+try it out [here][link].
+
+Features:
+
+* Simple interface.
+* Open source ([MIT licensed][mit]).
+* Easy to inspect. The interface code is contained in a single,
+ <300 line JavaScript file.
+* Self-contained. No external connections for assets, social media
+ sites, analytics, etc.
+* Can be run offline (no internet connection) or locally (by downloading
+ an archive of the [the Git repository][repo]).
+
+Built with:
+
+* [zxcvbn][]: JavaScript password strength estimator.
+* [Bulma][]: Open source CSS framework.
+* [font-awesome][]: Open source font icons.
+
+Links:
+
+* [Password Strength][link]
+* [Source][repo]
+
+[link]: https://pmdn.org/password-strength "Password strength tester"
+[mit]: https://opensource.org/licenses/MIT "MIT license"
+[zxcvbn]: https://github.com/dropbox/zxcvbn "Password strength estimator"
+[bulma]: https://bulma.io/ "Open source CSS framework"
+[font-awesome]: https://fontawesome.io/ "Open source font icons"
+[repo]: https://github.com/pablotron/password-strength "Git repository for Password Strength"