-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTransaction.java
More file actions
318 lines (280 loc) · 9.05 KB
/
Transaction.java
File metadata and controls
318 lines (280 loc) · 9.05 KB
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.Arrays;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public class Transaction {
public class Input {
public byte[] prevTxHash; // hash of the Transaction whose output is being used
public int outputIndex; // used output's index in the previous transaction
public byte[] signature; // the signature produced to check validity
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 boolean equals(Object other) {
if (other == null) {
return false;
}
if (getClass() != other.getClass()) {
return false;
}
Input in = (Input) other;
if (prevTxHash.length != in.prevTxHash.length)
return false;
for (int i = 0; i < prevTxHash.length; i++) {
if (prevTxHash[i] != in.prevTxHash[i])
return false;
}
if (outputIndex != in.outputIndex)
return false;
if (signature.length != in.signature.length)
return false;
for (int i = 0; i < signature.length; i++) {
if (signature[i] != in.signature[i])
return false;
}
return true;
}
public int hashCode() {
int hash = 1;
hash = hash * 17 + Arrays.hashCode(prevTxHash);
hash = hash * 31 + outputIndex;
hash = hash * 31 + Arrays.hashCode(signature);
return hash;
}
}
public class Output {
public double value; // value in bitcoins of the output
public RSAKey address; // the address or public key of the recipient
public Output(double v, RSAKey addr) {
value = v;
address = addr;
}
public boolean equals(Object other) {
if (other == null) {
return false;
}
if (getClass() != other.getClass()) {
return false;
}
Output op = (Output) other;
if (value != op.value)
return false;
if (!address.getExponent().equals(op.address.getExponent()))
return false;
if (!address.getModulus().equals(op.address.getModulus()))
return false;
return true;
}
public int hashCode() {
int hash = 1;
hash = hash * 17 + (int)value*10000;
hash = hash * 31 + address.getExponent().hashCode();
hash = hash * 31 + address.getModulus().hashCode();
return hash;
}
}
private byte[] hash; // hash of the transaction, its unique id
private ArrayList<Input> inputs; // inputs
private ArrayList<Output> outputs; // outputs
private boolean coinbase;
public Transaction() {
inputs = new ArrayList<Input>();
outputs = new ArrayList<Output>();
coinbase = false;
}
public Transaction(Transaction tx) {
hash = tx.hash.clone();
inputs = new ArrayList<Input>(tx.inputs);
outputs = new ArrayList<Output>(tx.outputs);
coinbase = false;
}
// create a coinbase transaction of value coin
// also calls finalize on it
public Transaction(double coin, RSAKey address) {
coinbase = true;
inputs = new ArrayList<Input>();
outputs = new ArrayList<Output>();
addOutput(coin, address);
finalize();
}
public boolean isCoinbase() {
return coinbase;
}
public void addInput(byte[] prevTxHash, int outputIndex) {
Input in = new Input(prevTxHash, outputIndex);
inputs.add(in);
}
public void addOutput(double value, RSAKey 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[] addressExponent = op.address.getExponent().toByteArray();
byte[] addressModulus = op.address.getModulus().toByteArray();
for (int i = 0; i < value.length; i++)
sigData.add(value[i]);
for (int i = 0; i < addressExponent.length; i++)
sigData.add(addressExponent[i]);
for (int i = 0; i < addressModulus.length; i++)
sigData.add(addressModulus[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[] addressExponent = op.address.getExponent().toByteArray();
byte[] addressModulus = op.address.getModulus().toByteArray();
for (int i = 0; i < value.length; i++)
rawTx.add(value[i]);
for (int i = 0; i < addressExponent.length; i++)
rawTx.add(addressExponent[i]);
for (int i = 0; i < addressModulus.length; i++)
rawTx.add(addressModulus[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();
}
public boolean equals(Object other) {
if (other == null) {
return false;
}
if (getClass() != other.getClass()) {
return false;
}
Transaction tx = (Transaction) other;
// inputs and outputs should be same
if (tx.numInputs() != numInputs())
return false;
for (int i = 0; i < numInputs(); i++) {
if (!getInput(i).equals(tx.getInput(i)))
return false;
}
if (tx.numOutputs() != numOutputs())
return false;
for (int i = 0; i < numOutputs(); i++) {
if (!getOutput(i).equals(tx.getOutput(i)))
return false;
}
return true;
}
public int hashCode() {
int hash = 1;
for (int i = 0; i < numInputs(); i++) {
hash = hash * 31 + getInput(i).hashCode();
}
for (int i = 0; i < numOutputs(); i++) {
hash = hash * 31 + getOutput(i).hashCode();
}
return hash;
}
}