Jose\Algorithm\SignatureAlgorithmInterface::verify PHP Method

verify() public method

Verify the signature of data.
public verify ( Jose\Object\JWKInterface $key, string $input, string $signature ) : boolean
$key Jose\Object\JWKInterface The private key used to sign the data
$input string The input
$signature string The signature to verify
return boolean
    public function verify(JWKInterface $key, $input, $signature);
SignatureAlgorithmInterface