Using Hash with Hosted Payment Forms
A hash function is an algorithm that transforms (hashes) an arbitrary set of data elements, such as a text string or file, into a single fixed length value (the hash). The computed hash value is a means of protecting sensitive data. Bluefin has included this functionality in its APIs, and it uses a Secure Hash Algorithm (SHA-256) type of hash.
Sending the HASH
There are two pieces that are tied to sending a hash, the hash value and the “hash_key” value (string), although the “hash_key” is not always required. A description of each REQUIRED parameter in any HASH is included below.
| Parameter | Req'd | Description |
|---|---|---|
| account_id | Yes | This is the merchant account ID. For any hash, this MUST be included and must be the first parameter. |
| api_accesskey | Yes | This is the merchant’s unique “key”. It should NEVER be given out to anyone. For any hash, this MUST be included and must be the second parameter. If it is ever sent in the hash, and outside the hash (it is sent twice), you will receive a “Security Violation” error. |
| timestamp | Yes | This is a 10-digit UNIX timestamp representing the number of seconds since Epoch (00:00:00 on January 1, 1970) and should represent the time this transaction occurs. For any hash, this MUST be included and must be the third parameter. |
It is possible in any transaction type to use the HASH method for more than just the required fields (listed above). This is strictly up to the vendor/merchant, but it is recommended by Bluefin to do so. If the merchant wishes to include other data values in the hash, they can be appended to the hash value, but another element must be sent, called the “hash_key”, which is explained below.
| Parameter | Req'd | Description |
|---|---|---|
| hash_key | No | A string containing a comma delimited list of parameters used to build the hash. This list should NOT include the three parameters above, or other parameters that are used in transparent redirect (see the Transparent Redirect section for more information). |
ImportantThere are a few important things to keep in mind regarding the HASH method:
- All HASH parameters are case sensitive.
- When using the transparent redirect method, the HASH method is REQUIRED.
- The parameter
api\_accesskeyis NOT to be sent as a separate variable when using transparent redirect. Doing so compromises the integrity of the data, PCI compliance, and will result in a "security violation" error.
Basic HASH Usage
If the merchant wishes to send the minimum values of a hash, given the following values:
account_id :: 123456789012
api_accesskey :: e6f157d2-66cf-43d5-8a56-c4c57d5760d7
timestamp :: 1360870400
This would be the hash string:
123456789012,e6f157d2-66cf-43d5-8a56-c4c57d5760d7,1360870400
With a resulting hash value that is sent as something like:
b48171ba3c4ffbc1345093087d661d52a109d836462455d208f52bf7392cbf95
Given the same minimum values, and atransaction_amountof $123.00, the hash string would look like:
123456789012,e6f157d2-66cf-43d5-8a56-c4c57d5760d7,1360870400,123.00
Using the HASH Key with Transaction Amount
And the resulting hash value that is sent is something like:
c602825bed7fdc9b256ec6ce074b88e6befc18bd0eb295a9acb7af024708aedf
Using the HASH Key with Transaction ID
Given the same minimum values, and a transaction_id retrieved from TSAPI, the hash string would look like:
123456789012,e6f157d2-66cf-43d5-8a56-c4c57d5760d7,1360870400,000000105521
And the resulting hash value that is sent is something like:
6b255ae6af73f02589876332d0be0cacc748d01c6a97db80fa4dcdf9c4d06594
[block:callout] { "type": "info", "title": "Note", "body": "In this example, the QSAPI request would also require `hash_key` to be passed as a parameter. The key/value, in this case, would be `hash_key = “transaction_id”`" } [/block]
NoteFor more information on getting a
transaction_idvalue via TSAPI see our guide, Fetching Transaction Information.
Using Multiple Parameters in HASH Key with Transparent Redirect
Using HASH authentication is required on pages that utilize Transparent Redirect.
We recommend including multiple hash values to generate a more secure HASH value.
Transparent Redirect hashes require the following parameters (in order):
account_idapi_accesskeytimestampsuccess_url
This example will include all the parameters above in conjunction withtransaction_id,transaction_amount,first_name, andlast_name.
Given the required values, the addition of the transparent redirect requirements, and additional parameters, our hash string would look like this:
123456789012,e6f157d2-66cf-43d5-8a56-c4c57d5760d7,1360870400,mysuccessurl.me,mydeclineurl.me,000000105521,Blue,Fin
And the resulting hash value that is sent is something like:
2514f261572446124db513dff328fc020f592f7173e227b30b8816f75cdca3a3
The hash_key value that would need to be included in the request is hash_key = "transaction_id,transaction_amount,first_name,last_name"
Variables Index
When using a hash, the table below shows the variables that would be sent to QSAPI, along with the request format variables for the given transaction type.
| Parameter | Req'd | Description |
|---|---|---|
| account_id | Yes | This is the merchant account ID. |
| timestamp | Yes | This is a 10-digit UNIX timestamp representing the number of seconds since Epoch (00:00:00 on January 1, 1970) and should represent the time this transaction occurs. |
| hash | Yes | The hash value (NOT the hash string). |
| hash_key | No | Only required if additional (optional) parameters were included in the hash string. |
Updated 4 days ago
