Home
last modified time | relevance | path

Searched refs:convertInteger (Results 1 – 9 of 9) 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 DCommon.php320 $curve->convertInteger(new BigInteger($x, 256)),
321 $curve->convertInteger(new BigInteger($y, 256))
H A DXML.php188 $curve->convertInteger(new BigInteger($x->item(0)->getAttribute('Value'))),
189 $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.php145 $u1 = $this->curve->convertInteger($u1);
146 $u2 = $this->curve->convertInteger($u2);
H A DPrivateKey.php67 $point = [$this->curve->convertInteger(new BigInteger(strrev($coordinates), 256))];
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DEC.php196 $privatekey->QA = [$curve->convertInteger(new BigInteger(strrev($QA), 256))];