add methods to decrypt return data from router
[GitHub/Stricted/speedport-hybrid-php-api.git] / CryptLib / Key / Symmetric / Raw.php
diff --git a/CryptLib/Key/Symmetric/Raw.php b/CryptLib/Key/Symmetric/Raw.php
new file mode 100644 (file)
index 0000000..1d68a04
--- /dev/null
@@ -0,0 +1,22 @@
+<?php
+/**
+ * To change this template, choose Tools | Templates
+ * and open the template in the editor.
+ * @version    Build @@version@@
+ */
+
+namespace CryptLib\Key\Symmetric;
+
+/**
+ * Description of raw
+ *
+ * @author ircmaxell
+ */
+class Raw extends AbstractSymmetric {
+
+    public function __construct($key) {
+        $this->key = $key;
+    }
+
+}
+