Home
last modified time | relevance | path

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

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DOpenSSH.php62 $publicExponent,
71 $exponents = [1 => $publicExponent->modInverse($temp)];
73 $exponents[] = $publicExponent->modInverse($temp);
80 list($publicExponent, $modulus) = Strings::unpackSSH2('ii', $parsed['publicKey']);
85 'publicExponent' => $publicExponent,
H A DPuTTY.php68 list($publicExponent, $modulus) = $result;
78 $exponents = [1 => $publicExponent->modInverse($temp)];
80 $exponents[] = $publicExponent->modInverse($temp);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php257 protected $publicExponent; variable in phpseclib3\\Crypt\\RSA
416 $privatekey->publicExponent = $e;
446 $key->publicExponent = $components['publicExponent'];
450 $key->exponent = $key->publicExponent;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php179 $x = $x->multiply($r->modPow($this->publicExponent, $this->primes[$i]));
456 if (empty($this->modulus) || empty($this->publicExponent)) {
460 $key = $type::savePublicKey($this->modulus, $this->publicExponent);
500 …return $type::savePrivateKey($this->modulus, $this->publicExponent, $this->exponent, $this->primes…
H A DPublicKey.php491 return $type::savePublicKey($this->modulus, $this->publicExponent, $options);