aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--info/passcheck.texinfo2
-rwxr-xr-xpasscheck.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/info/passcheck.texinfo b/info/passcheck.texinfo
index c9fbab2..10dbe7e 100644
--- a/info/passcheck.texinfo
+++ b/info/passcheck.texinfo
@@ -63,7 +63,7 @@ Texts. A copy of the license is included in the section entitled
@command{passcheck} is a tool that rates passphrases based on the strengths,
a highly rated passphrase is a string passphrase. You are recommended not to
-use any passphrases rated below 250.
+use any passphrases rated below 300.
Passphrases are read from stdin and the rating followed by the passphrase
for each passphrases is written to stdout, and stderr is quited unless the
diff --git a/passcheck.py b/passcheck.py
index c9b0106..c7f81f1 100755
--- a/passcheck.py
+++ b/passcheck.py
@@ -96,7 +96,7 @@ def evaluate(data):
r = 3
classes[r - 1] += 1
if last is not None:
- r = distance(c, last) / 5
+ r = distance(c, last)
rc += r ** 0.5
last = c
if rc >= 0: