Section
1.1.5
Top Level
Sub Level
General
The system should enforce a password strength policy that includes requirements such as min/max length, required special characters, support for mixed case, password expiration time, and/or reuse policy.
Django
Django Form
(and FormField
) subclasses can define custom validation methods that can check the input text for anything desired. You can check the length of the input by using Python's built-in len()
function. To ensure the input contains certain characters, you can use Python's regular expression (re
) module.
Natural Webagent
This is handled automatically when using EID authentication.