diff options
Diffstat (limited to 'Zotlabs/Web/HTTPSig.php')
-rw-r--r-- | Zotlabs/Web/HTTPSig.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Web/HTTPSig.php b/Zotlabs/Web/HTTPSig.php index 2535c9016..35b18c763 100644 --- a/Zotlabs/Web/HTTPSig.php +++ b/Zotlabs/Web/HTTPSig.php @@ -250,7 +250,7 @@ class HTTPSig { static function convertKey($key) { if(strstr($key,'RSA ')) { - return rsatopem($key); + return Keyutils::rsaToPem($key); } elseif(substr($key,0,5) === 'data:') { return Keyutils::convertSalmonKey($key); |