define a password hash constante
This commit is contained in:
parent
71bb892352
commit
8aeeed2075
1 changed files with 9 additions and 2 deletions
|
@ -55,9 +55,16 @@ $admins = array("admin@domain.tld");
|
|||
|
||||
|
||||
/*
|
||||
* Minimal password length
|
||||
* Password
|
||||
*/
|
||||
|
||||
/*
|
||||
* Select on of the following schemas
|
||||
* SHA-512, SHA-256, BLOWFISH, EXT_DES
|
||||
* For secruity reasons, choose one of the first 3 schemas
|
||||
*/
|
||||
define("PASS_HASH_SCHEMA", "SHA-512");
|
||||
|
||||
//minimum password length
|
||||
define("MIN_PASS_LENGTH", 8);
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue