aboutsummaryrefslogtreecommitdiff
path: root/content/posts/2019-04-04-password-strength-tester.md
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2021-10-14 12:47:50 -0400
committerPaul Duncan <pabs@pablotron.org>2021-10-14 12:47:50 -0400
commit4b6c0e31385f5f27a151088c0a2b614495c4e589 (patch)
tree12243cdcd00704bc1a9d94ac9cc128459417370c /content/posts/2019-04-04-password-strength-tester.md
downloadpablotron.org-4b6c0e31385f5f27a151088c0a2b614495c4e589.tar.bz2
pablotron.org-4b6c0e31385f5f27a151088c0a2b614495c4e589.zip
initial commit, including theme
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"