aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-03-18 08:35:09 +0000
committerMario <mario@mariovavti.com>2021-03-18 08:35:09 +0000
commitf0cce1c902d705a7c6c15e23333b36a0c0ab4bf9 (patch)
tree1897dbaf30d84d4df287a4d2bc125bf07263adce
parent9f26b7aa9c6e3ba50de5a0780c917cabad7367f6 (diff)
downloadvolse-hubzilla-f0cce1c902d705a7c6c15e23333b36a0c0ab4bf9.tar.gz
volse-hubzilla-f0cce1c902d705a7c6c15e23333b36a0c0ab4bf9.tar.bz2
volse-hubzilla-f0cce1c902d705a7c6c15e23333b36a0c0ab4bf9.zip
use lib/keyutils rsatopem()
-rw-r--r--Zotlabs/Web/HTTPSig.php2
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);