Home
last modified time | relevance | path

Searched refs:sslKey (Results 1 – 2 of 2) sorted by last modified time

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClientBuilder.php130 private $sslKey = null; variable in Elasticsearch\\ClientBuilder
543 $this->sslKey = [$key, $password];
594 if (isset($this->sslKey)) {
595 $sslOptions['ssl_key'] = $this->sslKey;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DCurlFactory.php459 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;