Signature transaction is a security feature that allows the merchant to identify the transaction script from faspay system
The signature for tokenization registration API generated by these steps:
stringToSign = "##" + strings.ToUpper(username) + "##" + strings.ToUpper(password) + "##" + strings.ToUpper(merchant_tranid) + "##" + amount + "##" + "0" + "##"
hash sha256 stringToSign in binary
encode to base64
Sample Generate Signature :
stringToSign = "##" + "MPGS_PURCHASE" + "##" + "ABCDE" + "##" + "TKN106" + "##" + "10000.00" + "##" + "0" + "##"
Last updated 23 days ago