1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-12-02 17:52:59 +01:00

Merge branch '1.0' into 2.0

This commit is contained in:
terrafrost 2022-07-13 09:07:31 -05:00
commit 68323d8f11

View File

@ -1386,8 +1386,12 @@ class RSA
} }
// http://www.w3.org/TR/xmldsig-core/#sec-RSAKeyValue // http://www.w3.org/TR/xmldsig-core/#sec-RSAKeyValue
// http://en.wikipedia.org/wiki/XML_Signature // http://en.wikipedia.org/wiki/XML_Signature
case self::PRIVATE_FORMAT_XML: case CRYPT_RSA_PRIVATE_FORMAT_XML:
case self::PUBLIC_FORMAT_XML: case CRYPT_RSA_PUBLIC_FORMAT_XML:
if (!extension_loaded('xml')) {
return false;
}
$this->components = array(); $this->components = array();
$xml = xml_parser_create('UTF-8'); $xml = xml_parser_create('UTF-8');