add methods to decrypt return data from router
[GitHub/Stricted/speedport-hybrid-php-api.git] / CryptLib / Key / Key.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 Key {
16
17 const SYMMETRIC = 'symmetric';
18
19 const PUBLICKEY = 'publickey';
20
21 public function __toString();
22
23 public function getType();
24
25 }