Home
last modified time | relevance | path

Searched refs:convertInteger (Results 1 – 10 of 10) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DMontgomeryPublic.php55 … $components['QA'] = [$components['curve']->convertInteger(new BigInteger(strrev($key), 256))];
H A DJWK.php86 $curve->convertInteger(new BigInteger(Strings::base64url_decode($key->x), 256)),
87 $curve->convertInteger(new BigInteger(Strings::base64url_decode($key->y), 256))
H A DPKCS8.php190 …$components['QA'] = [$components['curve']->convertInteger(new BigInteger(strrev($key['publicKey'])…
198 … $components['QA'] = [$components['curve']->convertInteger(new BigInteger(strrev($QA), 256))];
H A DCommon.php324 $curve->convertInteger(new BigInteger($x, 256)),
325 $curve->convertInteger(new BigInteger($y, 256))
H A DXML.php189 $curve->convertInteger(new BigInteger($x->item(0)->getAttribute('Value'))),
190 $curve->convertInteger(new BigInteger($y->item(0)->getAttribute('Value')))
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DBase.php54 public function convertInteger(BigInteger $x) function in phpseclib3\\Crypt\\EC\\BaseCurves\\Base
H A DPrime.php444 $xp = $this->convertInteger($x);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPublicKey.php207 $u1 = $this->curve->convertInteger($u1);
208 $u2 = $this->curve->convertInteger($u2);
H A DPrivateKey.php82 $point = [$this->curve->convertInteger(new BigInteger(strrev($coordinates), 256))];
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DEC.php302 … $privatekey->QA = [$privatekey->curve->convertInteger(new BigInteger(strrev($QA), 256))];