blob: e9b13ec65b305a5ca07d6bdd3d632a3fde3f4caf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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"
|