diff options
author | Mario <mario@mariovavti.com> | 2021-05-27 08:27:33 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-05-27 08:27:33 +0000 |
commit | 9ea60ba79f41cbe82628292f9010be0c2a06ba05 (patch) | |
tree | f1e1baf6fe5d8cfa048d7a8952d8da060419ee14 /include | |
parent | 43ef82aaaa78cf5b11325183d1a05af1e6888fd0 (diff) | |
download | volse-hubzilla-9ea60ba79f41cbe82628292f9010be0c2a06ba05.tar.gz volse-hubzilla-9ea60ba79f41cbe82628292f9010be0c2a06ba05.tar.bz2 volse-hubzilla-9ea60ba79f41cbe82628292f9010be0c2a06ba05.zip |
deprecate make_xchan_hash()
Diffstat (limited to 'include')
-rw-r--r-- | include/channel.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/channel.php b/include/channel.php index f051ded58..e02467125 100644 --- a/include/channel.php +++ b/include/channel.php @@ -235,10 +235,6 @@ function create_identity($arr) { $guid = Libzot::new_uid($nick); $key = Crypto::new_keypair(4096); - // legacy zot - $zsig = base64url_encode(Crypto::sign($guid,$key['prvkey'])); - $zhash = make_xchan_hash($guid,$zsig); - // zot6 $sig = Libzot::sign($guid,$key['prvkey']); $hash = Libzot::make_xchan_hash($guid,$key['pubkey']); |