Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Column

Format

Description

Definition

Comments

id

integer, primary key

Row identifier

autoincrement

 


authenticator_idinteger, foreign keyAuthenticator IDcm_authenticators:id 
password_sourcevarchar(2)How the password is generated and managed
  • AG: Autogenerate
  • EX: External
  • SL: Self Select

When set to External, the Password can only be set via the API

Added Registry v3.3.0

min_length

integer

Minimum permitted password length 


Between 8 and 64, default 8

Only applies if password_source is Self Select

max_lengthintegerMaximum permitted password length 

Between 8 and 64, default 64

Does not apply if password_source is External

format_crypt_phpbooleanHash the password in Crypt format, as implemented by PHP password_hash function using PASSWORD_DEFAULT, and suitable for use with password_verify
  • true: Hash the password in Crypt format
  • false: Do not hash the password in Crypt format
Added Registry v3.2.0
format_plaintextbooleanStore the password in plaintext
  • true: Store the password in plaintext format
  • false: Do not store the password in plaintext format
Added Registry v3.2.0
format_sha1_ldapbooleanHash the password in Salted SHA1 format, suitable for use in LDAP authentication
  • true: Hash the password in Salted SHA1 format
  • false: Do not hash the password in Salted SHA1 format
Added Registry v3.2.0

...