How to calculate digest
Digest is calculated using following formula: digest = SHA512(key + order_number + amount +currency)
With the following example data • key: 2345klj
• order_number: abcdef
• amount: 54321
• currency: EUR
the digest formula gives a result as follows: digest = SHA512.hexdigest(2345kljabcdef54321EUR)
=>
You can check digest on this link Calculate Digest
Last updated