The signature for tokenization inquiry last token by these steps :
stringToSign = "##" + strings.ToUpper(username) + "##" + strings.ToUpper(password) + "##" + strings.ToUpper(merchant_tranid) + "##"
hash sha256 stringToSign in binary
encode to base64
Sample Generate Signature :
stringToSign = "##" + "MPGS_PURCHASE" + "##" + "ABCDE" + "##" + "TKN106" + "##"
Last updated 6 days ago