Update README.md

This commit is contained in:
MixtapeXD 2020-08-24 17:50:26 -04:00 committed by GitHub
parent 9a59eec65e
commit 5d643f8d93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
Built off of <a href="https://github.com/tests-always-included/password-strength" target="_blank">tests-always-included/password-strength</a>
This Calculates the relative strength of a password using several techniques. Primarily this relies on letter trigraphs, which check each set of 3 characters in a given password. This also calculates the entropy bits based on Claude Shannon's technique on determining the number of bits required to represent a set of characters and multiplying it by the length of the password and there's a check to see if a password is contained in a list of common passwords and as a bonus there's also a "Search Space" or (Total Possible Combinations) Calculator, inspired by <a href="https://www.grc.com/haystack.htm" target="_blank">GRC's Interactive Brute Force Password “Search Space” Calculator.</a>
You can toggle between the normal algorithm and GRC's algorithm.
You can toggle between the normal algorithm and GRC's algorithm. Took me forever to figure out how GRC was calculating their "Search Space Size" but happy to have figured it out.
* The normal algorithm is:
```javascript
@ -28,5 +28,4 @@ function GRC(Password-length)
```
and a symbol character set size of 32.
![Password Entropy Calculator](https://raw.githubusercontent.com/AlecMcCutcheon/Password-Entropy-Calculator/master/Password%20Entropy%20Calculator%20.jpg)
Format: ![Alt Text](url)
included is version 1 of the calculator, please write me if you'd like to clean up the code and make it better. I want this to be fully community built.