Redaxscript\Hash::_create PHP Method

_create() protected method

create a salted hash
Since: 2.6.0
protected _create ( )
    protected function _create()
    {
        $this->_hash = function_exists('password_verify') ? password_hash($this->_raw, PASSWORD_DEFAULT) : hash('sha512', $this->_raw . $this->_config->get('salt'));
    }