lithium\security\Password::_generateSaltMd5 PHP Метод

_generateSaltMd5() защищенный статический Метод

Generates an MD5 salt for use in lithium\security\Password::hash().
protected static _generateSaltMd5 ( ) : string
Результат string The MD5 salt.
    protected static function _generateSaltMd5()
    {
        return '$1$' . String::random(6, array('encode' => String::ENCODE_BASE_64));
    }