• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/cashbox/cashboxorangedata.php
  • Класс: BitrixSaleCashboxCashboxOrangeData
  • Вызов: CashboxOrangeData::createStreamContext
private function createStreamContext()
{
	$sslCert = $this->getValueFromSettings('SECURITY', 'SSL_CERT');
	$this->pathToSslCertificate = $this->createTmpFile($sslCert);

	$sslKey = $this->getValueFromSettings('SECURITY', 'SSL_KEY');
	$this->pathToSslCertificateKey = $this->createTmpFile($sslKey);

	return stream_context_create([
		'ssl' => [
			'local_cert' => $this->pathToSslCertificate,
			'local_pk' => $this->pathToSslCertificateKey,
			'passphrase' => $this->getValueFromSettings('SECURITY', 'SSL_KEY_PASS'),
		]
	]);
}