Skip to content

Commit

Permalink
fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
NafezlyDotCom committed Oct 15, 2022
1 parent 23a7df1 commit ca7dac0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Classes/KashierPayment.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public function verify(Request $request): array
}

$queryString = ltrim($queryString, $queryString[0]);
$signature = hash_hmac('sha256', $queryString, $this->kashier_iframe_key);
$signature = hash_hmac('sha256', $queryString, $this->kashier_iframe_key,false);
if ($signature == $request["signature"]) {
return [
'success' => true,
Expand Down

0 comments on commit ca7dac0

Please sign in to comment.