Skip to content

Commit

Permalink
Merge branch 'master' into MAGE-536-Release_Fix_AmzPay
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Boulanger committed May 31, 2024
2 parents 5231b7f + e4cd364 commit ada8fbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ It is highly recommended to install the latest release from Github (either using
- Supports the multi-shipping extension
- Supports simplified PCI DSS conformity in accordance with SAQ A
- Payment methods can be automatically hidden depending on the amount of the order and the credit rating of the customer
- Find all currently supported payment methods on [the dedicated docs' page on our site](https://docs.payone.com/display/public/INT/Magento+1+Extension)

## Documentation
You can check [the documentation on our website here](https://docs.payone.com/display/public/INT/Magento+1+Extension).
You can our documentation here: https://docs.payone.com/integration/plugins/integration-guide-magento-1.

## Notes

Expand Down
3 changes: 1 addition & 2 deletions lib/Payone/ClientApi/Service/GenerateHash.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,7 @@ public function generate(Payone_ClientApi_Request_Interface $request, $securityK
$hashString .= $requestData[$key];
}

$hashString .= $securityKey;
$hash = md5($hashString);
$hash = hash_hmac('sha384', $hashString, $securityKey);
return $hash;
}

Expand Down

0 comments on commit ada8fbe

Please sign in to comment.