diff options
author | Mario <mario@mariovavti.com> | 2022-03-20 08:58:18 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-03-20 08:58:18 +0000 |
commit | 591349ee7493ad09690900ecd0274ab02809c009 (patch) | |
tree | 4bd588e92ad72b0c3df3a63d7d2a817108601d98 /Zotlabs/Lib | |
parent | 1beadfc6e769cfe21d6c3d6c13f7db29210e40fb (diff) | |
download | volse-hubzilla-591349ee7493ad09690900ecd0274ab02809c009.tar.gz volse-hubzilla-591349ee7493ad09690900ecd0274ab02809c009.tar.bz2 volse-hubzilla-591349ee7493ad09690900ecd0274ab02809c009.zip |
add the signing algo to zotinfo, and store it in import_xchan() if present
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/Crypto.php | 4 | ||||
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/Zotlabs/Lib/Crypto.php b/Zotlabs/Lib/Crypto.php index f1794ae64..188c6bd81 100644 --- a/Zotlabs/Lib/Crypto.php +++ b/Zotlabs/Lib/Crypto.php @@ -87,6 +87,10 @@ class Crypto { return false; } + if (!$alg) { + $alg = 'sha256'; + } + try { $verify = openssl_verify($data, $sig, $key, $alg); } catch (Exception $e) { diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index 40422a7d8..3003aa516 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -676,6 +676,10 @@ class Libzot { logger('import_xchan: ' . $xchan_hash, LOGGER_DEBUG); + if (isset($arr['signing_algorithm']) && $arr['signing_algorithm']) { + set_xconfig($xchan_hash, 'system', 'signing_algorithm', $arr['signing_algorithm']); + } + $r = q("select * from xchan where xchan_hash = '%s' limit 1", dbesc($xchan_hash) ); @@ -2877,6 +2881,7 @@ class Libzot { ]; $ret['public_key'] = $e['xchan_pubkey']; + $ret['signing_algorithm'] = 'rsa-sha256'; $ret['username'] = $e['channel_address']; $ret['name'] = $e['xchan_name']; $ret['name_updated'] = $e['xchan_name_date']; |