From: Adam Magness Date: Sun, 31 Dec 2017 13:29:03 +0000 (-0500) Subject: Fix self call X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fe3dac4825a6b0eb5d70cab44fb6b2102d70ac8b;p=friendica.git Fix self call was self when in Crypto.. --- diff --git a/src/Protocol/Salmon.php b/src/Protocol/Salmon.php index bf349a6808..2bf86f0e36 100644 --- a/src/Protocol/Salmon.php +++ b/src/Protocol/Salmon.php @@ -207,7 +207,7 @@ class Salmon */ public static function salmonKey($pubkey) { - self::pemToMe($pubkey, $m, $e); + Crypto::pemToMe($pubkey, $m, $e); return 'RSA' . '.' . base64url_encode($m, true) . '.' . base64url_encode($e, true); } }