Home
last modified time | relevance | path

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

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DEC.php68 protected $QA; variable in phpseclib3\\Crypt\\EC
195 $QA = sodium_crypto_box_publickey_from_secretkey($dA->toBytes());
196 $privatekey->QA = [$curve->convertInteger(new BigInteger(strrev($QA), 256))];
198 $privatekey->QA = $curve->multiplyPoint($curve->getBasePoint(), $dA);
237 $new->QA = $components['QA'];
354 return strrev($this->QA[0]->toBytes(true));
357 return $this->curve->encodePoint($this->QA);
359 return "\4" . $this->QA[0]->toBytes(true) . $this->QA[1]->toBytes(true);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DJWK.php77 $QA = self::extractPoint(Strings::base64url_decode($key->x), $curve);
85 $QA = [
90 if (!$curve->verifyPoint($QA)) {
H A DXML.php99 $QA = self::query($xpath, 'ecdsakeyvalue')->length ?
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPublicKey.php88 $A = $curve->encodePoint($this->QA);
104 $qa = $curve->convertToInternal($this->QA);
149 [$this->curve->getBasePoint(), $this->QA],
170 return $type::savePublicKey($this->curve, $this->QA, $options);
H A DPrivateKey.php116 $A = $this->curve->encodePoint($this->QA);
225 …return $type::savePrivateKey($this->dA, $this->curve, $this->QA, $this->secret, $this->password, $…
243 $key = $type::savePublicKey($this->curve, $this->QA);