Browse Source

Fix doc for generateSalt.

$cost must be in range 4-31.
tags/2.0.0-beta
Crypt 11 years ago
parent
commit
0c1557e56a
  1. 2
      framework/yii/helpers/BaseSecurity.php

2
framework/yii/helpers/BaseSecurity.php

@ -326,7 +326,7 @@ class BaseSecurity
* *
* @param integer $cost the cost parameter * @param integer $cost the cost parameter
* @return string the random salt value. * @return string the random salt value.
* @throws InvalidParamException if the cost parameter is not between 4 and 30 * @throws InvalidParamException if the cost parameter is not between 4 and 31
*/ */
protected static function generateSalt($cost = 13) protected static function generateSalt($cost = 13)
{ {

Loading…
Cancel
Save