No project description provided
Project description
django-pass-strength-validator
django-pass-strength-validator
is a password strength validator for Django based on the zxcvbn
library developed by Dropbox. Any time a user attempts to set a password with a strength less than the specified level, a ValidationError will be raised. This enhances the security of your app by ensuring users have strong passwords.
Through pattern matching and estimation, the zxcvbn library recognizes and weighs 30k common passwords, common names and surnames according to US census data, popular English words from Wikipedia and US television and movies, and other common patterns like dates, repeats (aaa
), sequences (abcd
), keyboard patterns (qwertyuiop
), and l33t speak.
Installation
pip install django-pass-strength-validator
Usage in Django
Add a string reference to the PasswordStrengthValidator class from the django-pass-strength-validator
library in the AUTH_PASSWORD_VALIDATORS
list in your Django project settings.
The zxcvbn
library returns a password strength score from 0 to 4, with 0 being the weakest and 4 being the strongest password strength. The default minimum password strength level for the django-pass-strength-validator
library is 3. This means if a user attempts to save a password that has a strength less than 3, a ValidationError will be raised. You can change the minimum password strength level by passing though an OPTIONS value in Django settings, as shown in the example below.
AUTH_PASSWORD_VALIDATORS = [
# There will likely be other validators included by default
{
'NAME': 'django_pass_strength_validator.PasswordStrengthValidator',
'OPTIONS': {
'min_strength': 3, # Optional, can be an integer from 0 to 4
}
},
]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-pass-strength-validator-1.0.0.tar.gz
.
File metadata
- Download URL: django-pass-strength-validator-1.0.0.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7b54f595ef8cc599c8d555364d0c477b217647eaf4e04876a4c50463f2807b3 |
|
MD5 | 5841d035498057d25b8451aaa94d735b |
|
BLAKE2b-256 | bba1a0f078bc52285ce25e36b1f5a6c51e1bff628e2431a32e3acfbf9c6e0faa |