Emarref\Jwt\Algorithm\Hmac::compute PHP Метод

compute() публичный Метод

public compute ( string $value ) : string
$value string
Результат string
    public function compute($value)
    {
        return hash_hmac($this->getAlgorithm(), $value, $this->secret, true);
    }