Home
last modified time | relevance | path

Searched refs:getCurve (Results 1 – 6 of 6) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/
H A DIdentity.php121 if (is_array($key->getCurve()) || !isset(self::$curveAliases[$key->getCurve()])) {
185 switch ($this->key->getCurve()) {
198 …eption('The only supported hash for ' . self::$curveAliases[$this->key->getCurve()] . ' is ' . $ex…
253 public function getCurve() function in phpseclib3\\System\\SSH\\Agent\\Identity
259 return $this->key->getCurve();
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDH.php304 $privateCurve = $private->getCurve();
307 if ($privateCurve !== $public->getCurve()) {
308 …throw new \InvalidArgumentException("The public key curve (" . $public->getCurve() . ") and privat…
327 …Str = (string) (isset($orig) ? $orig : EC::convertPointToPublicKey($private->getCurve(), $public));
341 $curveName = $private->getCurve();
H A DEC.php411 public function getCurve() function in phpseclib3\\Crypt\\EC
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPrivateKey.php141 …rtFormat == 'SSH2' ? Strings::packSSH2('ss', 'ssh-' . strtolower($this->getCurve()), $result) : $r…
165 … ? Strings::packSSH2('ss', 'ssh-' . strtolower($this->getCurve()), $result)
205 …rtFormat == 'SSH2' ? Strings::packSSH2('ss', 'ssh-' . strtolower($this->getCurve()), $R . $S) : $R…
348 case 3: return $format::save($r, $s, $this->getCurve());
349 case 4: return $format::save($r, $s, $this->getCurve(), $this->getLength());
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php3017 switch ($key->getCurve()) {
3020 return ['algorithm' => 'id-' . $key->getCurve()];
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php2715 $curveName = $privatekey->getCurve();