1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-12-04 18:48:24 +01:00

getLoadedFormat() threw exception for loadFormat()-loaded keys

This commit is contained in:
terrafrost 2020-04-08 06:15:18 -05:00
parent 327a13d133
commit 94d3403ed3

View File

@ -206,6 +206,7 @@ abstract class AsymmetricKey
$components['format'] = $format;
$new = static::onLoad($components);
$new->format = $format;
return $new instanceof PrivateKey ?
$new->withPassword($password) :
$new;