Searched refs:QA (Results 1 – 6 of 6) sorted by relevance
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
| H A D | EC.php | 71 protected $QA; variable in phpseclib3\\Crypt\\EC 221 $privatekey->QA = $curve->multiplyPoint($curve->getBasePoint(), $dA); 301 $QA = sodium_crypto_box_publickey_from_secretkey($dA); 302 … $privatekey->QA = [$privatekey->curve->convertInteger(new BigInteger(strrev($QA), 256))]; 377 $new->QA = $components['QA']; 473 return strrev($this->QA[0]->toBytes(true)); 476 return $this->curve->encodePoint($this->QA); 478 return "\4" . $this->QA[0]->toBytes(true) . $this->QA[1]->toBytes(true); 518 $QA = PKCS8::extractPoint($secret, $curve); 519 $key = PKCS8::savePublicKey($curve, $QA);
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/ |
| H A D | JWK.php | 77 $QA = self::extractPoint(Strings::base64url_decode($key->x), $curve); 85 $QA = [ 90 if (!$curve->verifyPoint($QA)) {
|
| H A D | PKCS8.php | 197 …$QA = sodium_crypto_box_publickey_from_secretkey(str_pad($components['dA']->toBytes(), 32, chr(0),… 198 … $components['QA'] = [$components['curve']->convertInteger(new BigInteger(strrev($QA), 256))];
|
| H A D | XML.php | 100 $QA = self::query($xpath, 'ecdsakeyvalue')->length ?
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/ |
| H A D | PublicKey.php | 134 $A = $curve->encodePoint($this->QA); 150 $qa = $curve->convertToInternal($this->QA); 211 [$this->curve->getBasePoint(), $this->QA], 232 return $type::savePublicKey($this->curve, $this->QA, $options);
|
| H A D | PrivateKey.php | 178 $A = $this->curve->encodePoint($this->QA); 301 …return $type::savePrivateKey($this->dA, $this->curve, $this->QA, $this->secret, $this->password, $… 319 $key = $type::savePublicKey($this->curve, $this->QA);
|