aboutsummaryrefslogtreecommitdiffstats
path: root/include/zot.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-07-29 18:29:27 -0700
committerfriendica <info@friendica.com>2012-07-29 18:29:27 -0700
commit4824e5b8b8d57ba9af8a5a26f78a5dc90eb714d1 (patch)
tree217a692747878df4b68a6db0cb163eca9024a2b4 /include/zot.php
parenteae7522bc99cc3af0074c189560a66181d2b70a0 (diff)
downloadvolse-hubzilla-4824e5b8b8d57ba9af8a5a26f78a5dc90eb714d1.tar.gz
volse-hubzilla-4824e5b8b8d57ba9af8a5a26f78a5dc90eb714d1.tar.bz2
volse-hubzilla-4824e5b8b8d57ba9af8a5a26f78a5dc90eb714d1.zip
birthdays and events are now notifications
Diffstat (limited to 'include/zot.php')
-rw-r--r--include/zot.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/zot.php b/include/zot.php
index f49af08ad..82bd8c7f1 100644
--- a/include/zot.php
+++ b/include/zot.php
@@ -47,4 +47,10 @@ function zot_get_hubloc($arr,$primary) {
function zot_sign(&$item,$identity) {
$item['signed'] = str_replace(array(" ","\t","\n","\r"),array('','','',''),base64url_encode($item['body'],true));
$item['signature'] = base64url_encode(rsa_sign($item['signed'],$identity['prvkey']));
+}
+
+// Given an item and an identity, verify the signature.
+
+function zot_verify(&$item,$identity) {
+ return rsa_verify($item[signed'],base64url_decode($item['signature']),$identity['pubkey']);
} \ No newline at end of file