You are here

function password_policy_constraint_complexity_description in Password Policy 6

Description of the constraint.

File

constraints/constraint_complexity.inc, line 14
Password policy constraint callbacks.

Code

function password_policy_constraint_complexity_description() {
  return array(
    'name' => t('Complexity'),
    'description' => t('Password must contain the specified minimum number of character types (lowercase, uppercase, digit or punctuation).'),
  );
}