aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/stephenhill/base58/src/ServiceInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/stephenhill/base58/src/ServiceInterface.php')
-rw-r--r--vendor/stephenhill/base58/src/ServiceInterface.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/vendor/stephenhill/base58/src/ServiceInterface.php b/vendor/stephenhill/base58/src/ServiceInterface.php
new file mode 100644
index 000000000..0fe374524
--- /dev/null
+++ b/vendor/stephenhill/base58/src/ServiceInterface.php
@@ -0,0 +1,24 @@
+<?php
+
+namespace StephenHill;
+
+interface ServiceInterface
+{
+ /**
+ * Encode a string into base58.
+ *
+ * @param string $string The string you wish to encode.
+ * @since v1.1.0
+ * @return string The Base58 encoded string.
+ */
+ public function encode($string);
+
+ /**
+ * Decode base58 into a PHP string.
+ *
+ * @param string $base58 The base58 encoded string.
+ * @since v1.1.0
+ * @return string Returns the decoded string.
+ */
+ public function decode($base58);
+}