| 1 | <?php |
||
| 13 | class RawKeyParams |
||
| 14 | { |
||
| 15 | private $prefix; |
||
| 16 | private $depth; |
||
| 17 | private $fingerprint; |
||
| 18 | private $sequence; |
||
| 19 | private $chainCode; |
||
| 20 | private $keyData; |
||
| 21 | |||
| 22 | 42 | public function __construct($prefix, $depth, $fingerprint, $sequence, BufferInterface $chainCode, BufferInterface $keyData) |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | 42 | public function getPrefix() |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @return int |
||
| 42 | */ |
||
| 43 | 41 | public function getDepth() |
|
| 47 | |||
| 48 | /** |
||
| 49 | * @return int |
||
| 50 | */ |
||
| 51 | 41 | public function getFingerprint() |
|
| 55 | |||
| 56 | /** |
||
| 57 | * @return int |
||
| 58 | */ |
||
| 59 | 41 | public function getSequence() |
|
| 63 | |||
| 64 | /** |
||
| 65 | * @return BufferInterface |
||
| 66 | */ |
||
| 67 | 41 | public function getChainCode() |
|
| 71 | |||
| 72 | /** |
||
| 73 | * @return BufferInterface |
||
| 74 | */ |
||
| 75 | 41 | public function getKeyData() |
|
| 79 | } |
||
| 80 |