|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace BitWasp\Bitcoin\Script\ScriptInfo; |
|
4
|
|
|
|
|
5
|
|
|
use BitWasp\Bitcoin\Crypto\EcAdapter\Key\PublicKeyInterface; |
|
6
|
|
|
use BitWasp\Bitcoin\Script\Opcodes; |
|
7
|
|
|
use BitWasp\Bitcoin\Script\Parser\Operation; |
|
8
|
|
|
use BitWasp\Bitcoin\Script\ScriptInterface; |
|
9
|
|
|
use BitWasp\Bitcoin\Script\ScriptType; |
|
10
|
|
|
use BitWasp\Buffertools\BufferInterface; |
|
11
|
|
|
|
|
12
|
|
|
class PayToPubkeyHash |
|
13
|
|
|
{ |
|
14
|
|
|
|
|
15
|
|
|
/** |
|
16
|
|
|
* @var BufferInterface |
|
17
|
|
|
*/ |
|
18
|
|
|
private $hash; |
|
19
|
|
|
|
|
20
|
|
|
/** |
|
21
|
|
|
* @var bool |
|
22
|
|
|
*/ |
|
23
|
|
|
private $verify; |
|
24
|
|
|
|
|
25
|
|
|
/** |
|
26
|
|
|
* PayToPubkeyHash constructor. |
|
27
|
|
|
* @param $opcode |
|
28
|
|
|
* @param BufferInterface $hash160 |
|
29
|
|
|
* @param bool $allowVerify |
|
30
|
|
|
*/ |
|
31
|
44 |
|
public function __construct($opcode, BufferInterface $hash160, $allowVerify = false) |
|
32
|
|
|
{ |
|
33
|
44 |
|
if ($hash160->getSize() !== 20) { |
|
34
|
|
|
throw new \RuntimeException('Malformed pay-to-pubkey-hash script'); |
|
35
|
|
|
} |
|
36
|
|
|
|
|
37
|
44 |
|
if ($opcode === Opcodes::OP_CHECKSIG) { |
|
38
|
44 |
|
$verify = false; |
|
39
|
|
|
} else if ($allowVerify && $opcode === Opcodes::OP_CHECKSIGVERIFY) { |
|
40
|
|
|
$verify = true; |
|
41
|
|
|
} else { |
|
42
|
|
|
throw new \RuntimeException("Malformed pay-to-pubkey-hash script - invalid opcode"); |
|
43
|
|
|
} |
|
44
|
|
|
|
|
45
|
44 |
|
$this->hash = $hash160; |
|
46
|
44 |
|
$this->opcode = $opcode; |
|
|
|
|
|
|
47
|
44 |
|
$this->verify = $verify; |
|
48
|
44 |
|
} |
|
49
|
|
|
|
|
50
|
|
|
/** |
|
51
|
|
|
* @param Operation[] $chunks |
|
52
|
|
|
* @param bool $allowVerify |
|
53
|
|
|
* @return static |
|
54
|
|
|
*/ |
|
55
|
138 |
|
public static function fromDecodedScript(array $chunks, $allowVerify = false) |
|
56
|
|
|
{ |
|
57
|
138 |
|
if (count($chunks) !== 5) { |
|
58
|
136 |
|
throw new \RuntimeException('Malformed pay-to-pubkey-hash script'); |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
80 |
|
if ($chunks[0]->getOp() !== Opcodes::OP_DUP |
|
62
|
44 |
|
|| $chunks[1]->getOp() !== Opcodes::OP_HASH160 |
|
63
|
80 |
|
|| $chunks[3]->getOp() !== Opcodes::OP_EQUALVERIFY |
|
64
|
|
|
) { |
|
65
|
36 |
|
throw new \RuntimeException('Malformed pay-to-pubkey-hash script'); |
|
66
|
|
|
} |
|
67
|
|
|
|
|
68
|
44 |
|
return new static($chunks[4]->getOp(), $chunks[2]->getData(), $allowVerify); |
|
69
|
|
|
} |
|
70
|
|
|
|
|
71
|
|
|
/** |
|
72
|
|
|
* @param ScriptInterface $script |
|
73
|
|
|
* @param bool $allowVerify |
|
74
|
|
|
* @return PayToPubkeyHash |
|
75
|
|
|
*/ |
|
76
|
2 |
|
public static function fromScript(ScriptInterface $script, $allowVerify = false) |
|
77
|
|
|
{ |
|
78
|
2 |
|
return self::fromDecodedScript($script->getScriptParser()->decode(), $allowVerify); |
|
79
|
|
|
} |
|
80
|
|
|
|
|
81
|
4 |
|
public function getType() |
|
82
|
|
|
{ |
|
83
|
4 |
|
return ScriptType::P2PK; |
|
84
|
|
|
} |
|
85
|
|
|
|
|
86
|
|
|
/** |
|
87
|
|
|
* @return int |
|
88
|
|
|
*/ |
|
89
|
44 |
|
public function getRequiredSigCount() |
|
90
|
|
|
{ |
|
91
|
44 |
|
return 1; |
|
92
|
|
|
} |
|
93
|
|
|
|
|
94
|
|
|
/** |
|
95
|
|
|
* @return int |
|
96
|
|
|
*/ |
|
97
|
2 |
|
public function getKeyCount() |
|
98
|
|
|
{ |
|
99
|
2 |
|
return 1; |
|
100
|
|
|
} |
|
101
|
|
|
|
|
102
|
|
|
/** |
|
103
|
|
|
* @return bool |
|
104
|
|
|
*/ |
|
105
|
36 |
|
public function isChecksigVerify() |
|
106
|
|
|
{ |
|
107
|
36 |
|
return $this->verify; |
|
108
|
|
|
} |
|
109
|
|
|
|
|
110
|
|
|
/** |
|
111
|
|
|
* @param PublicKeyInterface $publicKey |
|
112
|
|
|
* @return bool |
|
113
|
|
|
*/ |
|
114
|
2 |
|
public function checkInvolvesKey(PublicKeyInterface $publicKey) |
|
115
|
|
|
{ |
|
116
|
2 |
|
return $publicKey->getPubKeyHash()->equals($this->hash); |
|
117
|
|
|
} |
|
118
|
|
|
|
|
119
|
|
|
/** |
|
120
|
|
|
* @return BufferInterface |
|
121
|
|
|
*/ |
|
122
|
44 |
|
public function getPubKeyHash() |
|
123
|
|
|
{ |
|
124
|
44 |
|
return $this->hash; |
|
125
|
|
|
} |
|
126
|
|
|
} |
|
127
|
|
|
|
In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:
Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion: