| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- namespace addons\JoinPay\common\logic\entity;
- /**
- * 密钥类
- * Class SecretKey
- * @package entity
- */
- class SecretKey {
- /**
- * 对请求参数进行签名的私钥
- */
- private $reqSignKey;
- /**
- * 对响应参数进行验签的公钥
- */
- private $respVerifyKey;
- /**
- * 对sec_key进行加密的公钥
- */
- private $secKeyEncryptKey;
- /**
- * 对sec_key进行解密的私钥
- */
- private $secKeyDecryptKey;
- /**
- * @return mixed
- */
- public function getReqSignKey()
- {
- return $this->reqSignKey;
- }
- /**
- * @param mixed $reqSignKey
- */
- public function setReqSignKey($reqSignKey): void
- {
- $this->reqSignKey = $reqSignKey;
- }
- /**
- * @return mixed
- */
- public function getRespVerifyKey()
- {
- return $this->respVerifyKey;
- }
- /**
- * @param mixed $respVerifyKey
- */
- public function setRespVerifyKey($respVerifyKey): void
- {
- $this->respVerifyKey = $respVerifyKey;
- }
- /**
- * @return mixed
- */
- public function getSecKeyEncryptKey()
- {
- return $this->secKeyEncryptKey;
- }
- /**
- * @param mixed $secKeyEncryptKey
- */
- public function setSecKeyEncryptKey($secKeyEncryptKey): void
- {
- $this->secKeyEncryptKey = $secKeyEncryptKey;
- }
- /**
- * @return mixed
- */
- public function getSecKeyDecryptKey()
- {
- return $this->secKeyDecryptKey;
- }
- /**
- * @param mixed $secKeyDecryptKey
- */
- public function setSecKeyDecryptKey($secKeyDecryptKey): void
- {
- $this->secKeyDecryptKey = $secKeyDecryptKey;
- }
- }
|