add methods to decrypt return data from router
[GitHub/Stricted/speedport-hybrid-php-api.git] / CryptLib / Key / Symmetric / Raw.php
1 <?php
2 /**
3 * To change this template, choose Tools | Templates
4 * and open the template in the editor.
5 * @version Build @@version@@
6 */
7
8 namespace CryptLib\Key\Symmetric;
9
10 /**
11 * Description of raw
12 *
13 * @author ircmaxell
14 */
15 class Raw extends AbstractSymmetric {
16
17 public function __construct($key) {
18 $this->key = $key;
19 }
20
21 }
22