get_password_validators(validator_config)
[source]
Returns a set of validator objects based on the validator_config
parameter. By default, all functions use the validators defined in AUTH_PASSWORD_VALIDATORS
, but by calling this function with an alternate set of validators and then passing the result into the password_validators
parameter of the other functions, your custom set of validators will be used instead. This is useful when you have a typical set of validators to use for most scenarios, but also have a special situation that requires a custom set. If you always use the same set of validators, there is no need to use this function, as the configuration from AUTH_PASSWORD_VALIDATORS
is used by default.
The structure of validator_config
is identical to the structure of AUTH_PASSWORD_VALIDATORS
. The return value of this function can be passed into the password_validators
parameter of the functions listed above.
Note that where the password is passed to one of these functions, this should always be the clear text password - not a hashed password.
Please login to continue.