aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/ActivityStreams/Signature.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-10-06 08:59:36 +0000
committerMario <mario@mariovavti.com>2024-10-06 08:59:36 +0000
commit19eeadfe5bafb8bdec3ac102d9b9f49593cc0933 (patch)
tree4cedc8629789ce45c733a3a3c7df4ae4d601169e /Zotlabs/ActivityStreams/Signature.php
parent2693e9e99097c4bbcf8c9103a5876bc0585ff84c (diff)
downloadvolse-hubzilla-19eeadfe5bafb8bdec3ac102d9b9f49593cc0933.tar.gz
volse-hubzilla-19eeadfe5bafb8bdec3ac102d9b9f49593cc0933.tar.bz2
volse-hubzilla-19eeadfe5bafb8bdec3ac102d9b9f49593cc0933.zip
port some libs from streams repo
Diffstat (limited to 'Zotlabs/ActivityStreams/Signature.php')
-rw-r--r--Zotlabs/ActivityStreams/Signature.php65
1 files changed, 65 insertions, 0 deletions
diff --git a/Zotlabs/ActivityStreams/Signature.php b/Zotlabs/ActivityStreams/Signature.php
new file mode 100644
index 000000000..e115dd331
--- /dev/null
+++ b/Zotlabs/ActivityStreams/Signature.php
@@ -0,0 +1,65 @@
+<?php
+
+namespace Zotlabs\ActivityStreams;
+
+class Signature extends ASObject
+{
+ public $nonce;
+ public $creator;
+ public $signatureValue;
+
+ /**
+ * @return mixed
+ */
+ public function getCreator()
+ {
+ return $this->creator;
+ }
+
+ /**
+ * @param mixed $creator
+ * @return Signature
+ */
+ public function setCreator($creator)
+ {
+ $this->creator = $creator;
+ return $this;
+ }
+
+ /**
+ * @return mixed
+ */
+ public function getSignatureValue()
+ {
+ return $this->signatureValue;
+ }
+
+ /**
+ * @param mixed $signatureValue
+ * @return Signature
+ */
+ public function setSignatureValue($signatureValue)
+ {
+ $this->signatureValue = $signatureValue;
+ return $this;
+ }
+
+ /**
+ * @return mixed
+ */
+ public function getNonce()
+ {
+ return $this->nonce;
+ }
+
+ /**
+ * @param mixed $nonce
+ * @return Signature
+ */
+ public function setNonce($nonce)
+ {
+ $this->nonce = $nonce;
+ return $this;
+ }
+
+}