We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d428c9b + aca1964 commit 5ea0ff1Copy full SHA for 5ea0ff1
src/Common/Signer.php
@@ -18,7 +18,7 @@ class Signer
18
const KEY_TYPE_PUBLIC = 1;
19
const KEY_TYPE_PRIVATE = 2;
20
21
- protected $ignores = ['sign', 'sign_type'];
+ protected $ignores = ['sign'];
22
23
protected $sort = true;
24
src/Requests/AopNotifyRequest.php
@@ -125,6 +125,7 @@ protected function verifySignature()
125
$signer = new Signer($this->params->all());
126
$signer->setSort($this->sort);
127
$signer->setEncodePolicy($this->encodePolicy);
128
+ $signer->setIgnores(['sign','sign_type']);
129
$content = $signer->getContentToSign();
130
131
$sign = $this->params->get('sign');
0 commit comments