From d4e53bb86fbeff0dd0b4f069f4fa07993ddf9e65 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Mon, 11 Sep 2017 18:56:17 -0700 Subject: typo in ldsigs --- Zotlabs/Lib/LDSignatures.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Zotlabs/Lib/LDSignatures.php') diff --git a/Zotlabs/Lib/LDSignatures.php b/Zotlabs/Lib/LDSignatures.php index 88dfe80c0..7d468782a 100644 --- a/Zotlabs/Lib/LDSignatures.php +++ b/Zotlabs/Lib/LDSignatures.php @@ -21,6 +21,7 @@ class LDSignatures { } static function sign($data,$channel) { + $options = [ 'type' => 'RsaSignature2017', 'nonce' => random_string(64), @@ -46,7 +47,7 @@ class LDSignatures { if($data) { foreach($data as $k => $v) { if(! in_array($k,[ 'signature' ])) { - $newopts[$k] = $v; + $newdata[$k] = $v; } } } @@ -68,6 +69,7 @@ class LDSignatures { } static function hash($obj) { + return hash('sha256',self::normalise($obj)); } -- cgit v1.2.3