SlideShare a Scribd company logo
1 of 24
Download to read offline
Blockchain Technologies
BABU PALLAM
2017CS18
M.tech, 2nd Year, Computer Science and Engineering(CSED)
Motilal Nehru National Institute of Technology Allahabad
October 15, 2018
Contents
1 Introduction
What is blockchain?
Why do we need blockchain?
2 Blockchain fundamentals
Architecture
How blockchain works?
3 Blockchain underlying technologies
4 Case Study: BIDaaS
5 Conclusion
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 2 / 22
What is blockchain ?
It is a distributed ledger technology, developed by Satoshi Nakamoto,
in 2008, through the invention of Bitcoin.
Different perspectives:
It is a data structure.
It is an abstract data type.
It is a technology.
It is an umbrella term.
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 3 / 22
Why do we need blockchain?
A new social adequate is being created!
Centralization to decentralization.
Untrusted environment require documentation.
Characteristics of blockchain:
It is immutable.
It provides security and resilient towards tampering.
It is always consistent.
It provides decentralized computing platform.
It provides cent per cent uptime of data.
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 4 / 22
Blockchain Architecture
Communication medium: Internet.
Decentralised network: Peer to peer
network.
Decentralised storage: Distributed
ledger.
Decentralised law: Consensus
algorithms.
Decentralised apps.: Interface between
the user.
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 5 / 22
How blockchain works?
Tasks need to be addressed:
1 Transaction generation
2 Storing the transactions
3 Preparing trustworthy environment
4 Distributing blocks and transactions
5 Updating ledger by new transactions or blocks
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 6 / 22
How blockchain works?
1 Transaction generation
Signing the transaction
At sender(A) side:
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 7 / 22
How blockchain works?
1 Transaction generation
Verifying the transaction
At recipient side:
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 8 / 22
How blockchain works?
2 Storing the transactions
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 9 / 22
How blockchain works?
3 Preparing trustworthy environment
Goal: Blockchain should be immutable.
Idea:
Consensus is computationally expensive.
Merkle tree makes manipulation easily noticable.
4 Distributing blocks and transactions
Goal: How do the nodes observe new transactions and blocks?
Idea:
Messages send in a gossip style.
Timestamp in each transaction helps node to order and ignore
duplicates.
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 10 / 22
How blockchain works?
Concensus algorithm: Proof of work
1 Get the Merkle root from tree of transactions to be added.
2 Create previous hash reference.
3 set difficulty-level = number of zeros preceded by the hash.
4 Get timestamp.
5 Set nonce = 0.
6 Apply hash puzzle: Find the hash of block header by varying nonce, so
that number of zeros at the first place of hash should be equal to
difficulty-level.
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 11 / 22
How blockchain works?
5 Updating ledger by new transactions or blocks
1 Node takes new transaction/block from mailbox and start processing.
2 In case of new transactions:
1 The node will verify each transaction.
2 If its invalid, node will discard it.
3 Perform proof of work with valid transactions
4 Broadcasts newly created block to the network.
3 In case of new blocks:
1 Verify all the transactions includes in it and proof of work.
2 Once it verified and is valid, update the local ledger
3 Once it verified and is invalid, discard it.
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 12 / 22
Blockchain underlying technologies
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 13 / 22
Blockchain underlying technologies
1. Encryption
Encryption: A way to acheive data security.
Encryption in blockchain: Provides data security.
Independent existence: Anywhere in digital world.
Blockchain without Encryption: loss data security.
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 13 / 22
Blockchain underlying technologies
1. Encryption
Encryption: A way to acheive data security.
Encryption in blockchain: Provides data security.
Independent existence: Anywhere in digital world.
Blockchain without Encryption: loss data security.
2. Smart contract
Smart contract: Self exicuting script.
Smart contract in blockchain: Helps to create business logic.
Independent existence: Can be implemented.
Blockchain without Smart contract: Possible.
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 13 / 22
Blockchain underlying technologies
3. Distributed ledger
Distributed ledger: A consensually shared and synchronized database
across a network.
Distributed ledger in blockchain: Ensures data consistency.
Independent existence: Yes, possible.
Phase King algorithm for BFT.
Distributed lock service by google.
Blockchain without distributed ledger: Possible, it is not mandatory.
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 14 / 22
Case Study: Blockchain based ID as a Service
BIDaaS Infrastructure
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 15 / 22
Case Study: Blockchain based ID as a Service
The terms associated with the entities:
Virtual ID of user Uusr
Private key of User Kusr
pri
Public key of User Kusr
pub
Private key of Partner Kptn
pri
Public key of Partner Kptn
pub
Private key of BIDaaS provider Kpro
pri
Public key of BIDaaS provider Kpro
pub
Encryption with private key EKpri
()
Decryption with public key DKpub
()
nonce r
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 16 / 22
Case Study: Blockchain based ID as a Service
User virtual ID creation: User generates the virtual ID from its
private key
Uusr = SHA256(Kusr
pri )
User Registration:
(Kusr
pub, Uusr , EKpro
pri
(Kusr
pub, Uusr ))
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 17 / 22
Case Study: Blockchain based ID as a Service
Mutual authentication:
User sends its virtual id and a nonce value to the associated partner.
M1 = (Uusr
, r, EKusr
pri
(Uusr
, r))
The partner validates M1:
DKusr
pub
(EKusr
pri
(Uusr
, r))
The provider sends response message M2 back to the user.
M2 = (Uusr
, r + 1, EKusr
pub
(Uusr
, r + 1, Kptn
pub))
User validates M2 using r + 1. After validation, the user sends M3 as
acknowledgement.
M3 = (Uusr
, r + 2, EKptn
pub
(Uusr
, r + 2))
The partner validates M3, then mutual authentication is successful.
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 18 / 22
Case Study: Blockchain based ID as a Service
Real world example with BIDaaS infrastructure:
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 19 / 22
Conclusion
Blockchain is unlocked a new paradigm for distributed computing and
applications.
The underlying technologies and new innovations make the
blockchain revolution without blockchain.
The future of blockchain would probably be a decentralized Internet,
in turn a decentralized society.
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 20 / 22
References
By Hanna Halaburda
Blockchain Revolution Without the Blockchain?
Communications of the ACM, July 2018, Vol. 61 No. 7, Pages 27-29
10.1145/3225619.
Johg-Hyouk Lee
BIDaaS: Blockchain Based ID As a Service
IEEE Access ( Volume: 6 ) 2169-3536 10.1109/ACCESS.2017.2782733.
By Satoshi Nakamoto
Bitcoin: A Peer-to-Peer Electronic Cash System
www.bitcoin.org.
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 21 / 22
Thank You
BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 22 / 22

More Related Content

What's hot

Blockchain technology
Blockchain technologyBlockchain technology
Blockchain technologyhellygeorge
 
Overview of blockchain technology and architecture
Overview of blockchain technology and   architectureOverview of blockchain technology and   architecture
Overview of blockchain technology and architectureEY
 
Blockchain
BlockchainBlockchain
BlockchainSai Nath
 
Blockchain in Banking, Business and Beyond
Blockchain in Banking, Business and BeyondBlockchain in Banking, Business and Beyond
Blockchain in Banking, Business and BeyondMichael Novak
 
Blockchain: The New Technology and Its Applications for Libraries
Blockchain: The New Technology and Its Applications for LibrariesBlockchain: The New Technology and Its Applications for Libraries
Blockchain: The New Technology and Its Applications for LibrariesBohyun Kim
 
Blockchain 101 by imran bashir
Blockchain 101  by imran bashirBlockchain 101  by imran bashir
Blockchain 101 by imran bashirImran Bashir
 
Blockchain: The Information Technology of the Future
Blockchain: The Information Technology of the FutureBlockchain: The Information Technology of the Future
Blockchain: The Information Technology of the FutureMelanie Swan
 
Doing Business of Blockchain in India
Doing Business of Blockchain in IndiaDoing Business of Blockchain in India
Doing Business of Blockchain in IndiaEquiCorp Associates
 
Blockchain Technology Fundamentals
Blockchain Technology FundamentalsBlockchain Technology Fundamentals
Blockchain Technology FundamentalsExperfy
 
An Introduction to Blockchain Technology
An Introduction to Blockchain Technology An Introduction to Blockchain Technology
An Introduction to Blockchain Technology Niuversity
 
Blockchain Technology
Blockchain TechnologyBlockchain Technology
Blockchain TechnologyRashi Singh
 
Blockchain Technology And Cryptocurrency
Blockchain Technology And CryptocurrencyBlockchain Technology And Cryptocurrency
Blockchain Technology And CryptocurrencyEno Bassey
 

What's hot (20)

Blockchain technology
Blockchain technologyBlockchain technology
Blockchain technology
 
Overview of blockchain technology and architecture
Overview of blockchain technology and   architectureOverview of blockchain technology and   architecture
Overview of blockchain technology and architecture
 
Blockchain
BlockchainBlockchain
Blockchain
 
Blockchain in Banking, Business and Beyond
Blockchain in Banking, Business and BeyondBlockchain in Banking, Business and Beyond
Blockchain in Banking, Business and Beyond
 
Blockchain: The New Technology and Its Applications for Libraries
Blockchain: The New Technology and Its Applications for LibrariesBlockchain: The New Technology and Its Applications for Libraries
Blockchain: The New Technology and Its Applications for Libraries
 
Blockchain 101 by imran bashir
Blockchain 101  by imran bashirBlockchain 101  by imran bashir
Blockchain 101 by imran bashir
 
BLOCKCHAIN
BLOCKCHAINBLOCKCHAIN
BLOCKCHAIN
 
Blockchain: The Information Technology of the Future
Blockchain: The Information Technology of the FutureBlockchain: The Information Technology of the Future
Blockchain: The Information Technology of the Future
 
Blockchain ppt
Blockchain pptBlockchain ppt
Blockchain ppt
 
Blockchain concepts
Blockchain conceptsBlockchain concepts
Blockchain concepts
 
Doing Business of Blockchain in India
Doing Business of Blockchain in IndiaDoing Business of Blockchain in India
Doing Business of Blockchain in India
 
Blockchain Technology Fundamentals
Blockchain Technology FundamentalsBlockchain Technology Fundamentals
Blockchain Technology Fundamentals
 
An Introduction to Blockchain Technology
An Introduction to Blockchain Technology An Introduction to Blockchain Technology
An Introduction to Blockchain Technology
 
Blockchain Technology
Blockchain TechnologyBlockchain Technology
Blockchain Technology
 
Blockchain and Banking
Blockchain and BankingBlockchain and Banking
Blockchain and Banking
 
Blockchain
BlockchainBlockchain
Blockchain
 
Blockchain
BlockchainBlockchain
Blockchain
 
Blockchain Basics
Blockchain BasicsBlockchain Basics
Blockchain Basics
 
Blockchain
BlockchainBlockchain
Blockchain
 
Blockchain Technology And Cryptocurrency
Blockchain Technology And CryptocurrencyBlockchain Technology And Cryptocurrency
Blockchain Technology And Cryptocurrency
 

Similar to Blockchain

Paradigm shift: from the bitcoin Blockchain to Networked Computing
Paradigm shift: from the bitcoin Blockchain to Networked ComputingParadigm shift: from the bitcoin Blockchain to Networked Computing
Paradigm shift: from the bitcoin Blockchain to Networked Computingkumar641
 
Real-life Application of a Decentralized System
Real-life Application of a Decentralized SystemReal-life Application of a Decentralized System
Real-life Application of a Decentralized SystemIRJET Journal
 
Blockchain: The Game-changer To Radically Transform Your Business
Blockchain: The Game-changer To Radically Transform Your Business Blockchain: The Game-changer To Radically Transform Your Business
Blockchain: The Game-changer To Radically Transform Your Business Emma Jhonson
 
Blockchain based Banking System
Blockchain based Banking SystemBlockchain based Banking System
Blockchain based Banking SystemGaurav Singh
 
IRJET- Blockchain Technology
IRJET- Blockchain TechnologyIRJET- Blockchain Technology
IRJET- Blockchain TechnologyIRJET Journal
 
Improved Particle Swarm Optimization Based on Blockchain Mechanism for Flexib...
Improved Particle Swarm Optimization Based on Blockchain Mechanism for Flexib...Improved Particle Swarm Optimization Based on Blockchain Mechanism for Flexib...
Improved Particle Swarm Optimization Based on Blockchain Mechanism for Flexib...BRNSSPublicationHubI
 
Blockchain Technology
Blockchain TechnologyBlockchain Technology
Blockchain TechnologySyedMahammad1
 
Blockchain Technology
Blockchain TechnologyBlockchain Technology
Blockchain TechnologyMahammad Syed
 
Blockchain: The New Technology of Trust
Blockchain: The New Technology of TrustBlockchain: The New Technology of Trust
Blockchain: The New Technology of TrustMarco Segato
 
Executive summary guild42 elca_blockchain.pptx_v1.0
Executive summary guild42 elca_blockchain.pptx_v1.0Executive summary guild42 elca_blockchain.pptx_v1.0
Executive summary guild42 elca_blockchain.pptx_v1.0Nagib Aouini
 
Diseño del Smart Contract Blockchain: ejemplo para Real Estate
Diseño del Smart Contract Blockchain: ejemplo para Real EstateDiseño del Smart Contract Blockchain: ejemplo para Real Estate
Diseño del Smart Contract Blockchain: ejemplo para Real EstateJosé Luis Casal
 
SpaceChain - Blockchain in Space
SpaceChain - Blockchain in SpaceSpaceChain - Blockchain in Space
SpaceChain - Blockchain in SpaceAlecHo7
 
Insight Into Cryptocurrencies - Methods and Tools for Analyzing Blockchain-ba...
Insight Into Cryptocurrencies - Methods and Tools for Analyzing Blockchain-ba...Insight Into Cryptocurrencies - Methods and Tools for Analyzing Blockchain-ba...
Insight Into Cryptocurrencies - Methods and Tools for Analyzing Blockchain-ba...Bernhard Haslhofer
 
blockchain and insurance.pdf
blockchain and insurance.pdfblockchain and insurance.pdf
blockchain and insurance.pdfakshay pateriya
 
BLOCKCHAIN-BASED SMART CONTRACTS : A SYSTEMATIC MAPPING STUDY
BLOCKCHAIN-BASED SMART CONTRACTS : A SYSTEMATIC MAPPING STUDY BLOCKCHAIN-BASED SMART CONTRACTS : A SYSTEMATIC MAPPING STUDY
BLOCKCHAIN-BASED SMART CONTRACTS : A SYSTEMATIC MAPPING STUDY csandit
 

Similar to Blockchain (20)

Paradigm shift: from the bitcoin Blockchain to Networked Computing
Paradigm shift: from the bitcoin Blockchain to Networked ComputingParadigm shift: from the bitcoin Blockchain to Networked Computing
Paradigm shift: from the bitcoin Blockchain to Networked Computing
 
Real-life Application of a Decentralized System
Real-life Application of a Decentralized SystemReal-life Application of a Decentralized System
Real-life Application of a Decentralized System
 
Blockchain: The Game-changer To Radically Transform Your Business
Blockchain: The Game-changer To Radically Transform Your Business Blockchain: The Game-changer To Radically Transform Your Business
Blockchain: The Game-changer To Radically Transform Your Business
 
Blockchain based Banking System
Blockchain based Banking SystemBlockchain based Banking System
Blockchain based Banking System
 
IRJET- Blockchain Technology
IRJET- Blockchain TechnologyIRJET- Blockchain Technology
IRJET- Blockchain Technology
 
Improved Particle Swarm Optimization Based on Blockchain Mechanism for Flexib...
Improved Particle Swarm Optimization Based on Blockchain Mechanism for Flexib...Improved Particle Swarm Optimization Based on Blockchain Mechanism for Flexib...
Improved Particle Swarm Optimization Based on Blockchain Mechanism for Flexib...
 
Blockchain Technology
Blockchain TechnologyBlockchain Technology
Blockchain Technology
 
Blockchain Technology
Blockchain TechnologyBlockchain Technology
Blockchain Technology
 
Blockchain Technology
Blockchain TechnologyBlockchain Technology
Blockchain Technology
 
CIKMTutorial.pdf
CIKMTutorial.pdfCIKMTutorial.pdf
CIKMTutorial.pdf
 
Blockchain: The New Technology of Trust
Blockchain: The New Technology of TrustBlockchain: The New Technology of Trust
Blockchain: The New Technology of Trust
 
Blockchain technology
Blockchain technologyBlockchain technology
Blockchain technology
 
Blockchain
BlockchainBlockchain
Blockchain
 
Executive summary guild42 elca_blockchain.pptx_v1.0
Executive summary guild42 elca_blockchain.pptx_v1.0Executive summary guild42 elca_blockchain.pptx_v1.0
Executive summary guild42 elca_blockchain.pptx_v1.0
 
Diseño del Smart Contract Blockchain: ejemplo para Real Estate
Diseño del Smart Contract Blockchain: ejemplo para Real EstateDiseño del Smart Contract Blockchain: ejemplo para Real Estate
Diseño del Smart Contract Blockchain: ejemplo para Real Estate
 
SpaceChain - Blockchain in Space
SpaceChain - Blockchain in SpaceSpaceChain - Blockchain in Space
SpaceChain - Blockchain in Space
 
Blockchain_101.pdf
Blockchain_101.pdfBlockchain_101.pdf
Blockchain_101.pdf
 
Insight Into Cryptocurrencies - Methods and Tools for Analyzing Blockchain-ba...
Insight Into Cryptocurrencies - Methods and Tools for Analyzing Blockchain-ba...Insight Into Cryptocurrencies - Methods and Tools for Analyzing Blockchain-ba...
Insight Into Cryptocurrencies - Methods and Tools for Analyzing Blockchain-ba...
 
blockchain and insurance.pdf
blockchain and insurance.pdfblockchain and insurance.pdf
blockchain and insurance.pdf
 
BLOCKCHAIN-BASED SMART CONTRACTS : A SYSTEMATIC MAPPING STUDY
BLOCKCHAIN-BASED SMART CONTRACTS : A SYSTEMATIC MAPPING STUDY BLOCKCHAIN-BASED SMART CONTRACTS : A SYSTEMATIC MAPPING STUDY
BLOCKCHAIN-BASED SMART CONTRACTS : A SYSTEMATIC MAPPING STUDY
 

Recently uploaded

在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查ydyuyu
 
一比一原版田纳西大学毕业证如何办理
一比一原版田纳西大学毕业证如何办理一比一原版田纳西大学毕业证如何办理
一比一原版田纳西大学毕业证如何办理F
 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdfMatthew Sinclair
 
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsMonica Sydney
 
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...kajalverma014
 
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制pxcywzqs
 
Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.krishnachandrapal52
 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdfMatthew Sinclair
 
Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...
Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...
Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...meghakumariji156
 
一比一原版奥兹学院毕业证如何办理
一比一原版奥兹学院毕业证如何办理一比一原版奥兹学院毕业证如何办理
一比一原版奥兹学院毕业证如何办理F
 
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girlsRussian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girlsMonica Sydney
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtrahman018755
 
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样ayvbos
 
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsIndian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsMonica Sydney
 
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样ayvbos
 
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查ydyuyu
 
Best SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency DallasBest SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency DallasDigicorns Technologies
 
Call girls Service in Ajman 0505086370 Ajman call girls
Call girls Service in Ajman 0505086370 Ajman call girlsCall girls Service in Ajman 0505086370 Ajman call girls
Call girls Service in Ajman 0505086370 Ajman call girlsMonica Sydney
 

Recently uploaded (20)

在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
 
一比一原版田纳西大学毕业证如何办理
一比一原版田纳西大学毕业证如何办理一比一原版田纳西大学毕业证如何办理
一比一原版田纳西大学毕业证如何办理
 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf
 
call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7
call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7
call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7
 
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
 
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
 
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
 
Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.
 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
 
Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...
Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...
Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...
 
一比一原版奥兹学院毕业证如何办理
一比一原版奥兹学院毕业证如何办理一比一原版奥兹学院毕业证如何办理
一比一原版奥兹学院毕业证如何办理
 
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girlsRussian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
 
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsIndian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
 
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
 
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
 
Best SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency DallasBest SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency Dallas
 
Call girls Service in Ajman 0505086370 Ajman call girls
Call girls Service in Ajman 0505086370 Ajman call girlsCall girls Service in Ajman 0505086370 Ajman call girls
Call girls Service in Ajman 0505086370 Ajman call girls
 

Blockchain

  • 1. Blockchain Technologies BABU PALLAM 2017CS18 M.tech, 2nd Year, Computer Science and Engineering(CSED) Motilal Nehru National Institute of Technology Allahabad October 15, 2018
  • 2. Contents 1 Introduction What is blockchain? Why do we need blockchain? 2 Blockchain fundamentals Architecture How blockchain works? 3 Blockchain underlying technologies 4 Case Study: BIDaaS 5 Conclusion BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 2 / 22
  • 3. What is blockchain ? It is a distributed ledger technology, developed by Satoshi Nakamoto, in 2008, through the invention of Bitcoin. Different perspectives: It is a data structure. It is an abstract data type. It is a technology. It is an umbrella term. BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 3 / 22
  • 4. Why do we need blockchain? A new social adequate is being created! Centralization to decentralization. Untrusted environment require documentation. Characteristics of blockchain: It is immutable. It provides security and resilient towards tampering. It is always consistent. It provides decentralized computing platform. It provides cent per cent uptime of data. BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 4 / 22
  • 5. Blockchain Architecture Communication medium: Internet. Decentralised network: Peer to peer network. Decentralised storage: Distributed ledger. Decentralised law: Consensus algorithms. Decentralised apps.: Interface between the user. BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 5 / 22
  • 6. How blockchain works? Tasks need to be addressed: 1 Transaction generation 2 Storing the transactions 3 Preparing trustworthy environment 4 Distributing blocks and transactions 5 Updating ledger by new transactions or blocks BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 6 / 22
  • 7. How blockchain works? 1 Transaction generation Signing the transaction At sender(A) side: BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 7 / 22
  • 8. How blockchain works? 1 Transaction generation Verifying the transaction At recipient side: BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 8 / 22
  • 9. How blockchain works? 2 Storing the transactions BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 9 / 22
  • 10. How blockchain works? 3 Preparing trustworthy environment Goal: Blockchain should be immutable. Idea: Consensus is computationally expensive. Merkle tree makes manipulation easily noticable. 4 Distributing blocks and transactions Goal: How do the nodes observe new transactions and blocks? Idea: Messages send in a gossip style. Timestamp in each transaction helps node to order and ignore duplicates. BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 10 / 22
  • 11. How blockchain works? Concensus algorithm: Proof of work 1 Get the Merkle root from tree of transactions to be added. 2 Create previous hash reference. 3 set difficulty-level = number of zeros preceded by the hash. 4 Get timestamp. 5 Set nonce = 0. 6 Apply hash puzzle: Find the hash of block header by varying nonce, so that number of zeros at the first place of hash should be equal to difficulty-level. BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 11 / 22
  • 12. How blockchain works? 5 Updating ledger by new transactions or blocks 1 Node takes new transaction/block from mailbox and start processing. 2 In case of new transactions: 1 The node will verify each transaction. 2 If its invalid, node will discard it. 3 Perform proof of work with valid transactions 4 Broadcasts newly created block to the network. 3 In case of new blocks: 1 Verify all the transactions includes in it and proof of work. 2 Once it verified and is valid, update the local ledger 3 Once it verified and is invalid, discard it. BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 12 / 22
  • 13. Blockchain underlying technologies BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 13 / 22
  • 14. Blockchain underlying technologies 1. Encryption Encryption: A way to acheive data security. Encryption in blockchain: Provides data security. Independent existence: Anywhere in digital world. Blockchain without Encryption: loss data security. BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 13 / 22
  • 15. Blockchain underlying technologies 1. Encryption Encryption: A way to acheive data security. Encryption in blockchain: Provides data security. Independent existence: Anywhere in digital world. Blockchain without Encryption: loss data security. 2. Smart contract Smart contract: Self exicuting script. Smart contract in blockchain: Helps to create business logic. Independent existence: Can be implemented. Blockchain without Smart contract: Possible. BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 13 / 22
  • 16. Blockchain underlying technologies 3. Distributed ledger Distributed ledger: A consensually shared and synchronized database across a network. Distributed ledger in blockchain: Ensures data consistency. Independent existence: Yes, possible. Phase King algorithm for BFT. Distributed lock service by google. Blockchain without distributed ledger: Possible, it is not mandatory. BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 14 / 22
  • 17. Case Study: Blockchain based ID as a Service BIDaaS Infrastructure BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 15 / 22
  • 18. Case Study: Blockchain based ID as a Service The terms associated with the entities: Virtual ID of user Uusr Private key of User Kusr pri Public key of User Kusr pub Private key of Partner Kptn pri Public key of Partner Kptn pub Private key of BIDaaS provider Kpro pri Public key of BIDaaS provider Kpro pub Encryption with private key EKpri () Decryption with public key DKpub () nonce r BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 16 / 22
  • 19. Case Study: Blockchain based ID as a Service User virtual ID creation: User generates the virtual ID from its private key Uusr = SHA256(Kusr pri ) User Registration: (Kusr pub, Uusr , EKpro pri (Kusr pub, Uusr )) BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 17 / 22
  • 20. Case Study: Blockchain based ID as a Service Mutual authentication: User sends its virtual id and a nonce value to the associated partner. M1 = (Uusr , r, EKusr pri (Uusr , r)) The partner validates M1: DKusr pub (EKusr pri (Uusr , r)) The provider sends response message M2 back to the user. M2 = (Uusr , r + 1, EKusr pub (Uusr , r + 1, Kptn pub)) User validates M2 using r + 1. After validation, the user sends M3 as acknowledgement. M3 = (Uusr , r + 2, EKptn pub (Uusr , r + 2)) The partner validates M3, then mutual authentication is successful. BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 18 / 22
  • 21. Case Study: Blockchain based ID as a Service Real world example with BIDaaS infrastructure: BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 19 / 22
  • 22. Conclusion Blockchain is unlocked a new paradigm for distributed computing and applications. The underlying technologies and new innovations make the blockchain revolution without blockchain. The future of blockchain would probably be a decentralized Internet, in turn a decentralized society. BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 20 / 22
  • 23. References By Hanna Halaburda Blockchain Revolution Without the Blockchain? Communications of the ACM, July 2018, Vol. 61 No. 7, Pages 27-29 10.1145/3225619. Johg-Hyouk Lee BIDaaS: Blockchain Based ID As a Service IEEE Access ( Volume: 6 ) 2169-3536 10.1109/ACCESS.2017.2782733. By Satoshi Nakamoto Bitcoin: A Peer-to-Peer Electronic Cash System www.bitcoin.org. BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 21 / 22
  • 24. Thank You BABU PALLAM 2017CS18 (MNNIT) Blockchain Technologies October 15, 2018 22 / 22