Home
last modified time | relevance | path

Searched refs:exponents (Results 1 – 11 of 11) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DRaw.php118 $exponents = [1 => $components['publicExponent']->modInverse($temp)];
120 $exponents[] = $components['publicExponent']->modInverse($temp);
121 $components['exponents'] = $exponents;
145 * @param array $exponents
151 …eKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, array $exponents, array $coeffici… argument
166 }, $exponents),
H A DPuTTY.php81 $exponents = [1 => $publicExponent->modInverse($temp)];
83 $exponents[] = $publicExponent->modInverse($temp);
95 * @param array $exponents
101 …eKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, array $exponents, array $coeffici… argument
H A DOpenSSH.php71 $exponents = [1 => $publicExponent->modInverse($temp)];
73 $exponents[] = $publicExponent->modInverse($temp);
119 * @param array $exponents
125 …eKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, array $exponents, array $coeffici… argument
H A DJWK.php97 * @param array $exponents
103 …eKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, array $exponents, array $coeffici… argument
116 'dp' => Strings::base64url_encode($exponents[1]->toBytes()),
117 'dq' => Strings::base64url_encode($exponents[2]->toBytes()),
H A DPKCS1.php123 * @param array $exponents
129 …eKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, array $exponents, array $coeffici… argument
139 'exponent1' => $exponents[1],
140 'exponent2' => $exponents[2],
146 'exponent' => $exponents[$i],
H A DXML.php130 * @param array $exponents
135 …eKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, array $exponents, array $coeffici… argument
150 ' <DP>' . Strings::base64_encode($exponents[1]->toBytes()) . "</DP>\r\n" .
151 ' <DQ>' . Strings::base64_encode($exponents[2]->toBytes()) . "</DQ>\r\n" .
H A DPKCS8.php95 * @param array $exponents
101 …eKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, array $exponents, array $coeffici… argument
103 $key = PKCS1::savePrivateKey($n, $e, $d, $primes, $exponents, $coefficients);
H A DMSBLOB.php177 * @param array $exponents
182 …eKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, array $exponents, array $coeffici… argument
199 $key .= strrev($exponents[1]->toBytes());
200 $key .= strrev($exponents[2]->toBytes());
H A DPSS.php161 * @param array $exponents
167 …eKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, array $exponents, array $coeffici… argument
171 $key = PKCS1::savePrivateKey($n, $e, $d, $primes, $exponents, $coefficients);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php42 protected $exponents; variable in phpseclib3\\Crypt\\RSA\\PrivateKey
101 case empty($this->exponents):
102 case $this->exponents[1]->equals(self::$zero):
110 1 => $x->modPow($this->exponents[1], $this->primes[1]),
111 2 => $x->modPow($this->exponents[2], $this->primes[2])
120 $m_i = $x->modPow($this->exponents[$i], $this->primes[$i]);
180 $x = $x->modPow($this->exponents[$i], $this->primes[$i]);
500 …>modulus, $this->publicExponent, $this->exponent, $this->primes, $this->exponents, $this->coeffici…
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php349 $exponents = $coefficients = $primes = [];
396 $exponents[$i] = $e->modInverse($temp);
418 $privatekey->exponents = $exponents;
454 $key->exponents = $components['exponents'];