Home
last modified time | relevance | path

Searched refs:dA (Results 1 – 5 of 5) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPrivateKey.php46 protected $dA; variable in phpseclib3\\Crypt\\EC\\PrivateKey
76 $dA = str_pad($this->dA->toBytes(), 32, "\0", STR_PAD_LEFT);
77 return sodium_crypto_scalarmult($dA, $coordinates);
83 $point = $this->curve->multiplyPoint($point, $this->dA);
92 $point = $this->curve->multiplyPoint($point, $this->dA);
115 $dA = $this->dA;
202 $S = $k->multiply($dA)->add($r);
257 $temp = $z->add($dA->multiply($r));
301 …return $type::savePrivateKey($this->dA, $this->curve, $this->QA, $this->secret, $this->password, $…
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DEC.php214 $privatekey->dA = $dA = $arr['dA'];
217 $privatekey->dA = $dA = $curve->createRandomMultiplier();
221 $privatekey->QA = $curve->multiplyPoint($curve->getBasePoint(), $dA);
297 $privatekey->dA = $privatekey->curve->createRandomMultiplier();
298 $dA = str_pad($privatekey->dA->toBytes(), 32, "\0", STR_PAD_LEFT);
301 $QA = sodium_crypto_box_publickey_from_secretkey($dA);
380 $new->dA = $components['dA'];
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/
H A DEd448.php122 $dA = new BigInteger($h, 256);
125 'dA' => $dA,
129 $dA->secret = $str;
130 return $dA;
H A DEd25519.php180 $dA = new BigInteger($h, 256);
183 'dA' => $dA,
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DJWK.php98 $dA = new BigInteger(Strings::base64url_decode($key->d), 256);
100 $curve->rangeCheck($dA);