Additional libraries for validating passwords in Django.
Project description
Additional libraries for validating passwords in Django 3.2 or later.
The application works well under python 4.x and 3.x versions.
Django version after the number 1.9, allows you to configure password validation. Configuration validation is placed under the variable AUTH_PASSWORD_VALIDATORS.
Installation
Just install django-password-validators via pip:
$ pip install django-password-validators
Validators
UniquePasswordsValidator
Validator checks if the password was once used by a particular user. If the password is used, then an exception is thrown, of course.
For each user, all the passwords are stored in a database. All passwords are strongly encrypted.
Configuration…
In the file settings.py we add
INSTALLED_APPS = [
...
'django_password_validators',
'django_password_validators.password_history',
...
]
AUTH_PASSWORD_VALIDATORS = [
...
{
'NAME': 'django_password_validators.password_history.password_validation.UniquePasswordsValidator',
'OPTIONS': {
# How many recently entered passwords matter.
# Passwords out of range are deleted.
# Default: 0 - All passwords entered by the user. All password hashes are stored.
'last_passwords': 5 # Only the last 5 passwords entered by the user
}
},
...
]
# If you want, you can change the default hasher for the password history.
# DPV_DEFAULT_HISTORY_HASHER = 'django_password_validators.password_history.hashers.HistoryHasher'
And run
python manage.py migrate
PasswordCharacterValidator
The validator checks for the minimum number of characters of a given type.
In the file settings.py we add
INSTALLED_APPS = [
...
'django_password_validators',
...
]
AUTH_PASSWORD_VALIDATORS = [
...
{
'NAME': 'django_password_validators.password_character_requirements.password_validation.PasswordCharacterValidator',
'OPTIONS': {
'min_length_digit': 1,
'min_length_alpha': 2,
'min_length_special': 3,
'min_length_lower': 4,
'min_length_upper': 5,
'special_characters': "~!@#$%^&*()_+{}\":;'[]"
}
},
...
]
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django-password-validators-1.7.3.tar.gz.
File metadata
- Download URL: django-password-validators-1.7.3.tar.gz
- Upload date:
- Size: 19.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7175aefa6e86dc002dd3539327bf2d752097651704927dc409a669259e0d2195
|
|
| MD5 |
874ab9c4063b65e28cf767ba2e3a1642
|
|
| BLAKE2b-256 |
639182e0404483a5e2c0f3fdc144db39874b59107ed6a4a00afecf0c9d204a74
|
File details
Details for the file django_password_validators-1.7.3-py3-none-any.whl.
File metadata
- Download URL: django_password_validators-1.7.3-py3-none-any.whl
- Upload date:
- Size: 39.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f243a82957e9b17a0c7cf5580f9d7588471cb6530c2dce7ee4e1222dddfe5768
|
|
| MD5 |
3a55846851b8c894cdc4ef4b600ed87c
|
|
| BLAKE2b-256 |
d8f9c83f378a46535c4851df45bc9d172f262c5a7df75575b9087a8fe1ae2af7
|