Skip to content

PASSWORD:1 (PIN) Configuration

The CEP provides various additional filters/contraints that can be placed on the PASSWORD:1 method in addition to what is offered in Advanced Authentication.

Configuration

The following parameters allow you to add constraints to the PASSWORD:1 method during the enrollment process.

CEP_METHOD_PASSWORD_MAX_LEN

Maximum length of the password for the PASSWORD:1 method:

Example
    environment:
      - CEP_METHOD_PASSWORD_MAX_LEN=8
Default
    environment:
      - CEP_METHOD_PASSWORD_MAX_LEN=99999

CEP_METHOD_PASSWORD_MIN_LEN

Minimum length of password for the PASSWORD:1 method:

Example
    environment:
      - CEP_METHOD_PASSWORD_MIN_LEN=8
Default
    environment:
      - CEP_METHOD_PASSWORD_MIN_LEN=99999

CEP_METHOD_PASSWORD_REGEX

Regular expression for password (PASSWORD:1) complexity validation. Used in conjunction with CEP_PASSWORD_COMPLEX_NUMERIC parameter.

Example
    environment:
      - CEP_METHOD_PASSWORD_REGEX=/^[0-9]*$$/i
Default
    environment:
      - CEP_METHOD_PASSWORD_REGEX=/^(?=.*[0-9])(?=.*[a-z])(?=\S*[\d]).*$$/i

CEP_PASSWORD_COMPLEX_NUMERIC

If set to true, the CEP will leverage the CEP_METHOD_PASSWORD_REGEX parameter's RegEx expression as an input validation filter when enrolling the PASSWORD:1 method.

Example
    environment:
      - CEP_PASSWORD_COMPLEX_NUMERIC=false
Default
    environment:
      - CEP_PASSWORD_COMPLEX_NUMERIC=true