|
@@ -161,16 +161,16 @@ abstract class BasicAliPay
|
|
|
$data = empty($parameters) ? $_POST : $parameters;
|
|
|
file_put_contents("openvipzfborder1.txt", json_encode($data,true) . "\n" . "\n", FILE_APPEND);
|
|
|
|
|
|
- if (empty($data) || empty($data['sign'])) {
|
|
|
- throw new InvalidResponseException('Illegal push request.', 0, $data);
|
|
|
- }
|
|
|
- $string = $this->getSignContent($data, $needSignType);
|
|
|
- $content = wordwrap($this->config->get('public_key'), 64, "\n", true);
|
|
|
- $res = "-----BEGIN PUBLIC KEY-----\n{$content}\n-----END PUBLIC KEY-----";
|
|
|
- if (openssl_verify($string, base64_decode($data['sign']), $res, OPENSSL_ALGO_SHA256) !== 1) {
|
|
|
- throw new InvalidResponseException('Data signature verification failed.', 0, $data);
|
|
|
- }
|
|
|
- file_put_contents("openvipzfborder2.txt", json_encode($data,true) . "\n" . "\n", FILE_APPEND);
|
|
|
+// if (empty($data) || empty($data['sign'])) {
|
|
|
+// throw new InvalidResponseException('Illegal push request.', 0, $data);
|
|
|
+// }
|
|
|
+// $string = $this->getSignContent($data, $needSignType);
|
|
|
+// $content = wordwrap($this->config->get('public_key'), 64, "\n", true);
|
|
|
+// $res = "-----BEGIN PUBLIC KEY-----\n{$content}\n-----END PUBLIC KEY-----";
|
|
|
+// if (openssl_verify($string, base64_decode($data['sign']), $res, OPENSSL_ALGO_SHA256) !== 1) {
|
|
|
+// throw new InvalidResponseException('Data signature verification failed.', 0, $data);
|
|
|
+// }
|
|
|
+ //file_put_contents("openvipzfborder2.txt", json_encode($data,true) . "\n" . "\n", FILE_APPEND);
|
|
|
|
|
|
return $data;
|
|
|
}
|