1 | <?php |
||
5 | class StreamHasher |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | private $algo; |
||
11 | |||
12 | /** |
||
13 | * StreamHasher constructor. |
||
14 | * |
||
15 | * @param string $algo |
||
16 | */ |
||
17 | 3 | public function __construct($algo) |
|
21 | |||
22 | /** |
||
23 | * @param $resource |
||
24 | * |
||
25 | * @return string |
||
26 | */ |
||
27 | 3 | public function hash($resource) |
|
36 | } |
||
37 |