Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Am I SHA-512 compliant?
I have a PHP site that I want to know if its using SHA-512 or MD5. I think its authorizenet 1.8.6.2 for PHP SDK I'm using.
This is how I process a credit card transaction (keys changed to protect the innocent):
require 'includes/authorize/vendor/autoload.php'; use net\authorize\api\contract\v1 as AnetAPI; use net\authorize\api\controller as AnetController; $merchantAuthentication = new AnetAPI\MerchantAuthenticationType(); ... $merchantAuthentication->setName("***"); $merchantAuthentication->setTransactionKey("****");
The setName comes from out API Login ID: in the web admin Settings -> API Credentials & Keys page. eg. Settings page
Is this all I need to make sure if happening then? Or am I missing something?
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You are using both and youโre using neither. Youโre using both because right now both are returned in the response object of the API call. Youโre using neither because to do anything with them you have to write some sort of code. Neither of these are required for the API to work. You can do a validation of the response if you wish. Thatโs about all you have use for. Iโve got working php code for the validation. Hold on and Iโll get you the thread.
โ01-27-2019 05:41 PM
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
โ01-27-2019 05:44 PM

