From 3e68dd75259ab052b1c4d28097532d2af007c189 Mon Sep 17 00:00:00 2001 From: MixtapeXD <46252377+AlecMcCutcheon@users.noreply.github.com> Date: Mon, 24 Aug 2020 17:44:09 -0400 Subject: [PATCH] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 309bd58..3e1a33d 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,16 @@ # Password-Entropy-Calculator Built off of tests-always-included/password-strength -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 GRC's Interactive Brute Force Password “Search Space” Calculator. You can toggle between the normal algorithm which is: +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 GRC's Interactive Brute Force Password “Search Space” Calculator. +You can toggle between the normal algorithm and GRC's algorithm. + +The normal algorithm is: ```javascript Math.pow(number-of-characters, Password-length); ``` and a symbol character set size of 32. -GRC's algorithm which is: +GRC's algorithm is: ```javascript function GRC(Password-length)