| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- namespace common\components\payment\joinpay\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;
- }
- }
|