| 1 | <?php declare(strict_types=1); |
||
| 5 | class Signature |
||
| 6 | { |
||
| 7 | private $baseString; |
||
| 8 | |||
| 9 | private $key; |
||
| 10 | |||
| 11 | 6 | public function __construct(BaseString $baseString, Key $key) |
|
| 12 | { |
||
| 13 | 6 | $this->baseString = $baseString->getString(); |
|
| 14 | 6 | $this->key = $key->getKey(); |
|
| 15 | } |
||
| 16 | |||
| 17 | 6 | public function getSignature(): string |
|
| 21 | } |
||
| 22 |