Kohana_Auth::hash PHP Method

hash() public method

Perform a hash, using the configured method.
public hash ( $str ) : string
return string
    public function hash($str)
    {
        return hash($this->_config['hash_method'], $str);
    }