Home
last modified time | relevance | path

Searched refs:publickey (Results 1 – 2 of 2) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php2276 case 'publickey':
2649 $publickey = $privatekey->getPublicKey();
2651 if ($publickey instanceof RSA) {
2672 } elseif ($publickey instanceof EC) {
2698 } elseif ($publickey instanceof DSA) {
2706 $publickeyStr = $publickey->toString('OpenSSH', ['binary' => true]);
2713 'publickey'
2726 if (in_array('publickey', $auth_methods) && substr($signatureType, 0, 9) == 'rsa-sha2-') {
2743 throw new ConnectionClosedException('Unexpected response to publickey authentication pt 1');
2749 if ($publickey instanceo
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php423 $publickey = new PublicKey;
424 $publickey->modulus = $n;
425 $publickey->k = $bits >> 3;
426 $publickey->exponent = $e;
427 $publickey->publicExponent = $e;
428 $publickey->isPublic = true;