diff options
author | Mario <mario@mariovavti.com> | 2021-03-18 08:35:09 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-03-18 08:35:09 +0000 |
commit | f0cce1c902d705a7c6c15e23333b36a0c0ab4bf9 (patch) | |
tree | 1897dbaf30d84d4df287a4d2bc125bf07263adce /Zotlabs/Web/HTTPSig.php | |
parent | 9f26b7aa9c6e3ba50de5a0780c917cabad7367f6 (diff) | |
download | volse-hubzilla-f0cce1c902d705a7c6c15e23333b36a0c0ab4bf9.tar.gz volse-hubzilla-f0cce1c902d705a7c6c15e23333b36a0c0ab4bf9.tar.bz2 volse-hubzilla-f0cce1c902d705a7c6c15e23333b36a0c0ab4bf9.zip |
use lib/keyutils rsatopem()
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); |