VPS参考测评推荐
专注分享VPS主机优惠信息
衡天云优惠活动
华纳云最新优惠促销活动
jtti最新优惠促销活动

分享微信支付v3 php解密代码

locvps
主机参考:VPS测评参考推荐/专注分享VPS服务器优惠信息!若您是商家可以在本站进行投稿,查看详情!此外我们还提供软文收录、PayPal代付、广告赞助等服务,查看详情!
我们发布的部分优惠活动文章可能存在时效性,购买时建议在本站搜索商家名称可查看相关文章充分了解该商家!若非中文页面可使用Edge浏览器同步翻译!PayPal代付/收录合作

支付微信V3版小程序支付php签名,检查签名,分享数据解密代码。

支付微信v3 php解密代码

数据解密需要钠扩展,并且需要安装大多数php版本。

证书的序列号可以在https://myssl.com/cert_decode.html.这里查看

我用的是PHP 7.4版。

直接装载代码:

//微信原生支付类Wxpay{ /* *支付(小程序支付)* @param type $sn订单号* @param type $money金额* @param type $openid用户小程序openid * @return type */公共静态函数getPayParam($sn,$money,$ OpenID){ $ URL = # 39;https://API . mch . weixin . QQ . com/v3/pay/transactions/jsapi # 39;;$ notify _ URL = URL( # 39;/API/weixin/notify # 39;);$ data =[];$ data[ # 39;appid # 39] = Action::config(CONFIG_WXXCX, # 39;app _ id # 39);$ data[ # 39;麦克希德 # 39;] = Action::config(CONFIG_WXXCX, # 39;麦克希德 # 39;);//商家号$ data[ # 39;描述 # 39;] = 'xxx # 39;//描述?$ data[ # 39;out _ trade _ no # 39]= $ sn;//商户系统内部订单号为$ data[ # 39;time _ expire # 39] =日期( # 39;y-m-d # 39;) .'T # 39。日期( # 39;h:I:s # 39;,(time() + 1800))。'+08:00';//订单到期时间为2018-06-08t 10:34:56+08:00 $ data[ # 39;notify _ url # 39]= $ notify _ URL;//异步通知接口地址$ data[ # 39;金额 # 39;] = ['总计 # 39;= gt$money * 100, # 39;货币 # 39;= gt'CNY # 39;];//Amount $ data[ # 39;付款人 # 39;] = ['openid # 39= gt$ OpenID];//user $ re = self:: wxcurl ($ url,$ data, # 39;邮政 # 39;);如果(!isset($re[ # 39;prepay _ id # 39])){ API _ fail( # 39;参数获取失败 # 39;);} $ result =[];$ result[ # 39;appId # 39] = Action::config(CONFIG_WXXCX, # 39;app _ id # 39);$ result[ # 39;时间戳 # 39;]=(string)time();$ result[ # 39;非核心 # 39;]= uniqid();$ result[ # 39;套餐 # 39;] = 'prepay _ id = # 39。$ re[ # 39;prepay _ id # 39];$ result[ # 39;signType # 39] = 'RSA # 39;$ result[ # 39;paySign # 39]= self::getPaySign($ result);返回$ result}/* * *查询顺序* @ param type $ sn */公共静态函数select ($ sn,$ return = false){ $ mch id = action::config(config _ wxxxx, # 39;麦克希德 # 39;);//商品编号$ url = # 39https://API . mch . weixin . QQ . com/v3/pay/transactions/out -trade -no/ # 39;。$sn。'?mchid = # 39。$ mchid$re = self::wxCurl($url,[], # 39;获取 # 39;);if($ return){ return $ re;} if(isset($re[ # 39;trade _ state # 39]) ; $ re[ # 39;trade _ state # 39] == '成功 # 39;){返回true}返回false}/* * * Close order * @ param type $ sn */public static function Close($ sn){ $ mch ID = action::config(config _ wxxxx, # 39;麦克希德 # 39;);//商品编号$ url = # 39https://API . mch . weixin . QQ . com/v3/pay/transactions/out -trade -no/ # 39;。$sn。'/close # 39;;$re = self::wxCurl($url,[ # 39;麦克希德 # 39;= gt$mchid], # 39;邮政 # 39;);返回true}/* * *退款* @ param type $ sn */公共静态函数退款($ order _ sn,$ refund _ sn,$ total,$ refund,$ msg = # 39退款 # 39;){ $ url = # 39https://API . mch . weixin . QQ . com/v3/退款/国内/退款 # 39;;$ data =[];$ data[ # 39;notify _ url # 39]= URL( # 39;ag/weixin/notify _ refund # 39;);$ data[ # 39;out _ trade _ no # 39]= $ order _ sn;//订单号$ data[ # 39;out _ refund _ no # 39]= $ refund _ sn;//退款号码$ data[ # 39;原因 # 39;]= $ msg;$ data[ # 39;金额 # 39;]=['退款 # 39;= gt$退款*100, # 39;总计 # 39;= gt总计$ 100, # 39;货币 # 39;= gt'CNY # 39;];$re = self::wxCurl($url,$data, # 39;邮政 # 39;);return $ re}//请求公共静态函数WXC URL ($ URL,$ data = [],$ method = # 39获取 # 39;){ $ Authorization = self::get sigre($ URL,$data,$ method);$ header =[ # 39;content -类型:application/JSON # 39;, '接受:应用/JSON # 39;, 'user -代理:Mozilla/5.0(Windows NT 10.0;Win64x64) AppleWebKit/537.36 (KHTML,像壁虎一样)Chrome/89 . 0 . 4389 . 90 Safari/537.36 Edg/89 . 0 . 774 . 63 # 39;, '授权: # 39;。$授权];$redata = $data?JSON _ encode($ data): # 39;';$res = reCurl($url,$redata,$ header);返回$res?json_decode($res,true):[];}//后端请求签名公共静态函数get sign ($ URL,$ data,$ method = # 39获取 # 39;){ $ URL _ parts = parse _ URL($ URL);$ canonical _ URL =($ URL _ parts[ # 39;路径 # 39;] .(!empty($URL _ parts[ # 39;查询 # 39;]) ?"?$ { URL _ parts[ # 39;查询 # 39;]} ;: "));$ http _ method = $ method$ timest = time();$ nonce = uni qid();$body = $data?JSON _ encode($ data): # 39;';$ MC hid = Action::CONFIG(CONFIG _ WXXCX, # 39;麦克希德 # 39;);//商家ID $ serial _ no = action::config(config _ wxxxx, # 39;序列号 # 39;);//证书号$ private _ key = self::get private key(base _ path。# 39;cert/API client _ key . PEM # 39;);//商家私钥$message = $http_method。" \ n 。$canonical_url。"\ n 。$时间戳。"\ n 。$nonce。"\ n 。$body。"\ n ;openssl_sign($message,$raw_sign,$private_key, # 39;sha256WithRSAEncryption # 39);$ sign = base64 _ encode($ raw _ sign);$ token = sprintf( # 39;mchid = % s ,nonce _ str = % s ,时间戳= % d ,序列号= % s ,签名= % s ',$mchid,$nonce,$timest,$serial_no,$ sign);return # 39微信支付2-sha 256-RSA 2048 # 39;。$ token}//前端小程序签名公共静态函数getpaysign($ result){ $ private _ key = self::get private key(base _ path。# 39;cert/API client _ key . PEM # 39;);//商家私钥$ message = $ result[ # 39;appId # 39] ."\ n 。$ result[ # 39;时间戳 # 39;] ."\ n 。$ result[ # 39;非核心 # 39;] ."\ n 。$ result[ # 39;套餐 # 39;] ."\ n ;openssl_sign($message,$raw_sign,$private_key, # 39;sha256WithRSAEncryption # 39);$ sign = base64 _ encode($ raw _ sign);return $ sign}//验证签名公共静态函数check sign(){ $ header = context::get( # 39;标题 # 39;);$ serial _ no = $ header[ # 39;微信支付-连载 # 39;] ??'';//微信平台序列号$ timeSt = $ header[ # 39;微信支付-时间戳 # 39;] ??'';$ nonce = $ header[ # 39;微信支付-nonce # 39;] ??'';$ body = Context::get( # 39;raw # 39);$ wx _ sign = $ header[ # 39;微信支付-签名 # 39;] ??'';$ wx _ serial _ no = Action::CONFIG(CONFIG _ WXXCX, # 39;wx _ serial _ no # 39);//保存的序列号如果(!$serial_no || $wx_serial_no!= $ serial _ no){ \ SFF \ Log::write( # 39;过期签名 # 39;);返回false} $message = $timeSt。"\ n 。$nonce。"\ n 。$body。"\ n ;$ wx _ sign = base64 _ decode($ wx _ sign);$ public _ key = self::get public key(BASE _ PATH。'cert/wx _ public _ cert . PEM # 39;);//平台公钥$ res = openssl _ verify ($ message,$ wx _ sign,$ public _ key,OpenSSL _ algo _ sha 256);if ($res == 1) {返回true} \ SFF \ Log::write( # 39;检查失败 # 39;);返回false}//获取私钥公共静态函数获取私钥($ file path){ return OpenSSL _ Get _ private key(file _ Get _ contents($ file path));}//获取公钥公共静态函数获取公钥($ file path){ return OpenSSL _ pkey _ Get _ public(file _ Get _ contents($ file path));}//加密数据公共静态函数get encrypt ($ str) {//$ str是要加密的字符串$ public _ key _ path = base _ path。# 39;cert/wx _ public _ cert . PEM # 39;;//'平台证书路径 # 39;;$ public _ key = file _ get _ contents($ public _ key _ path);$ encrypted = # 39';if(OpenSSL _ public _ encrypted($ str,$ encrypted,$ public _ key,OpenSSL _ pkcs1 _ oaep _ padding)){//base64 code $ sign = base64 _ encrypted($ encrypted);} else {抛出新的异常( # 39;加密失败 # 39;);} return $ sign}//解密数据公共静态函数解密tostring ($ cipher text,$ associated data,$ non centr){ $ AES key = action::config(config _ wxxxx, # 39;mch _ keyv3 # 39);//商家apiv3 key解密$ str = base64 _ decode($密文);if(strlen($ str) lt;= 16){ return # 39;';}//ext-钠(默认安装在 gt= PHP 7.2)return \ na _ crypto _ aead _ AES 256 GCM _ decrypt($ str,$associatedData,$ nonceStr,$ AES key);}//下载平台证书公共静态函数down cert(){ $ URL = # 39;https://api.mch.weixin.qq.com/v3/certificates';$re = self::wxCurl($url,[], # 39;获取 # 39;);如果(!isset($re[ # 39;数据 # 39;])){ API _ fail( # 39;未能获得证书 # 39;);} $密文= $ re[ # 39;数据 # 39;][0]['encrypt _ certificate # 39]['密文 # 39;];$ associated data = $ re[ # 39;数据 # 39;][0]['encrypt _ certificate # 39]['associated _ data # 39];$ non castr = $ re[ # 39;数据 # 39;][0]['encrypt _ certificate # 39]['nonce # 39];$ data = self::decryptToString($密文,$associatedData,$ non castr);如果(!$ data){ API _ fail( # 39;无法获得证书解密 # 39;);}文件_上传_内容(基本路径。'/cert/wx _ public _ cert . PEM # 39;,$ data);返回$ data}}以上是微信支付php版本v3的解密代码分享详情。更多请关注主机参考其他相关文章!

这几篇文章你可能也喜欢:

本文由主机参考刊发,转载请注明:分享微信支付v3 php解密代码 https://zhujicankao.com/73467.html

【腾讯云】领8888元采购礼包,抢爆款云服务器 每月 9元起,个人开发者加享折上折!
打赏
转载请注明原文链接:主机参考 » 分享微信支付v3 php解密代码
主机参考仅做资料收集,不对商家任何信息及交易做信用担保,购买前请注意风险,有交易纠纷请自行解决!请查阅:特别声明

评论 抢沙发

评论前必须登录!