diff options
author | redmatrix <git@macgirvin.com> | 2016-05-21 18:02:14 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-21 18:02:14 -0700 |
commit | ed56b6e67b27900e2ff413a7781c9095aa8251a0 (patch) | |
tree | d14a411191059ec875b2078ab265119a8ccd29cc /include/zot.php | |
parent | bf050121506aa4cb487d9efd9cfdaa501ada3b1a (diff) | |
download | volse-hubzilla-ed56b6e67b27900e2ff413a7781c9095aa8251a0.tar.gz volse-hubzilla-ed56b6e67b27900e2ff413a7781c9095aa8251a0.tar.bz2 volse-hubzilla-ed56b6e67b27900e2ff413a7781c9095aa8251a0.zip |
first cut at zot-finger request signatures
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/zot.php b/include/zot.php index 54a3fe640..f5fb87e12 100644 --- a/include/zot.php +++ b/include/zot.php @@ -3672,6 +3672,8 @@ function zotinfo($arr) { $zsig = ((x($arr,'target_sig')) ? $arr['target_sig'] : ''); $zkey = ((x($arr,'key')) ? $arr['key'] : ''); $mindate = ((x($arr,'mindate')) ? $arr['mindate'] : ''); + $token = ((x($arr,'token')) ? $arr['token'] : ''); + $feed = ((x($arr,'feed')) ? intval($arr['feed']) : 0); if($ztarget) { @@ -3816,6 +3818,10 @@ function zotinfo($arr) { // Communication details + if($token) + $ret['signed_token'] = base64url_encode(rsa_sign($token,$e['channel_prvkey'])); + + $ret['guid'] = $e['xchan_guid']; $ret['guid_sig'] = $e['xchan_guid_sig']; $ret['key'] = $e['xchan_pubkey']; |