1 | <?php |
||
7 | class Md5 implements CryptInterface |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * Hash the given password |
||
12 | * @param string $password |
||
13 | * @return string |
||
14 | */ |
||
15 | 3 | public function hash($password) |
|
19 | |||
20 | /** |
||
21 | * |
||
22 | * @param string $password |
||
23 | * @throws Exception |
||
24 | * @return string |
||
25 | */ |
||
26 | 1 | public function unHash($password) |
|
30 | } |
||
31 |