add methods to decrypt return data from router
[GitHub/Stricted/speedport-hybrid-php-api.git] / CryptLib / Key / Symmetric.php
diff --git a/CryptLib/Key/Symmetric.php b/CryptLib/Key/Symmetric.php
new file mode 100644 (file)
index 0000000..49ec004
--- /dev/null
@@ -0,0 +1,21 @@
+<?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 Symmetric extends Key {
+
+    public function getKey();
+
+    public function saveKey($filename);
+
+}