aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-11-14 18:14:47 -0800
committerzotlabs <mike@macgirvin.com>2018-11-14 18:14:47 -0800
commitd0f0a74df8835e54b42daf5b96e53eecc0481c71 (patch)
tree472873680fadef63c7a3556a155ae798c8cef133 /Zotlabs
parent65a8965e85853b624f64a03930dfbe39a1a339cc (diff)
downloadvolse-hubzilla-d0f0a74df8835e54b42daf5b96e53eecc0481c71.tar.gz
volse-hubzilla-d0f0a74df8835e54b42daf5b96e53eecc0481c71.tar.bz2
volse-hubzilla-d0f0a74df8835e54b42daf5b96e53eecc0481c71.zip
encrypted header issue
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Web/HTTPSig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Web/HTTPSig.php b/Zotlabs/Web/HTTPSig.php
index 0ec534948..fe0b9428f 100644
--- a/Zotlabs/Web/HTTPSig.php
+++ b/Zotlabs/Web/HTTPSig.php
@@ -401,7 +401,7 @@ class HTTPSig {
$data = $matches[1];
if($iv && $key && $alg && $data) {
- return crypto_unencapsulate([ 'iv' => $iv, 'key' => $key, 'alg' => $alg, 'data' => $data ] , $prvkey);
+ return crypto_unencapsulate([ 'encrypted' => true, 'iv' => $iv, 'key' => $key, 'alg' => $alg, 'data' => $data ] , $prvkey);
}
return '';