我正在使用签名字符串和私钥来生成使用 SHA-256 加密的公钥。
散列函数是标准的 C# SHA-256 散列函数:
string CalculateHMAC256(string hmacKey, string signingstring)
{
byte[] key = Encoding.UTF8.GetBytes(hmacKey);
byte[] data = Encoding.UTF8.GetBytes(signingstring);
using (HMACSHA256 hmac = new HMACSHA256(key))
{
byte[] result = hmac.ComputeHash(data);
return Convert.ToBase64String(result);
}
}
字符串签名如下所示: allowedMethods:blockedMethods:countryCode:currencyCode:merchantAccount:merchantReference:offset:orderData:paymentAmount:sessionValidity:shipBeforeDate:shopperEmail:shopperLocale:shopperReference:skinCode:::GB:GBP:MyTest:abc:::1 :2017-04-28T15:07:10+01:00:2017-04-30::en_US::neDRF4H4
我也按照建议使用转义的 ':' 进行了尝试: allowedMethods:blockedMethods:countryCode:currencyCode:merchantAccount:merchantReference:offset:orderData:paymentAmount:sessionValidity:shipBeforeDate:shopperEmail:shopperLocale:shopperReference:skinCode:::GB:GBP:MyTest :abc:::1:2017-04-29T13:34:48+01:00:2017-05-01::en_US::neDRF4H4
然后我的 html 表单如下所示:
<form ngNoForm name="frmsp" id="frmsp" target="_blank"
action="https://test.barclaycardsmartpay.com/hpp/pay.shtml"
method="post">
<input type="hidden" name="merchantSig" [value]="merchantSignature" />
<input type="hidden" name="currencyCode" [value]="smartPayment?.currencyCode" />
<input type="hidden" name="merchantAccount" [value]="smartPayment?.merchantAccount" />
<input type="hidden" name="merchantReference" [value]="smartPayment?.merchantReference" />
<input type="hidden" name="paymentAmount" [value]="smartPayment?.paymentAmount" />
<input type="hidden" name="sessionValidity" [value]="smartPayment?.sessionValidity" />
<input type="hidden" name="shipBeforeDate" [value]="smartPayment?.shipBeforeDate" />
<input type="hidden" name="shopperLocale" [value]="smartPayment?.shopperLocale" />
<input type="hidden" name="orderData" [value]="smartPayment?.orderData" />
<input type="hidden" name="skinCode" [value]="smartPayment?.skinCode" />
<input type="hidden" name="countryCode" [value]="smartPayment?.countryCode" />
<input type="hidden" name="shopperEmail" [value]="smartPayment?.shopperEmail" />
<input type="hidden" name="shopperReference" [value]="smartPayment?.shopperReference" />
<input type="hidden" name="allowedMethods" [value]="smartPayment?.allowedMethods" />
<input type="hidden" name="blockedMethods" [value]="smartPayment?.blockedMethods" />
<input type="hidden" name="offset" [value]="smartPayment?.offset" />
<input type="submit" value="Process Payment" (click)="buttonClicked()">
使用 angular2 计算字段值的位置 - 使用用于构建签名字符串的相同值,因此我确信数据匹配。
当我发送表格时,我收到一条错误消息,指出商家签名不正确。
也许签名字符串的格式可能不正确?我正在尝试使用托管支付来调用 Barclaycard Smartpay。此处的文档:托管支付页面集成指南
注意:barclays 文档已过期(最后更新于 2012 年),并且对 SHA-1 的引用现在使用 SHA-256。它是使用 Adyen 支付系统构建的,我使用以下示例代码重用了字符串生成示例:https ://github.com/Adyen/adyen-asp.net-sample-code