Update WeChat/Contracts/BasicAliPay.php

This commit is contained in:
Anyon 2018-10-30 18:50:23 +08:00
parent bfa43d1506
commit 210a75b346

View File

@ -133,9 +133,10 @@ abstract class BasicAliPay
throw new InvalidArgumentException('Missing Config -- [public_key]'); throw new InvalidArgumentException('Missing Config -- [public_key]');
} }
$sign = is_null($sign) ? $data['sign'] : $sign; $sign = is_null($sign) ? $data['sign'] : $sign;
$str = $sync ? json_encode($data) : $this->getSignContent($data, true); $content = wordwrap($this->config->get('public_key'), 64, "\n", true);
$res = "-----BEGIN PUBLIC KEY-----\n" . wordwrap($this->config->get('public_key'), 64, "\n", true) . "\n-----END PUBLIC KEY-----"; $string = $sync ? json_encode($data) : $this->getSignContent($data, true);
return openssl_verify($str, base64_decode($sign), $res, OPENSSL_ALGO_SHA256) === 1 ? $data : false; $res = "-----BEGIN PUBLIC KEY-----\n{$content}\n-----END PUBLIC KEY-----";
return openssl_verify($string, base64_decode($sign), $res, OPENSSL_ALGO_SHA256) === 1 ? $data : false;
} }
/** /**