/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/ |
D | Raw.php | 118 $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),
|
D | PKCS1.php | 109 * @param array $exponents 115 …eKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, array $exponents, array $coeffici… argument 125 'exponent1' => $exponents[1], 126 'exponent2' => $exponents[2], 132 'exponent' => $exponents[$i],
|
D | PuTTY.php | 78 $exponents = [1 => $publicExponent->modInverse($temp)]; 80 $exponents[] = $publicExponent->modInverse($temp); 92 * @param array $exponents 98 …eKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, array $exponents, array $coeffici… argument
|
D | OpenSSH.php | 71 $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
|
D | JWK.php | 97 * @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()),
|
D | XML.php | 130 * @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" .
|
D | PKCS8.php | 95 * @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);
|
D | MSBLOB.php | 181 * @param array $exponents 186 …eKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, array $exponents, array $coeffici… argument 203 $key .= strrev($exponents[1]->toBytes()); 204 $key .= strrev($exponents[2]->toBytes());
|
D | PSS.php | 161 * @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/ |
D | PrivateKey.php | 42 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/ |
D | RSA.php | 349 $exponents = $coefficients = $primes = []; 397 $exponents[$i] = $e->modInverse($temp); 419 $privatekey->exponents = $exponents; 455 $key->exponents = $components['exponents'];
|