summaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorJan-Philipp Litza <janphilipp@litza.de>2012-12-12 02:31:54 +0100
committerJan-Philipp Litza <janphilipp@litza.de>2012-12-12 02:40:12 +0100
commitdb95fe6485f13c0041bbafbb0004b171cd9122e7 (patch)
treef5dbbc05f7ad6490dfe9586a5f3d4304ab537204 /install
parent697b756c4ea5925ebb23e31b08ff851d024ae26d (diff)
new authentication framework with stronger passwords and real salts - please proofread!
Diffstat (limited to 'install')
-rw-r--r--install/default-conf/config.php15
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;