Kohana_Auth::hash PHP 메소드

hash() 공개 메소드

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