From d1639a41ccde39b0cc562035b24fca33aa76bcd3 Mon Sep 17 00:00:00 2001 From: huangjiajun <582604932@qq.com> Date: Thu, 22 Sep 2022 19:33:57 +0800 Subject: [PATCH] =?UTF-8?q?add=20reverse:for=20v1.4.3=20=E6=B1=87=E8=81=9A?= =?UTF-8?q?=E9=93=B6=E8=A1=8C=E5=8D=A1=E6=94=AF=E4=BB=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pay/pay_by_join_bank_card.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pay/pay_by_join_bank_card.go b/pay/pay_by_join_bank_card.go index bdaeacb..3edf8e2 100644 --- a/pay/pay_by_join_bank_card.go +++ b/pay/pay_by_join_bank_card.go @@ -40,6 +40,7 @@ func GetSms(pubKey, platformKey, priKey, mch_no string, args map[string]string) args["id_no"] = AesEncryptECB([]byte(args["id_no"]), []byte(param["sec_key"])) args["bank_card_no"] = AesEncryptECB([]byte(args["bank_card_no"]), []byte(param["sec_key"])) args["mobile_no"] = AesEncryptECB([]byte(args["mobile_no"]), []byte(param["sec_key"])) + args["expire_date"] = AesEncryptECB([]byte(args["expire_date"]), []byte(param["sec_key"])) data, _ := json.Marshal(args) param["data"] = string(data) send, err := Send("fastPay.agreement.signSms", platformKey, priKey, param)