diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-02-20 23:58:17 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-02-20 23:58:17 +0100 |
commit | 85a6dd60316eefbdaf072e59621d681a3cf2546b (patch) | |
tree | 523620e5ffb4417ec7b47befb93110ffb47b2662 /include | |
parent | 6d0b88e242a8b960fb5294d3923e30a6637c619d (diff) | |
parent | b4dad817677dbe23221901752cba60418c05287e (diff) | |
download | volse-hubzilla-85a6dd60316eefbdaf072e59621d681a3cf2546b.tar.gz volse-hubzilla-85a6dd60316eefbdaf072e59621d681a3cf2546b.tar.bz2 volse-hubzilla-85a6dd60316eefbdaf072e59621d681a3cf2546b.zip |
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'include')
-rw-r--r-- | include/crypto.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/crypto.php b/include/crypto.php index 11654564e..ab33ba096 100644 --- a/include/crypto.php +++ b/include/crypto.php @@ -163,7 +163,7 @@ function other_encapsulate($data,$pubkey,$alg) { return $result; } else { - $x = [ 'data' => $data, 'pubkey' => $pubkey, 'alg' => $subalg, 'result' => $data ]; + $x = [ 'data' => $data, 'pubkey' => $pubkey, 'alg' => $alg, 'result' => $data ]; call_hooks('other_encapsulate', $x); return $x['result']; } @@ -246,7 +246,7 @@ function other_unencapsulate($data,$prvkey,$alg) { return $fn(base64url_decode($data['data']),$k,$i); } else { - $x = [ 'data' => $data, 'prvkey' => $prvkey, 'alg' => $subalg, 'result' => $data ]; + $x = [ 'data' => $data, 'prvkey' => $prvkey, 'alg' => $alg, 'result' => $data ]; call_hooks('other_unencapsulate',$x); return $x['result']; } |