]> git.mxchange.org Git - shipsimu.git/commitdiff
Salt length reduced
authorRoland Häder <roland@mxchange.org>
Sun, 8 Jun 2008 13:07:25 +0000 (13:07 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 8 Jun 2008 13:07:25 +0000 (13:07 +0000)
inc/classes/main/rng/class_RandomNumberGenerator.php
inc/config.php

index 5856b9e214a23cbea465a04151c94e2ffa615aaa..a8063c6fc234e22b00a037a2daf1e8aae9a8e9ff 100644 (file)
@@ -38,9 +38,9 @@ class RandomNumberGenerator extends BaseFrameworkSystem {
        private $extraSalt = "";
 
        /**
-        * Maximum length for salt
+        * Maximum length for random string
         */
-       private $saltLength = 0;
+       private $rndStrLen = 0;
 
        /**
         * Private constructor
@@ -97,7 +97,7 @@ class RandomNumberGenerator extends BaseFrameworkSystem {
                $this->extraSalt = sha1(getenv('SERVER_ADDR') . ":" . getenv('SERVER_SOFTWARE') . ":" . $this->getConfigInstance()->readConfig('date_key') . ":" . serialize($this->getDatabaseInstance()->getConnectionData()));
 
                // Get config entry for max salt length
-               $this->saltLength = $this->getConfigInstance()->readConfig('salt_length');
+               $this->rndStrLen = $this->getConfigInstance()->readConfig('rnd_str_length');
        }
 
        /**
@@ -108,7 +108,7 @@ class RandomNumberGenerator extends BaseFrameworkSystem {
         */
        public function makeRandomString ($length = -1) {
                // Is the number <1, then fix it to default length
-               if ($length < 1) $length = $this->saltLength;
+               if ($length < 1) $length = $this->rndStrLen;
 
                // Initialize the string
                $randomString = "";
index 879c84d678a8313df0e4cab9138f3efdcea9495e..eabfde19f25f473b4d7edba0365e933d35bf89c8 100644 (file)
@@ -190,7 +190,10 @@ $cfg->setConfigEntry('math_prime', 591623);
 $cfg->setConfigEntry('date_key', date("d-m-Y (l-F-T)", time()));
 
 // CFG: SALT-LENGTH
-$cfg->setConfigEntry('salt_length', 128);
+$cfg->setConfigEntry('salt_length', 10);
+
+// CFG: RND-STR-LENGTH
+$cfg->setConfigEntry('rnd_str_length', 128);
 
 // [EOF]
 ?>