diff --git a/README.md b/README.md index e8ac50c..c3cd53d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ -This is a very simple, but cryptographically decent, password generator. +This is a very simple, +but cryptographically not awful, +password generator. Click on the extension icon, and it makes a password of length 12. You can dial the length up or down and tell it not to include certain character classes, @@ -9,6 +11,19 @@ So when you need a password, typically you can click the extension, then go back to the form and paste in your new password. -![Screenshot](res/Screenshot from 2017-03-12 19-19-52.png) +![Screenshot](res/screenshot.jpg) -Hooray! \ No newline at end of file +Hooray! + + +Cryptographically Not Awful +--------------------------- + +There are password generators that go to great lengths to use +high-entropy seeds for their random number generators. +This one uses `window.crypto.getRandomValues`, +which is good enough for my purposes. +You'll have to decide if it's good enough for yours. +Feel free to +[read the code](js/popup.js) +and decide for yourself. diff --git a/res/Screenshot from 2017-03-12 19-18-34.png b/res/Screenshot from 2017-03-12 19-18-34.png deleted file mode 100644 index 3d7ead1..0000000 Binary files a/res/Screenshot from 2017-03-12 19-18-34.png and /dev/null differ diff --git a/res/Screenshot from 2017-03-12 19-19-02.png b/res/Screenshot from 2017-03-12 19-19-02.png deleted file mode 100644 index cdf26fa..0000000 Binary files a/res/Screenshot from 2017-03-12 19-19-02.png and /dev/null differ diff --git a/res/Screenshot from 2017-03-12 19-19-10.png b/res/Screenshot from 2017-03-12 19-19-10.png deleted file mode 100644 index acdd286..0000000 Binary files a/res/Screenshot from 2017-03-12 19-19-10.png and /dev/null differ diff --git a/res/Screenshot from 2017-03-12 19-19-52.png b/res/Screenshot from 2017-03-12 19-19-52.png deleted file mode 100644 index fb8712b..0000000 Binary files a/res/Screenshot from 2017-03-12 19-19-52.png and /dev/null differ diff --git a/res/Screenshot from 2017-03-12 19-20-05.png b/res/Screenshot from 2017-03-12 19-20-05.png deleted file mode 100644 index fe5062e..0000000 Binary files a/res/Screenshot from 2017-03-12 19-20-05.png and /dev/null differ diff --git a/res/screenshot.jpg b/res/screenshot.jpg new file mode 100644 index 0000000..89c3a2d Binary files /dev/null and b/res/screenshot.jpg differ