1 | <?php |
||
5 | abstract class AbstractPhpHashAlgorithm implements HashAlgorithmInterface |
||
6 | { |
||
7 | protected $context; |
||
8 | |||
9 | /** |
||
10 | * {@inheritdoc} |
||
11 | */ |
||
12 | public function initialize(): void |
||
16 | |||
17 | /** |
||
18 | * {@inheritdoc} |
||
19 | */ |
||
20 | public function digest(string $buffer): void |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | public function finalize(): string |
||
32 | } |
||
33 |