Commit 25a36377 by Paul Klimov

Upgrade note about `Security` updated

parent 5a429857
...@@ -84,6 +84,9 @@ Upgrade from Yii 2.0 Beta ...@@ -84,6 +84,9 @@ Upgrade from Yii 2.0 Beta
'cryptBlockSize' => 16, 'cryptBlockSize' => 16,
'cryptKeySize' => 24, 'cryptKeySize' => 24,
'derivationIterations' => 1000, 'derivationIterations' => 1000,
'deriveKeyStrategy' => 'hmac', // for PHP version < 5.5.0
//'deriveKeyStrategy' => 'pbkdf2', // for PHP version >= 5.5.0
'useDeriveKeyUniqueSalt' => false,
], ],
// ... // ...
], ],
......
...@@ -79,7 +79,7 @@ class Security extends Component ...@@ -79,7 +79,7 @@ class Security extends Component
/** /**
* @var boolean whether to generate unique salt while deriving encryption key. * @var boolean whether to generate unique salt while deriving encryption key.
* If enabled (recommended) this option increases encrypted text length, but provide more security. * If enabled (recommended) this option increases encrypted text length, but provide more security.
* If disabled this option reduces encrypted text length, but also reduce security. * If disabled this option reduces encrypted text length, but also reduces security.
*/ */
public $useDeriveKeyUniqueSalt = true; public $useDeriveKeyUniqueSalt = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment