add methods to decrypt return data from router
[GitHub/Stricted/speedport-hybrid-php-api.git] / CryptLib / Key / Key.php
diff --git a/CryptLib/Key/Key.php b/CryptLib/Key/Key.php
new file mode 100644 (file)
index 0000000..4551c06
--- /dev/null
@@ -0,0 +1,25 @@
+<?php
+/**
+ * To change this template, choose Tools | Templates
+ * and open the template in the editor.
+ * @version    Build @@version@@
+ */
+
+namespace CryptLib\Key;
+
+/**
+ *
+ * @author ircmaxell
+ * @codeCoverageIgnore
+ */
+interface Key {
+
+    const SYMMETRIC = 'symmetric';
+
+    const PUBLICKEY = 'publickey';
+
+    public function __toString();
+
+    public function getType();
+
+}