You are here

function _genpass_default_entropy in Generate Password 6

Defines default characters allowed for passwords.

2 calls to _genpass_default_entropy()
genpass_form_alter in ./genpass.module
Implementation of hook_form_alter()
genpass_password in ./genpass.module
Generate a new password using genpass's internal password generation algorithm. Based on the original D6 user_password function (with more characters)

File

./genpass.module, line 15

Code

function _genpass_default_entropy() {
  return 'abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789!#$%&()*+,-./:;<=>?@[]^_{|}~';
}