whatsapp

whatsApp

Have any Questions? Enquiry here!
☎ +91-9972364704 LOGIN BLOG
× Home Careers Contact
Back
IMPLEMENTATION OF BLOCK CHAIN USING JAVA
IMPLEMENTATION OF BLOCK CHAIN USING JAVA

Blockchain is the backbone Technology of Digital CryptoCurrency BitCoin. 

 

A Blockchain is a list of records called blocks that are linked together using linked lists and use the cryptographic technique.

Each block contains its own digital fingerprint called Hash, the hash of the previous block, a timestamp and the data of the transaction made, making it more secure towards any kind of data breach.

Therefore, if the data of one block is changed then its hash will also change. If the hash is changed, then its hash will be different from the next block that contains the hash of the previous block affecting all the hashes of the blocks after it. Changing of the hashes and then comparing it with other blocks allows us to check the blockchain.

Recommended: Please try your approach on {IDE} first, before moving on to the solution.

Implementation of the Blockchain: The following are the functions used in the implementation of the blockchain. 

 

Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.  To complete your preparation from learning a language to DS Algo and many more,  please refer Complete Interview Preparation Course.

 

In case you wish to attend live classes with experts, please refer DSA Live Classes for Working Professionals and Competitive Programming Live for Students.

 

Creating Blocks: To create a block, a Block class is implemented. In the class Block: 

hash will contain the hash of the block and

previousHash will contain the hash of the previous block.

String data is used to store the data of the block and

“long timeStamp” is used to store the timestamp of the block. Here long data type is used to store the number of milliseconds.

calculateHash() to generate the hash

Below is the implementation of the class block:

 

// Java implementation for creating

// a block in a Blockchain

   

import java.util.Date;

   

public class Block {

   

    // Every block contains

    // a hash, previous hash and

    // data of the transaction made

    public String hash;

    public String previousHash;

    private String data;

    private long timeStamp;

   

    // Constructor for the block

    public Block(String data,

                 String previousHash)

    {

        this.data = data;

        this.previousHash

            = previousHash;

        this.timeStamp

            = new Date().getTime();

        this.hash

            = calculateHash();

    }

   

    // Function to calculate the hash

    public String calculateHash()

    {

        // Calling the "crypt" class

        // to calculate the hash

        // by using the previous hash,

        // timestamp and the data

        String calculatedhash

            = crypt.sha256(

                previousHash

                + Long.toString(timeStamp)

                + data);

   

        return calculatedhash;

    }

}

Generating Hashes: To generate hash, SHA256 algorithm is used. 

Below is the implementation of the algorithm.

Java

 

// Java program for Generating Hashes

 

import java.security.MessageDigest;

 

public class crypt {

 

    // Function that takes the string input

    // and returns the hashed string.

    public static String sha256(String input)

    {

        try {

            MessageDigest sha

                = MessageDigest

                      .getInstance(

                          "SHA-256");

            int i = 0;

 

            byte[] hash

                = sha.digest(

                    input.getBytes("UTF-8"));

 

            // hexHash will contain

            // the Hexadecimal hash

            StringBuffer hexHash

                = new StringBuffer();

 

            while (i < hash.length) {

                String hex

                    = Integer.toHexString(

                        0xff & hash[i]);

                if (hex.length() == 1)

                    hexHash.append('0');

                hexHash.append(hex);

                i++;

            }

 

            return hexHash.toString();

        }

        catch (Exception e) {

            throw new RuntimeException(e);

        }

    }

}

Storing the blocks: Now, let us store the blocks in the ArrayList of Block type, along with their hash values by calling the constructor of the Block Class.

Java

 

// Java implementation to store

// blocks in an ArrayList

 

import java.util.ArrayList;

 

public class GFG {

 

    // ArrayList to store the blocks

    public static ArrayList<Block> blockchain

        = new ArrayList<Block>();

 

    // Driver code

    public static void main(String[] args)

    {

        // Adding the data to the ArrayList

        blockchain.add(new Block(

            "First block", "0"));

        blockchain.add(new Block(

            "Second block",

            blockchain

                .get(blockchain.size() - 1)

                .hash));

 

        blockchain.add(new Block(

            "Third block",

            blockchain

                .get(blockchain.size() - 1)

                .hash));

 

        blockchain.add(new Block(

            "Fourth block",

            blockchain

                .get(blockchain.size() - 1)

                .hash));

 

        blockchain.add(new Block(

            "Fifth block",

            blockchain

                .get(blockchain.size() - 1)

                .hash));

    }

}

 

Advantages of the Blockchain: 

Blockchain is a distributed network of systems. Therefore, data breaches are very difficult to be carried out.

Since, Blockchain generated hashes of each block, therefore, it is very difficult to carry out malicious attacks.

Data Tampering will change the hash of each block which will make the blockchain invalid

 

 

 

Popular Coures