From dc5de5adbd84bc8bb9769f2b2d793d9ffece3e76 Mon Sep 17 00:00:00 2001 From: Adam Magness Date: Sun, 31 Dec 2017 08:31:06 -0500 Subject: [PATCH] Public function Make private function public. --- src/Util/Crypto.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Util/Crypto.php b/src/Util/Crypto.php index d6dbbd8b6b..adee8cd60e 100644 --- a/src/Util/Crypto.php +++ b/src/Util/Crypto.php @@ -190,7 +190,7 @@ class Crypto * @param string $e exponent reference * @return void */ - private static function pemToMe($key, &$m, &$e) + public static function pemToMe($key, &$m, &$e) { $lines = explode("\n", $key); unset($lines[0]);