mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-09 15:20:58 +00:00
- make it so setPublicKey() can guess at the format like loadKey() can
git-svn-id: http://phpseclib.svn.sourceforge.net/svnroot/phpseclib/trunk@204 21d32557-59b3-4da0-833f-c5933fad653e
This commit is contained in:
parent
1b2dde6e7d
commit
60340d5466
@ -1355,9 +1355,25 @@ class Crypt_RSA {
|
|||||||
* @param Integer $type optional
|
* @param Integer $type optional
|
||||||
* @return Boolean
|
* @return Boolean
|
||||||
*/
|
*/
|
||||||
function setPublicKey($key, $type = CRYPT_RSA_PUBLIC_FORMAT_PKCS1)
|
function setPublicKey($key, $type = false)
|
||||||
{
|
{
|
||||||
$components = $this->_parseKey($key, $type);
|
if ($type === false) {
|
||||||
|
$types = array(
|
||||||
|
CRYPT_RSA_PUBLIC_FORMAT_RAW,
|
||||||
|
CRYPT_RSA_PUBLIC_FORMAT_PKCS1,
|
||||||
|
CRYPT_RSA_PUBLIC_FORMAT_XML,
|
||||||
|
CRYPT_RSA_PUBLIC_FORMAT_OPENSSH
|
||||||
|
);
|
||||||
|
foreach ($types as $type) {
|
||||||
|
$components = $this->_parseKey($key, $type);
|
||||||
|
if ($components !== false) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
$components = $this->_parseKey($key, $type);
|
||||||
|
}
|
||||||
|
|
||||||
if (empty($this->modulus) || !$this->modulus->equals($components['modulus'])) {
|
if (empty($this->modulus) || !$this->modulus->equals($components['modulus'])) {
|
||||||
user_error('Trying to load a public key? Use loadKey() instead. It\'s called loadKey() and not loadPrivateKey() for a reason.', E_USER_NOTICE);
|
user_error('Trying to load a public key? Use loadKey() instead. It\'s called loadKey() and not loadPrivateKey() for a reason.', E_USER_NOTICE);
|
||||||
|
Loading…
Reference in New Issue
Block a user