add methods to decrypt return data from router
[GitHub/Stricted/speedport-hybrid-php-api.git] / CryptLib / Key / Symmetric.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;
9
10 /**
11 *
12 * @author ircmaxell
13 * @codeCoverageIgnore
14 */
15 interface Symmetric extends Key {
16
17 public function getKey();
18
19 public function saveKey($filename);
20
21 }