-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlockChain.java
97 lines (71 loc) · 2.88 KB
/
BlockChain.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
package sw2_a2;
import java.util.ArrayList;
import java.util.Scanner;
import com.google.gson.GsonBuilder;
public class BlockChain {
public static ArrayList<Block> blockchain = new ArrayList<Block>();
public static int difficulty = 5;
public static void main(String[] args) {
//adding blocks to the block chain ArrayList
blockchain.add( new Block("Hi I am the first block", "0"));
System.out.println("Mining block 1...");
blockchain.get(0).mineBlock(difficulty);
blockchain.add( new Block("Hi I am the second block",
blockchain.get(blockchain.size() -1 ).hash));
System.out.println("Mining block 2...");
blockchain.get(1).mineBlock(difficulty);
blockchain.add( new Block("Hi I am the third block , Thanks God!",
blockchain.get(blockchain.size() -1).hash));
System.out.println("Mining block 3...");
blockchain.get(2).mineBlock(difficulty);
////////////////////////////////////////////////
String blockchainJson = new GsonBuilder().setPrettyPrinting().create().toJson(blockchain);
System.out.println(blockchainJson);
System.out.println("To check the blockchain's validity press 1");
Scanner sc= new Scanner(System.in);
int inp= sc.nextInt();
if(inp == 1) {
BlockChain c= new BlockChain();
c.isValid();
}
Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
//Create the new wallets
walletA = new Wallet();
walletB = new Wallet();
//Test public and private keys
System.out.println("Private and public keys:");
System.out.println(StringUtil.getStringFromKey(walletA.privateKey));
System.out.println(StringUtil.getStringFromKey(walletA.publicKey));
//Create a test transaction from WalletA to walletB
Transaction transaction = new Transaction(walletA.publicKey, walletB.publicKey, 5, null);
transaction.generateSignature(walletA.privateKey);
//Verify the signature works and verify it from the public key
System.out.println("Is signature verified");
System.out.println(transaction.verifiySignature());
}
public static Boolean isValid() {
Block currentBlock;
Block previousBlock;
String hashTarget= new String(new char[difficulty]).replace('\0','0');
for(int i=1; i < blockchain.size(); i++) {
currentBlock= blockchain.get(i);
previousBlock= blockchain.get(i-1);
//compare registered hash and calculated hash:
if(!currentBlock.hash.equals(currentBlock.calculateHash())) {
System.out.println("Current Hashes not equal");
return false;
}
//compare previous hash and registered previous hash
if(!previousBlock.hash.equals(currentBlock.previousHash)) {
System.out.println("Previous Hashes not equal");
return false;
}
if(!currentBlock.hash.substring(0,difficulty).equals(hashTarget)) {
System.out.println("Block isn't mined !");
return false;
}
}
System.out.println("The blockchain is valid :)");
return true;
}
}