-
Notifications
You must be signed in to change notification settings - Fork 5
/
Transaction.java
executable file
·208 lines (181 loc) · 6 KB
/
Transaction.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.Arrays;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.security.PublicKey;
public class Transaction {
public class Input {
/** hash of the Transaction whose output is being used */
public byte[] prevTxHash;
/** used output's index in the previous transaction */
public int outputIndex;
/** the signature produced to check validity */
public byte[] signature;
public Input(byte[] prevHash, int index) {
if (prevHash == null)
prevTxHash = null;
else
prevTxHash = Arrays.copyOf(prevHash, prevHash.length);
outputIndex = index;
}
public void addSignature(byte[] sig) {
if (sig == null)
signature = null;
else
signature = Arrays.copyOf(sig, sig.length);
}
}
public class Output {
/** value in bitcoins of the output */
public double value;
/** the address or public key of the recipient */
public PublicKey address;
public Output(double v, PublicKey addr) {
value = v;
address = addr;
}
}
/** hash of the transaction, its unique id */
private byte[] hash;
private ArrayList<Input> inputs;
private ArrayList<Output> outputs;
public Transaction() {
inputs = new ArrayList<Input>();
outputs = new ArrayList<Output>();
}
public Transaction(Transaction tx) {
hash = tx.hash.clone();
inputs = new ArrayList<Input>(tx.inputs);
outputs = new ArrayList<Output>(tx.outputs);
}
public void addInput(byte[] prevTxHash, int outputIndex) {
Input in = new Input(prevTxHash, outputIndex);
inputs.add(in);
}
public void addOutput(double value, PublicKey address) {
Output op = new Output(value, address);
outputs.add(op);
}
public void removeInput(int index) {
inputs.remove(index);
}
public void removeInput(UTXO ut) {
for (int i = 0; i < inputs.size(); i++) {
Input in = inputs.get(i);
UTXO u = new UTXO(in.prevTxHash, in.outputIndex);
if (u.equals(ut)) {
inputs.remove(i);
return;
}
}
}
public byte[] getRawDataToSign(int index) {
// ith input and all outputs
ArrayList<Byte> sigData = new ArrayList<Byte>();
if (index > inputs.size())
return null;
Input in = inputs.get(index);
byte[] prevTxHash = in.prevTxHash;
ByteBuffer b = ByteBuffer.allocate(Integer.SIZE / 8);
b.putInt(in.outputIndex);
byte[] outputIndex = b.array();
if (prevTxHash != null)
for (int i = 0; i < prevTxHash.length; i++)
sigData.add(prevTxHash[i]);
for (int i = 0; i < outputIndex.length; i++)
sigData.add(outputIndex[i]);
for (Output op : outputs) {
ByteBuffer bo = ByteBuffer.allocate(Double.SIZE / 8);
bo.putDouble(op.value);
byte[] value = bo.array();
byte[] addressBytes = op.address.getEncoded();
for (int i = 0; i < value.length; i++)
sigData.add(value[i]);
for (int i = 0; i < addressBytes.length; i++)
sigData.add(addressBytes[i]);
}
byte[] sigD = new byte[sigData.size()];
int i = 0;
for (Byte sb : sigData)
sigD[i++] = sb;
return sigD;
}
public void addSignature(byte[] signature, int index) {
inputs.get(index).addSignature(signature);
}
public byte[] getRawTx() {
ArrayList<Byte> rawTx = new ArrayList<Byte>();
for (Input in : inputs) {
byte[] prevTxHash = in.prevTxHash;
ByteBuffer b = ByteBuffer.allocate(Integer.SIZE / 8);
b.putInt(in.outputIndex);
byte[] outputIndex = b.array();
byte[] signature = in.signature;
if (prevTxHash != null)
for (int i = 0; i < prevTxHash.length; i++)
rawTx.add(prevTxHash[i]);
for (int i = 0; i < outputIndex.length; i++)
rawTx.add(outputIndex[i]);
if (signature != null)
for (int i = 0; i < signature.length; i++)
rawTx.add(signature[i]);
}
for (Output op : outputs) {
ByteBuffer b = ByteBuffer.allocate(Double.SIZE / 8);
b.putDouble(op.value);
byte[] value = b.array();
byte[] addressBytes = op.address.getEncoded();
for (int i = 0; i < value.length; i++) {
rawTx.add(value[i]);
}
for (int i = 0; i < addressBytes.length; i++) {
rawTx.add(addressBytes[i]);
}
}
byte[] tx = new byte[rawTx.size()];
int i = 0;
for (Byte b : rawTx)
tx[i++] = b;
return tx;
}
public void finalize() {
try {
MessageDigest md = MessageDigest.getInstance("SHA-256");
md.update(getRawTx());
hash = md.digest();
} catch (NoSuchAlgorithmException x) {
x.printStackTrace(System.err);
}
}
public void setHash(byte[] h) {
hash = h;
}
public byte[] getHash() {
return hash;
}
public ArrayList<Input> getInputs() {
return inputs;
}
public ArrayList<Output> getOutputs() {
return outputs;
}
public Input getInput(int index) {
if (index < inputs.size()) {
return inputs.get(index);
}
return null;
}
public Output getOutput(int index) {
if (index < outputs.size()) {
return outputs.get(index);
}
return null;
}
public int numInputs() {
return inputs.size();
}
public int numOutputs() {
return outputs.size();
}
}