dropbox / python-zxcvbn

A realistic password strength estimator.
https://tech.dropbox.com/2012/04/zxcvbn-realistic-password-strength-estimation/
MIT License
254 stars 53 forks source link

User inputs are not lowercased before comparison #3

Closed ziima closed 11 years ago

ziima commented 11 years ago

Results for these calls greatly differs

>>> password_strength(u'verylongword', [u'VeryLongWord'])
>>> password_strength(u'verylongword', [u'verylongword'])

First returns about 5 minutes, second one is instant.