You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
469 B
21 lines
469 B
5 months ago
|
<?php
|
||
|
namespace BsPaySdk\config;
|
||
|
|
||
|
class MerConfig {
|
||
|
|
||
|
/**
|
||
|
* @var string 商户rsa私钥,用来进行对斗拱接口调用的请求数据加签
|
||
|
*/
|
||
|
public $rsa_merch_private_key = "";
|
||
|
|
||
|
/**
|
||
|
* @var string 商户汇付rsa公钥,用来进行对斗拱接口应答数据的验签,以及部分请求数据非对称加密
|
||
|
*/
|
||
|
public $rsa_huifu_public_key = '';
|
||
|
|
||
|
public $product_id = '';
|
||
|
|
||
|
public $sys_id = '';
|
||
|
|
||
|
public $huifu_id = '';
|
||
|
}
|