Searched refs:sslKey (Results 1 – 3 of 3) sorted by relevance
459 list($sslKey, $conf[CURLOPT_SSLKEYPASSWD]) = $options['ssl_key'];461 list($sslKey) = $options['ssl_key'];465 $sslKey = isset($sslKey) ? $sslKey: $options['ssl_key'];467 if (!file_exists($sslKey)) {469 "SSL private key not found: {$sslKey}"472 $conf[CURLOPT_SSLKEY] = $sslKey;
504 [$sslKey, $conf[\CURLOPT_SSLKEYPASSWD]] = $options['ssl_key'];506 [$sslKey] = $options['ssl_key'];510 $sslKey = $sslKey ?? $options['ssl_key'];512 if (!\file_exists($sslKey)) {513 throw new \InvalidArgumentException("SSL private key not found: {$sslKey}");515 $conf[\CURLOPT_SSLKEY] = $sslKey;
130 private $sslKey = null; variable in Elasticsearch\\ClientBuilder543 $this->sslKey = [$key, $password];594 if (isset($this->sslKey)) {595 $sslOptions['ssl_key'] = $this->sslKey;