| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH/ |
| H A D | PrivateKey.php | 50 $this->publicKey = $this->base->powMod($this->privateKey, $this->prime); 70 $this->publicKey = $this->base->powMod($this->privateKey, $this->prime);
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/ |
| H A D | Integer.php | 247 $temp->value = $this->value->powMod($x, static::$modulo[$this->instanceID]); 274 $temp = $z->powMod($pow, $modulo); 281 $c = $z->powMod($q, $modulo); 282 $t = $this->value->powMod($q, $modulo); 284 $r = $this->value->powMod($temp, $modulo); 288 if ($t->powMod($two->pow($i), $modulo)->equals($one)) { 296 $b = $c->powMod($two->pow($m->subtract($i)->subtract($one)), $modulo);
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/ |
| H A D | PrivateKey.php | 62 $this->y = $this->g->powMod($this->x, $this->p); 119 $r = $this->g->powMod($k, $this->p); 164 $this->y = $this->g->powMod($this->x, $this->p);
|
| H A D | PublicKey.php | 79 $v1 = $this->g->powMod($u1, $this->p); 80 $v2 = $this->y->powMod($u2, $this->p);
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
| H A D | DH.php | 273 $key->publicKey = $key->base->powMod($key->privateKey, $key->prime); 292 … return $public->publicKey->powMod($private->privateKey, $private->prime)->toBytes(true); 297 return $public->powMod($private->privateKey, $private->prime)->toBytes(true);
|
| H A D | DSA.php | 163 $g = $h->powMod($e, $p); 249 $private->y = $private->g->powMod($private->x, $private->p);
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/ |
| H A D | BigInteger.php | 496 public function powMod(BigInteger $e, BigInteger $n) function in phpseclib3\\Math\\BigInteger 498 return new static($this->value->powMod($e->value, $n->value));
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/ |
| H A D | PHP64.php | 291 public function powMod(PHP64 $e, PHP64 $n) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP64
|
| H A D | PHP32.php | 290 public function powMod(PHP32 $e, PHP32 $n) function in phpseclib3\\Math\\BigInteger\\Engines\\PHP32
|
| H A D | GMP.php | 436 public function powMod(GMP $e, GMP $n) function in phpseclib3\\Math\\BigInteger\\Engines\\GMP
|
| H A D | BCMath.php | 446 public function powMod(BCMath $e, BCMath $n) function in phpseclib3\\Math\\BigInteger\\Engines\\BCMath
|