for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types = 1);
namespace SlevomatCsobGateway\Crypto;
function openssl_sign($data, &$signature, $priv_key_id, $signature_alg = OPENSSL_ALGO_SHA1)
$data
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$signature
$priv_key_id
$signature_alg
{
return false;
}
function openssl_verify($data, $signature, $pub_key_id, $signature_alg = OPENSSL_ALGO_SHA1)
$pub_key_id
return -1;
function openssl_error_string()
return 'error_message';
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.