Home
last modified time | relevance | path

Searched refs:chain (Results 1 – 2 of 2) sorted by relevance

/dokuwiki/vendor/splitbrain/slika/
H A DREADME.md21 Operations can be chained together. Consider the chain to be one command. Do not reuse the adapter returned by `run()`, it is a single use object. All operations can potentially throw a `\splitbrain\slika\Exception`.
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php2041 * Get the certificate chain for the current cert
2047 $chain = [$this->currentCert];
2053 $currentCert = $chain[count($chain) - 1];
2065 $chain[] = $ca;
2074 foreach ($chain as $key => $value) {
2075 $chain[$key] = new X509();
2076 $chain[$key]->loadX509($value);
2078 return $chain;