diff options
author | friendica <info@friendica.com> | 2013-01-21 19:40:25 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-21 19:40:25 -0800 |
commit | 4119e1f9cc9ebb6a45ec69fd23c1262b3f823c3a (patch) | |
tree | 1ce3be8a257c62eb0f1ebd18b8af8deaf5849ac5 /mod/post.php | |
parent | 5949607d17bceb51d61c73b5c0dbc0fcc063bd04 (diff) | |
download | volse-hubzilla-4119e1f9cc9ebb6a45ec69fd23c1262b3f823c3a.tar.gz volse-hubzilla-4119e1f9cc9ebb6a45ec69fd23c1262b3f823c3a.tar.bz2 volse-hubzilla-4119e1f9cc9ebb6a45ec69fd23c1262b3f823c3a.zip |
testing begins
Diffstat (limited to 'mod/post.php')
-rw-r--r-- | mod/post.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/post.php b/mod/post.php index bfcc99022..7a96bcf7a 100644 --- a/mod/post.php +++ b/mod/post.php @@ -72,8 +72,8 @@ function post_init(&$a) { // Auth packets MUST use ultra top-secret hush-hush mode - $p = zot_build_packet($c[0],$type = 'auth_check',array('guid' => $x[0]['hubloc_guid'],'guid_sig' => $x[0]['hubloc_guid_sig']), $x[0]['hubloc_prvkey'], $sec); - $result = zot_zot($x[0]['hubloc_url'],$p); + $p = zot_build_packet($c[0],$type = 'auth_check',array(array('guid' => $x[0]['hubloc_guid'],'guid_sig' => $x[0]['hubloc_guid_sig'])), $x[0]['hubloc_sitekey'], $sec); + $result = zot_zot($x[0]['hubloc_callback'],$p); if($result['success']) { $j = json_decode($result['body'],true); @@ -276,7 +276,7 @@ function post_post(&$a) { $y = q("select xchan_pubkey from xchan where xchan_hash = '%s' limit 1", dbesc($sender_hash) ); - if((! $y) || (! rsa_verify($data['secret'],$data['secret_sig'],$y[0]['xchan_pubkey']))) { + if((! $y) || (! rsa_verify($data['secret'],base64url_decode($data['secret_sig']),$y[0]['xchan_pubkey']))) { logger('mod_zot: auth_check: sender not found or secret_sig invalid.'); json_return_and_die($ret); } |