宁波银行h5支付(php接入宁波银行h5支付)

开发过程中烂尾,原因问(从2020年12月建立沟通群,到2021年2月5日,我问开发的问题,就不回复了),开发过程中遇到问题,银行不回复。
文档:https://download.csdn.net/download/creatorwpy/19361472

没有php开发demo,得根据文档,自己写签名等代码,这也是开发最费时间的地方,
下面是签名的代码,已经通过了,其它的代码还没有经过测试,就不发了。

//证书加密需要传的参数  字符串  证书地址  证书密码
function nbbank_sign($body_json) {
    global $global_config_data;
    $certs = array();
    openssl_pkcs12_read(file_get_contents($global_config_data["nbbank_pfxpath"]), $certs, $global_config_data["nbbank_pfxpwd"]); // 其中password为你的证书密码
    if (!$certs) {
        return;
    }
    $signature = '';
    openssl_sign($body_json, $signature, $certs['pkey'],OPENSSL_ALGO_SHA256);
    //加密后的内容通常含有特殊字符,需要编码转换下
    $sign=base64_encode($signature);
    Common::writeLog("nbbank_sign","sign:{$sign}->body_json:".$body_json);
    return $sign;
}

你可能感兴趣的:(宁波银行h5支付(php接入宁波银行h5支付))