aboutsummaryrefslogtreecommitdiffstats
path: root/mod/dfrn_confirm.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/dfrn_confirm.php')
-rw-r--r--mod/dfrn_confirm.php14
1 files changed, 9 insertions, 5 deletions
diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php
index 77f436374..dd50e82a0 100644
--- a/mod/dfrn_confirm.php
+++ b/mod/dfrn_confirm.php
@@ -89,10 +89,6 @@ function dfrn_confirm_post(&$a) {
// or later) then we encrypt the personal public key we send them using AES-256-CBC and a
// random key which is encrypted with their site public key.
- // Note: We can send any of these things as binary blobs because they are being POST'ed.
- // Any protocol conversations (notify, poll) which perform GET require bin2hex of all the
- // binary stuff.
-
$src_aes_key = random_string();
$result = '';
@@ -292,10 +288,18 @@ function dfrn_confirm_post(&$a) {
$public_key = $_POST['public_key'];
$dfrn_id = hex2bin($_POST['dfrn_id']);
$source_url = hex2bin($_POST['source_url']);
- $aes_key = hex2bin($_POST['aes_key']);
+ $aes_key = $_POST['aes_key'];
$duplex = $_POST['duplex'];
$version_id = $_POST['dfrn_version'];
+
+ // If $aes_key is set, both of these items require unpacking from the hex transport encoding.
+
+ if(x($aes_key)) {
+ $aes_key = hex2bin($aes_key);
+ $public_key = hex2bin($public_key);
+ }
+
// Find our user's account
$r = q("SELECT * FROM `user` WHERE `nickname` = '%s' LIMIT 1",