Searched refs:dA (Results 1 – 5 of 5) sorted by relevance
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/ |
| H A D | PrivateKey.php | 45 protected $dA; variable in phpseclib3\\Crypt\\EC\\PrivateKey 64 return sodium_crypto_scalarmult($this->dA->toBytes(), $coordinates); 68 $point = $this->curve->multiplyPoint($point, $this->dA); 75 $point = $this->curve->multiplyPoint($point, $this->dA); 98 $dA = $this->dA; 140 $S = $k->multiply($dA)->add($r); 181 $temp = $z->add($dA->multiply($r)); 225 …return $type::savePrivateKey($this->dA, $this->curve, $this->QA, $this->secret, $this->password, $…
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
| H A D | EC.php | 187 $privatekey->dA = $dA = $arr['dA']; 190 $privatekey->dA = $dA = $curve->createRandomMultiplier(); 195 $QA = sodium_crypto_box_publickey_from_secretkey($dA->toBytes()); 198 $privatekey->QA = $curve->multiplyPoint($curve->getBasePoint(), $dA); 240 $new->dA = $components['dA'];
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/ |
| H A D | Ed448.php | 122 $dA = new BigInteger($h, 256); 125 'dA' => $dA, 129 $dA->secret = $str; 130 return $dA;
|
| H A D | Ed25519.php | 180 $dA = new BigInteger($h, 256); 183 'dA' => $dA,
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/ |
| H A D | JWK.php | 98 $dA = new BigInteger(Strings::base64url_decode($key->d), 256); 100 $curve->rangeCheck($dA);
|