config['mch_v3_key']); $result = $this->doRequest('GET', '/v3/certificates'); $certs = []; foreach ($result['data'] as $vo) { $certs[$vo['serial_no']] = [ 'expire' => strtotime($vo['expire_time']), 'content' => $aes->decryptToString( $vo['encrypt_certificate']['associated_data'], $vo['encrypt_certificate']['nonce'], $vo['encrypt_certificate']['ciphertext'] ) ]; } $this->tmpFile("{$this->config['mch_id']}_certs", $certs); } catch (\Exception $exception) { throw new InvalidResponseException($exception->getMessage(), $exception->getCode()); } } }