diff options
author | Philip Häusler <msquare@notrademark.de> | 2012-12-12 22:11:46 +0100 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2012-12-12 22:11:46 +0100 |
commit | 518f8d0d586280de05d5b21417a9d61a94dd1c01 (patch) | |
tree | f5dbbc05f7ad6490dfe9586a5f3d4304ab537204 /install | |
parent | 572a986e480c5273742720f888010950a15be029 (diff) | |
parent | db95fe6485f13c0041bbafbb0004b171cd9122e7 (diff) |
Merge branch 'master' of https://vcs.wybt.net/engelsystem/git
Diffstat (limited to 'install')
-rw-r--r-- | install/default-conf/config.php | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/install/default-conf/config.php b/install/default-conf/config.php index 44833167..d27d809a 100644 --- a/install/default-conf/config.php +++ b/install/default-conf/config.php @@ -17,11 +17,16 @@ $DISPLAY_NEWS = 6; // Anzahl Stunden bis zum Austragen eigener Schichten $LETZTES_AUSTRAGEN=3; -//Setzt den zu verwendenden Crypto algorismis -// mp5 oder crypt -// achtung crypt schaltet password ändern ab -$crypt_system="md5"; -//$crypt_system="crypt"; +// Setzt den zu verwendenden Crypto-Algorismus (entsprechend der Dokumentation von crypt()). +// Falls ein Benutzerpasswort in einem anderen Format gespeichert ist, +// wird es bei der ersten Benutzung des Klartext-Passworts in das neue Format +// konvertiert. +//define('CRYPT_ALG', '$1'); // MD5 +//define('CRYPT_ALG', '$2y$13'); // Blowfish +//define('CRYPT_ALG', '$5$rounds=5000'); // SHA-256 +define('CRYPT_ALG', '$6$rounds=5000'); // SHA-512 + +define('MIN_PASSWORD_LENGTH', 8); // Wenn Engel beim Registrieren oder in ihrem Profil eine T-Shirt Größe angeben sollen, auf true setzen: $enable_tshirt_size = false; |