SlideShare a Scribd company logo
1 of 25
Download to read offline
Blockchain
A new disruption in financial servies?
2
Bitcoin :	
  Currency and technology
• Mining
• 21	
  million
• Volatile	
  value
• >50%	
  in	
  hands	
  of	
  880	
  individuals
• Litecoin,	
  Ripple,	
  Zerocoin
Currency
“Satoshi	
  Nakamoto”
2009
• Blockchain
• Distributed	
  shared	
  ledger
• Cryptograhy (SHA-­‐256,	
  PKI)
• Consensus	
  model
• Smart	
  contracts
Technology
3
Party D’s Records Bank Records
Party C’s Records Auditor Records
Party B’s Records
Party A’s Records
API-integrations
Hack
Ledger
Ledger
Ledger
Ledger
Ledger
Ledger
Inefficient,	
  expensive,	
  error	
  sensitive	
  and	
  vulnerable
Information	
  &	
  asset	
  exchange	
  in	
  business	
  networks	
  – Separate	
  ledgers
4
Information	
  &	
  asset	
  exchange	
  in	
  business	
  networks	
  – Shared	
  ledgers
Party D’s Records Bank records
Party C’s Records Auditor records
Party B Records
Party A’s Records
Ledger
Ledger
Ledger
Ledger
Ledger
Ledger
Consistency,	
  efficiency,	
  security	
  and	
  resilience
5
4	
  key concepts of	
  blockchain
Distributed	
  shared	
  ledger Cryptography
Consensus Smart	
  contracts
6
4	
  key concepts of	
  blockchain	
  -­‐ Distributed	
  shared	
  ledgers
• Group	
  of	
  replicated logs/databases	
  (nodes)
• Transactions	
  distributed	
  in	
  blocks
• All	
  nodes	
  hold	
  all transactions
• Parties	
  identified with	
  public	
  key	
  (=	
  anonymised)
• Accessibility of	
  transactions	
  depending	
  on	
  blockchain implementation
• Resilient for	
  failure	
  of	
  one	
  or	
  more	
  nodes
• Group	
  of	
  nodes	
  operate	
  tamper	
  proof
Nodes of	
  Bitcoin ledger
7
8
Visualisation of	
  Bitcoin	
  flows	
  between	
  participants
Source	
  :	
  Elliptic.co
9
4	
  key concepts of	
  blockchain	
  – Cryptography (1/2)
Hashing
Creation	
  of	
  a	
  bit	
  string	
  (digest)	
  representing	
  integrity	
  of	
  content	
  other	
  string.	
  Changing	
  one	
  character	
  in	
  the	
  original	
  string	
  results	
  in	
  complete	
  different	
  has.	
  
Changing	
  multiple	
  characters	
  in	
  original	
  string	
  that	
  results	
  in	
  the	
  same	
  hash	
  requires	
  large	
  amount	
  of	
  processing	
  power	
  for	
  a long	
  period	
  of	
  time.	
  	
  
Sample	
  sentence	
  to	
  explain	
  
how	
  SHA256	
  works
Sample	
  sentence	
  to	
  explain
how	
  SHA256	
  works.
79e8a584005254f7717547b5829fd01fa
6c6831bd92a2d28c93305636c71b499
c19617618972f1dc643b2bb7075c7cac
ac3aea970581ca5c6ec30aee59a74c07
Extra	
  dot
Input	
  data
Hash	
  value
(32	
  bytes)
Hashing Hashing
10
4	
  key concepts of	
  blockchain	
  – Cryptography (2/2)
Public	
  &	
  private	
  keys	
  and	
  wallets
Two	
  large	
  prime	
  numbers	
  that	
  have	
  a	
  mathematical	
  relation	
  with	
  each	
  other.	
  A	
  string	
  encrypted	
  with	
  one	
  key	
  can	
  only	
  be	
  decrypted	
  with	
  the	
  other.	
  One	
  key	
  
needs	
  to	
  be	
  kept	
  private,	
  the	
  other	
  one	
  can	
  be	
  made	
  publicly	
  known	
  so	
  that	
  it	
  can	
  be	
  used	
  by	
  other	
  parties	
  to	
  exchange	
  data	
  with you	
  in	
  a	
  secure	
  manner.	
  Private	
  
keys	
  need	
  to	
  be	
  stored	
  that	
  it	
  is	
  accessible	
  only	
  for	
  owner.	
  This	
  can	
  be	
  done	
  on	
  personal	
  devices	
  (PC,	
  smart	
  card,	
  USB	
  stick, phone,	
  …)	
  or	
  remotely	
  with	
  a	
  service	
  
provider	
  (cold	
  and	
  hot	
  wallets).
Encryption
Scrambling	
  of	
  clear	
  text	
  with	
  the	
  public	
  key	
  of	
  the	
  recipient	
  so	
  that	
  the	
  holder	
  of	
  that	
  private	
  key	
  is	
  the	
  only	
  one	
  that	
  can descramble	
  the	
  message.	
  This	
  is	
  used	
  to	
  
guarantee	
  the	
  confidentiality	
  of	
  the	
  data	
  exchanged.	
  	
  
Confidential	
  text	
  to	
  be	
  secured	
  by	
  encryption a66b311c9b158c1e55d4e6cc555016d2e554ac….
Encryption
Confidential	
  text	
  to	
  be	
  secured	
  by	
  encryption
Decryption
Private	
  keyPublic	
  key PKI	
  management
Digital	
  signature
Encryption	
  of	
  hash	
  representing	
  of	
  original	
  data	
  to	
  be	
  secured	
  with	
  the	
  private	
  key	
  of	
  the	
  sender	
  (called	
  digital	
  signature)	
  that	
  is	
  decrypted	
  by	
  the	
  recipient	
  with	
  the	
  
public	
  of	
  the	
  sender.	
  If	
  the	
  decrypted	
  hash	
  matches	
  the	
  content	
  of	
  the	
  original	
  data	
  it	
  implies	
  two	
  things.	
  First,	
  the	
  encryption	
  can	
  only	
  be	
  performed	
  with	
  the	
  
private	
  key	
  corresponding	
  with	
  public	
  key	
  and	
  secondly,	
  the	
  original	
  data	
  can’t	
  be	
  tampered	
  with.
2100f86450888dc01725af78a0e70415… 2626043be7d913ff5d8520b39253eef6240e31d…
Encryption
2100f86450888dc01725af78a0e70415…
Public	
  keyPrivate	
  key PKI	
  management
Hash	
  of	
  data	
  to	
  be	
  secured Hash	
  to	
  be	
  checked	
  with	
  original	
  data
Decryption
11
4	
  key concepts of	
  blockchain	
  – Consensus
• Consensus	
  =	
  Majority of	
  nodes	
  agree	
  on	
  validity	
  of	
  transactions
• Includes	
  validation	
  on	
  double-­‐spending
• Permissionless (public)	
  vs.	
  permissioned (private)	
  blockchain setup
• Proof-­‐of-­‐work	
  /	
  proof-­‐of-­‐stake	
  the	
  proof	
  validity	
  of	
  node
(only	
  applicable	
  for	
  permissionless network)
12
4	
  key concepts of	
  blockchain	
  – Smart	
  Contracts
• Business	
  logic that	
  can	
  be	
  assigned	
  to	
  a	
  transaction	
  on	
  the	
  blockchain
• Acts	
  as	
  a	
  ‘notary’ of	
  blockchain transactions
• Holds	
  conditions under	
  which	
  specific	
  actions	
  can/must	
  be	
  perfomed
• Facilitates	
  escrow services
• Can’t	
  be	
  modified without	
  predefined	
  permissions
13
Sample	
  case	
  of	
  blockchain	
  for smart	
  contracts
14
Source	
  :	
  Financial	
  Times
How	
  a	
  blockchain	
  works?
Value	
  of	
  blockchain technology
15
Reduction	
  of	
  costs	
  and	
  complexity Shared	
  trusted	
  transactions
Resilience Secure Auditability
Reduction	
  of	
  errors
16
Potential of	
  blockchain	
  extends across a	
  wide range	
  of	
  application areas
Financial	
  Services
• Payments
• Securities	
  registration	
  &	
  processing
• Lending
Property
• Real	
  estate
• Intellectual	
  property
• Cars
Governmental	
  services
• Voting
• Registrations	
  (passports,	
  driving	
  license)
• Permits
Identification	
  &	
  Security
• Party/device	
  registration
• Authentication
• Access	
  control
Trade
• Document	
  exchange
• Asset	
  exchange
• Escrow	
  services
• Trade	
  agreements
Internet	
  of	
  Things	
  (IoT)
• Autonomous	
  devices,	
  such	
  as
• Cars
• Drones
• Robots
We	
  are	
  at	
  the	
  threshold	
  of	
  a	
  massive	
  explosion	
  in	
  the	
  history	
  of	
  computing
Devices  are  becoming  significantly  more  intelligent  and  connected
17
18
Role of	
  blockchain	
  technology in	
  Internet	
  of	
  Things
*	
  =	
  Autonomous	
  Decentralized	
  Peer-­‐to-­‐peer	
  Telemetry	
  
19
ADEPT*	
  – PoT of	
  IBM	
  and Samsung	
  on	
  IoT applying blockchain	
  technology
ibm.biz/empoweringtheedge
Key differentiating elements between blockchain	
  protocols:
• Permission model	
  (private	
  vs.	
  public)
• Consensus	
  approach
• Smart	
  contracts
• Extensibility &	
  programmability
• APIs
• Scalability &	
  latency
• Resource	
  consumption
Multiple	
  implementations	
  of	
  blockchain	
  related	
  protocols	
  :
• Bitcoin
• Ethereum
• Ripple
• Stellar
• Tendermint
• Factom
• Hyperledger
• …and	
  many	
  more
There is	
  not one blockchain	
  protocol
20
Key factors	
  that influence the future of	
  blockchain,	
  crypto	
  assets and smart	
  contracts
Interoperability	
  &	
  standardisation
-­‐ Messages
-­‐ Consensus
-­‐ APIs
Scalability
-­‐ Volumes
-­‐ Response	
  times
Vulnarability
-­‐ DDoS	
  attacks
-­‐ Confidentiality
Regulatory	
  
-­‐ Issuance	
  of	
  crypto	
  assets
-­‐ Compliancy	
  rules
-­‐ Oversight
21
Deploy your	
  blockchain
fabric	
  of	
  choice
Help	
  you
design	
  and	
  build
your	
  POC
+
+
Help	
  guide	
  your	
  blockchain	
  
exploration
Research Middleware Services Cloud iX Design &
Development
IBM’s value add in	
  blockchain
1. Discuss	
  Blockchain	
  technology
2. Explore	
  customer	
  business	
  
model
3. Asses	
  Blockchain	
  suitability
1. Show	
  Blockchain Application	
  
Demo
2. Explain	
  technology	
  usage
3. Validate	
  Client	
  Interest
1. Understand	
  Blockchain	
  concepts
&	
  elements
2. Hands on	
  with	
  Blockchain	
  
technology
3. Demo	
  customization	
  using	
  
Design	
  Thinking
1. Explore customer	
  specific	
  
business	
  model
2. Design,	
  build	
  &	
  iterate	
  approach
3. Builds	
  limited	
  scope	
  deployable	
  
solution
2	
  hours	
  meeting 2	
  hours	
  demo 1	
  day	
  workshop 2-­‐6	
  weeks
Remote	
  or	
  face	
  to	
  face Remote	
  or	
  face	
  to	
  face Face	
  to	
  face Co-­‐located joint	
  team
Fee of	
  charge Free	
  of charge Free of	
  charge For	
  charge
Conversation Demonstration
Proof	
  of	
  
Concept
Proof	
  of	
  
Technology
Overview IBM	
  blockchain	
  engagement	
  model
Sample	
  agenda	
  1-­‐day	
  workshop
• Introduction (10	
  mins)
• Technology	
  Overview(50	
  mins)
• Break (15	
  mins)
• Understand (90	
  mins)
• Lunch (60	
  mins)
• Explore (90	
  mins)
• Break (15	
  mins)
• Prototype	
  (30	
  mins)
• Evaluate (60	
  mins)
UNDERSTAND
EXPLORE
PROTOTYPE
EVALUATE
Is blockchain going to be the next big disruptor for…
… information technology
… the economy
… the society
… our lifestyle
?
25

More Related Content

What's hot

Blockchain-intro (2)
Blockchain-intro (2)Blockchain-intro (2)
Blockchain-intro (2)
Zakir Hoosen
 

What's hot (20)

Blockchain fundamentals
Blockchain fundamentalsBlockchain fundamentals
Blockchain fundamentals
 
The Continued Existence of Altcoins, Appcoins and Commodity coins
The Continued Existence of Altcoins, Appcoins and Commodity coinsThe Continued Existence of Altcoins, Appcoins and Commodity coins
The Continued Existence of Altcoins, Appcoins and Commodity coins
 
Blockchain-intro (2)
Blockchain-intro (2)Blockchain-intro (2)
Blockchain-intro (2)
 
The curious case of Blockchain Technology
The curious case of Blockchain TechnologyThe curious case of Blockchain Technology
The curious case of Blockchain Technology
 
Introduction to blockchain
Introduction to blockchainIntroduction to blockchain
Introduction to blockchain
 
Block chain introduction
Block chain introductionBlock chain introduction
Block chain introduction
 
Blockchain and Smart Contracts
Blockchain and Smart ContractsBlockchain and Smart Contracts
Blockchain and Smart Contracts
 
Disadvantages and Advantages of Blockchain
Disadvantages and Advantages of BlockchainDisadvantages and Advantages of Blockchain
Disadvantages and Advantages of Blockchain
 
Developing a Versatile Cryptocurrency Wallet
Developing a Versatile Cryptocurrency WalletDeveloping a Versatile Cryptocurrency Wallet
Developing a Versatile Cryptocurrency Wallet
 
Basic introduction in blockchain, smart contracts, permissioned ledgers
Basic introduction in blockchain, smart contracts, permissioned ledgersBasic introduction in blockchain, smart contracts, permissioned ledgers
Basic introduction in blockchain, smart contracts, permissioned ledgers
 
Smart contracts
Smart contractsSmart contracts
Smart contracts
 
Understanding Blockchain
Understanding BlockchainUnderstanding Blockchain
Understanding Blockchain
 
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
 
Defining Smart Contracts
Defining Smart ContractsDefining Smart Contracts
Defining Smart Contracts
 
Blockchain, smart contracts - introduction
Blockchain, smart contracts - introductionBlockchain, smart contracts - introduction
Blockchain, smart contracts - introduction
 
Blockchain in banking bucharest meetup
Blockchain in banking   bucharest meetupBlockchain in banking   bucharest meetup
Blockchain in banking bucharest meetup
 
Sidechains and Bitcoin security
Sidechains and Bitcoin securitySidechains and Bitcoin security
Sidechains and Bitcoin security
 
Blockchain & Cryptocurrencies Intro - July 2017
Blockchain & Cryptocurrencies Intro - July 2017Blockchain & Cryptocurrencies Intro - July 2017
Blockchain & Cryptocurrencies Intro - July 2017
 
Brief overview of cryptoeconomics
Brief overview of cryptoeconomicsBrief overview of cryptoeconomics
Brief overview of cryptoeconomics
 
Blockchain 101 presentation by fstream.io
Blockchain 101 presentation by fstream.ioBlockchain 101 presentation by fstream.io
Blockchain 101 presentation by fstream.io
 

Viewers also liked

Informe Blockchain BlockLift-web
Informe Blockchain BlockLift-webInforme Blockchain BlockLift-web
Informe Blockchain BlockLift-web
Alex Preukschat
 

Viewers also liked (20)

Unbundling Of Financial Services: The Blockchain(s) Revolution
Unbundling Of Financial Services: The Blockchain(s) RevolutionUnbundling Of Financial Services: The Blockchain(s) Revolution
Unbundling Of Financial Services: The Blockchain(s) Revolution
 
Blockchain and Financial Services: Everything could be different - APEC
Blockchain and Financial Services:Everything could be different - APECBlockchain and Financial Services:Everything could be different - APEC
Blockchain and Financial Services: Everything could be different - APEC
 
Blockchain 2015: Analyzing the Blockchain in Financial Services
Blockchain 2015: Analyzing the Blockchain in Financial ServicesBlockchain 2015: Analyzing the Blockchain in Financial Services
Blockchain 2015: Analyzing the Blockchain in Financial Services
 
The Impact of Blockchain on Financial Services
The Impact of Blockchain on Financial ServicesThe Impact of Blockchain on Financial Services
The Impact of Blockchain on Financial Services
 
Excel 7
Excel 7Excel 7
Excel 7
 
Blockchain for Financial Institutions (the beginning)
Blockchain for Financial Institutions (the beginning)Blockchain for Financial Institutions (the beginning)
Blockchain for Financial Institutions (the beginning)
 
Presentación Corporativa de Zurich Seguros
Presentación  Corporativa de Zurich SegurosPresentación  Corporativa de Zurich Seguros
Presentación Corporativa de Zurich Seguros
 
FINTECH Circle Blockchain Masterclass with Prof Mainelli @ BNY Mellon
FINTECH Circle Blockchain Masterclass with Prof Mainelli @ BNY MellonFINTECH Circle Blockchain Masterclass with Prof Mainelli @ BNY Mellon
FINTECH Circle Blockchain Masterclass with Prof Mainelli @ BNY Mellon
 
Blockchain, Finance & Regulatory Development
Blockchain, Finance & Regulatory DevelopmentBlockchain, Finance & Regulatory Development
Blockchain, Finance & Regulatory Development
 
CES 2017 FinTech trend: Blockchain Technology by Mark Mueller-Eberstein, Adgetec
CES 2017 FinTech trend: Blockchain Technology by Mark Mueller-Eberstein, AdgetecCES 2017 FinTech trend: Blockchain Technology by Mark Mueller-Eberstein, Adgetec
CES 2017 FinTech trend: Blockchain Technology by Mark Mueller-Eberstein, Adgetec
 
Blockchain Financial Networks
Blockchain Financial NetworksBlockchain Financial Networks
Blockchain Financial Networks
 
The Future of Finance
The Future of FinanceThe Future of Finance
The Future of Finance
 
Red Ants Blockchain Payment Services
Red Ants Blockchain Payment ServicesRed Ants Blockchain Payment Services
Red Ants Blockchain Payment Services
 
Informe Blockchain BlockLift-web
Informe Blockchain BlockLift-webInforme Blockchain BlockLift-web
Informe Blockchain BlockLift-web
 
Making Blockchain Real for Business - Kathryn Harrison (IBM, Middle East and ...
Making Blockchain Real for Business - Kathryn Harrison (IBM, Middle East and ...Making Blockchain Real for Business - Kathryn Harrison (IBM, Middle East and ...
Making Blockchain Real for Business - Kathryn Harrison (IBM, Middle East and ...
 
Ovum blockchain for beginners
Ovum blockchain for beginnersOvum blockchain for beginners
Ovum blockchain for beginners
 
bitcoin, la evolucion del dinero
bitcoin, la evolucion del dinerobitcoin, la evolucion del dinero
bitcoin, la evolucion del dinero
 
Blockchain Experiments in Trade Finance and IoT
Blockchain Experiments in Trade Finance and IoTBlockchain Experiments in Trade Finance and IoT
Blockchain Experiments in Trade Finance and IoT
 
Distributed ledger technology in payments clearing and settlement - blockchai...
Distributed ledger technology in payments clearing and settlement - blockchai...Distributed ledger technology in payments clearing and settlement - blockchai...
Distributed ledger technology in payments clearing and settlement - blockchai...
 
Trade finance and blockchain
Trade finance and blockchainTrade finance and blockchain
Trade finance and blockchain
 

Similar to Blockchain a-new-disruption-in-financial-services - IBM

Blockchain As An Enabler_16 July 2016_David Lee_Final
Blockchain As An Enabler_16 July 2016_David Lee_FinalBlockchain As An Enabler_16 July 2016_David Lee_Final
Blockchain As An Enabler_16 July 2016_David Lee_Final
David Lee Kuo Chuen 李国权
 
Blockchain technology.docx
Blockchain technology.docxBlockchain technology.docx
Blockchain technology.docx
aymenabbaci
 

Similar to Blockchain a-new-disruption-in-financial-services - IBM (20)

Introduction to Blockchain and Smart Contracts
Introduction to Blockchain and Smart ContractsIntroduction to Blockchain and Smart Contracts
Introduction to Blockchain and Smart Contracts
 
Block chains and crypto currencies - introduction
Block chains and crypto currencies - introductionBlock chains and crypto currencies - introduction
Block chains and crypto currencies - introduction
 
Blockchain and BPM - Reflections on Four Years of Research and Applications
Blockchain and BPM - Reflections on Four Years of Research and ApplicationsBlockchain and BPM - Reflections on Four Years of Research and Applications
Blockchain and BPM - Reflections on Four Years of Research and Applications
 
An introduction to blockchain and hyperledger v ru
An introduction to blockchain and hyperledger v ruAn introduction to blockchain and hyperledger v ru
An introduction to blockchain and hyperledger v ru
 
SITIST 2018 Part 1 - Blockchain and Enterprise Use Cases
SITIST 2018 Part 1 - Blockchain and Enterprise Use CasesSITIST 2018 Part 1 - Blockchain and Enterprise Use Cases
SITIST 2018 Part 1 - Blockchain and Enterprise Use Cases
 
Blockchain Application Design and Development, and the Case of Programmable M...
Blockchain Application Design and Development, and the Case of Programmable M...Blockchain Application Design and Development, and the Case of Programmable M...
Blockchain Application Design and Development, and the Case of Programmable M...
 
The Impact and Potential of Blockchain on the Banking Sector
The Impact and Potential of Blockchain on the Banking SectorThe Impact and Potential of Blockchain on the Banking Sector
The Impact and Potential of Blockchain on the Banking Sector
 
Introduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart ContractIntroduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart Contract
 
Blockchain Security and Privacy
Blockchain Security and PrivacyBlockchain Security and Privacy
Blockchain Security and Privacy
 
Blockchain e mercato
Blockchain e mercatoBlockchain e mercato
Blockchain e mercato
 
Block chain
Block chainBlock chain
Block chain
 
Lapine blockchain introduction 10/04/2018
Lapine blockchain introduction 10/04/2018Lapine blockchain introduction 10/04/2018
Lapine blockchain introduction 10/04/2018
 
Blockchain As An Enabler_16 July 2016_David Lee_Final
Blockchain As An Enabler_16 July 2016_David Lee_FinalBlockchain As An Enabler_16 July 2016_David Lee_Final
Blockchain As An Enabler_16 July 2016_David Lee_Final
 
Real world blockchain solutions - DevDays Asia 2018 - Taipei
Real world blockchain solutions - DevDays Asia 2018 - TaipeiReal world blockchain solutions - DevDays Asia 2018 - Taipei
Real world blockchain solutions - DevDays Asia 2018 - Taipei
 
InitVerse Blockchain - 5 minutes to understand the blockchain.pdf
InitVerse Blockchain - 5 minutes to understand the blockchain.pdfInitVerse Blockchain - 5 minutes to understand the blockchain.pdf
InitVerse Blockchain - 5 minutes to understand the blockchain.pdf
 
Introduction to Blockchain and Cryptocurrencies
Introduction to Blockchain and CryptocurrenciesIntroduction to Blockchain and Cryptocurrencies
Introduction to Blockchain and Cryptocurrencies
 
Blockchain technology.docx
Blockchain technology.docxBlockchain technology.docx
Blockchain technology.docx
 
Ultimate guide to understand- What is Blockchain Technology
Ultimate guide to understand- What is Blockchain Technology Ultimate guide to understand- What is Blockchain Technology
Ultimate guide to understand- What is Blockchain Technology
 
Blockchain - Primer for City CIOs v05 01 22.pdf
Blockchain - Primer for City CIOs v05 01 22.pdfBlockchain - Primer for City CIOs v05 01 22.pdf
Blockchain - Primer for City CIOs v05 01 22.pdf
 
DWeb and Civil Society: An Introduction For Makers
DWeb and Civil Society: An Introduction For MakersDWeb and Civil Society: An Introduction For Makers
DWeb and Civil Society: An Introduction For Makers
 

More from Diego Alberto Tamayo

More from Diego Alberto Tamayo (20)

11 best practices for #mobile device management ( #mdm ) https /www-01.ibm.c...
11 best practices for #mobile device management ( #mdm )  https /www-01.ibm.c...11 best practices for #mobile device management ( #mdm )  https /www-01.ibm.c...
11 best practices for #mobile device management ( #mdm ) https /www-01.ibm.c...
 
Ibm white paper_harnessing_ap_is_and_platforms_0
Ibm white paper_harnessing_ap_is_and_platforms_0Ibm white paper_harnessing_ap_is_and_platforms_0
Ibm white paper_harnessing_ap_is_and_platforms_0
 
1. ibm blockchain explained
1. ibm blockchain explained1. ibm blockchain explained
1. ibm blockchain explained
 
Hybrid connectivity
Hybrid connectivityHybrid connectivity
Hybrid connectivity
 
Ibm systems servidor linux power8 de 1u ibm power system s821 lc un servidor ...
Ibm systems servidor linux power8 de 1u ibm power system s821 lc un servidor ...Ibm systems servidor linux power8 de 1u ibm power system s821 lc un servidor ...
Ibm systems servidor linux power8 de 1u ibm power system s821 lc un servidor ...
 
Watson – un sistema diseñado para respuestas @ibm
Watson – un sistema diseñado para respuestas   @ibmWatson – un sistema diseñado para respuestas   @ibm
Watson – un sistema diseñado para respuestas @ibm
 
Blockchain powering the internet of value
Blockchain powering the internet of value  Blockchain powering the internet of value
Blockchain powering the internet of value
 
Blockchain technology amplify your enterprise / IBM
Blockchain technology amplify your enterprise / IBMBlockchain technology amplify your enterprise / IBM
Blockchain technology amplify your enterprise / IBM
 
Blockchain the chain of trust and its potential / IBM
Blockchain the chain of trust and its potential / IBMBlockchain the chain of trust and its potential / IBM
Blockchain the chain of trust and its potential / IBM
 
Blockchain rewires financial markets / IBM
Blockchain  rewires financial markets / IBMBlockchain  rewires financial markets / IBM
Blockchain rewires financial markets / IBM
 
Ibm elastic storage server moderno sistema de almacenamiento definido por s...
Ibm elastic storage server   moderno sistema de almacenamiento definido por s...Ibm elastic storage server   moderno sistema de almacenamiento definido por s...
Ibm elastic storage server moderno sistema de almacenamiento definido por s...
 
Ibm flash system a9000 una solución todo f lash altamente paralela para empre...
Ibm flash system a9000 una solución todo f lash altamente paralela para empre...Ibm flash system a9000 una solución todo f lash altamente paralela para empre...
Ibm flash system a9000 una solución todo f lash altamente paralela para empre...
 
IBM Object Storage and Software Defined Solutions - Cleversafe
IBM Object Storage and Software Defined Solutions - CleversafeIBM Object Storage and Software Defined Solutions - Cleversafe
IBM Object Storage and Software Defined Solutions - Cleversafe
 
COLDCHAIN“Bringing high-quality vaccines and refrigerated medicine to patient...
COLDCHAIN“Bringing high-quality vaccines and refrigerated medicine to patient...COLDCHAIN“Bringing high-quality vaccines and refrigerated medicine to patient...
COLDCHAIN“Bringing high-quality vaccines and refrigerated medicine to patient...
 
Ibm power systems hpc cluster
Ibm power systems hpc cluster Ibm power systems hpc cluster
Ibm power systems hpc cluster
 
Driving client value through hybrid cloud - IBM
Driving client value through hybrid cloud - IBMDriving client value through hybrid cloud - IBM
Driving client value through hybrid cloud - IBM
 
Global location trends 2016 annual report by IBM
Global location trends 2016 annual report by IBMGlobal location trends 2016 annual report by IBM
Global location trends 2016 annual report by IBM
 
Learning to trust artificial intelligence systems accountability, compliance ...
Learning to trust artificial intelligence systems accountability, compliance ...Learning to trust artificial intelligence systems accountability, compliance ...
Learning to trust artificial intelligence systems accountability, compliance ...
 
The ecosystem equation collaboration in the connected economy @harvard biz @i...
The ecosystem equation collaboration in the connected economy @harvard biz @i...The ecosystem equation collaboration in the connected economy @harvard biz @i...
The ecosystem equation collaboration in the connected economy @harvard biz @i...
 
Device democracy -Saving the future of the #InternetOfThings @IBMIBV
Device democracy -Saving the future of the #InternetOfThings  @IBMIBV Device democracy -Saving the future of the #InternetOfThings  @IBMIBV
Device democracy -Saving the future of the #InternetOfThings @IBMIBV
 

Recently uploaded

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Recently uploaded (20)

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 

Blockchain a-new-disruption-in-financial-services - IBM

  • 1. Blockchain A new disruption in financial servies?
  • 2. 2 Bitcoin :  Currency and technology • Mining • 21  million • Volatile  value • >50%  in  hands  of  880  individuals • Litecoin,  Ripple,  Zerocoin Currency “Satoshi  Nakamoto” 2009 • Blockchain • Distributed  shared  ledger • Cryptograhy (SHA-­‐256,  PKI) • Consensus  model • Smart  contracts Technology
  • 3. 3 Party D’s Records Bank Records Party C’s Records Auditor Records Party B’s Records Party A’s Records API-integrations Hack Ledger Ledger Ledger Ledger Ledger Ledger Inefficient,  expensive,  error  sensitive  and  vulnerable Information  &  asset  exchange  in  business  networks  – Separate  ledgers
  • 4. 4 Information  &  asset  exchange  in  business  networks  – Shared  ledgers Party D’s Records Bank records Party C’s Records Auditor records Party B Records Party A’s Records Ledger Ledger Ledger Ledger Ledger Ledger Consistency,  efficiency,  security  and  resilience
  • 5. 5 4  key concepts of  blockchain Distributed  shared  ledger Cryptography Consensus Smart  contracts
  • 6. 6 4  key concepts of  blockchain  -­‐ Distributed  shared  ledgers • Group  of  replicated logs/databases  (nodes) • Transactions  distributed  in  blocks • All  nodes  hold  all transactions • Parties  identified with  public  key  (=  anonymised) • Accessibility of  transactions  depending  on  blockchain implementation • Resilient for  failure  of  one  or  more  nodes • Group  of  nodes  operate  tamper  proof
  • 8. 8 Visualisation of  Bitcoin  flows  between  participants Source  :  Elliptic.co
  • 9. 9 4  key concepts of  blockchain  – Cryptography (1/2) Hashing Creation  of  a  bit  string  (digest)  representing  integrity  of  content  other  string.  Changing  one  character  in  the  original  string  results  in  complete  different  has.   Changing  multiple  characters  in  original  string  that  results  in  the  same  hash  requires  large  amount  of  processing  power  for  a long  period  of  time.     Sample  sentence  to  explain   how  SHA256  works Sample  sentence  to  explain how  SHA256  works. 79e8a584005254f7717547b5829fd01fa 6c6831bd92a2d28c93305636c71b499 c19617618972f1dc643b2bb7075c7cac ac3aea970581ca5c6ec30aee59a74c07 Extra  dot Input  data Hash  value (32  bytes) Hashing Hashing
  • 10. 10 4  key concepts of  blockchain  – Cryptography (2/2) Public  &  private  keys  and  wallets Two  large  prime  numbers  that  have  a  mathematical  relation  with  each  other.  A  string  encrypted  with  one  key  can  only  be  decrypted  with  the  other.  One  key   needs  to  be  kept  private,  the  other  one  can  be  made  publicly  known  so  that  it  can  be  used  by  other  parties  to  exchange  data  with you  in  a  secure  manner.  Private   keys  need  to  be  stored  that  it  is  accessible  only  for  owner.  This  can  be  done  on  personal  devices  (PC,  smart  card,  USB  stick, phone,  …)  or  remotely  with  a  service   provider  (cold  and  hot  wallets). Encryption Scrambling  of  clear  text  with  the  public  key  of  the  recipient  so  that  the  holder  of  that  private  key  is  the  only  one  that  can descramble  the  message.  This  is  used  to   guarantee  the  confidentiality  of  the  data  exchanged.     Confidential  text  to  be  secured  by  encryption a66b311c9b158c1e55d4e6cc555016d2e554ac…. Encryption Confidential  text  to  be  secured  by  encryption Decryption Private  keyPublic  key PKI  management Digital  signature Encryption  of  hash  representing  of  original  data  to  be  secured  with  the  private  key  of  the  sender  (called  digital  signature)  that  is  decrypted  by  the  recipient  with  the   public  of  the  sender.  If  the  decrypted  hash  matches  the  content  of  the  original  data  it  implies  two  things.  First,  the  encryption  can  only  be  performed  with  the   private  key  corresponding  with  public  key  and  secondly,  the  original  data  can’t  be  tampered  with. 2100f86450888dc01725af78a0e70415… 2626043be7d913ff5d8520b39253eef6240e31d… Encryption 2100f86450888dc01725af78a0e70415… Public  keyPrivate  key PKI  management Hash  of  data  to  be  secured Hash  to  be  checked  with  original  data Decryption
  • 11. 11 4  key concepts of  blockchain  – Consensus • Consensus  =  Majority of  nodes  agree  on  validity  of  transactions • Includes  validation  on  double-­‐spending • Permissionless (public)  vs.  permissioned (private)  blockchain setup • Proof-­‐of-­‐work  /  proof-­‐of-­‐stake  the  proof  validity  of  node (only  applicable  for  permissionless network)
  • 12. 12 4  key concepts of  blockchain  – Smart  Contracts • Business  logic that  can  be  assigned  to  a  transaction  on  the  blockchain • Acts  as  a  ‘notary’ of  blockchain transactions • Holds  conditions under  which  specific  actions  can/must  be  perfomed • Facilitates  escrow services • Can’t  be  modified without  predefined  permissions
  • 13. 13 Sample  case  of  blockchain  for smart  contracts
  • 14. 14 Source  :  Financial  Times How  a  blockchain  works?
  • 15. Value  of  blockchain technology 15 Reduction  of  costs  and  complexity Shared  trusted  transactions Resilience Secure Auditability Reduction  of  errors
  • 16. 16 Potential of  blockchain  extends across a  wide range  of  application areas Financial  Services • Payments • Securities  registration  &  processing • Lending Property • Real  estate • Intellectual  property • Cars Governmental  services • Voting • Registrations  (passports,  driving  license) • Permits Identification  &  Security • Party/device  registration • Authentication • Access  control Trade • Document  exchange • Asset  exchange • Escrow  services • Trade  agreements Internet  of  Things  (IoT) • Autonomous  devices,  such  as • Cars • Drones • Robots
  • 17. We  are  at  the  threshold  of  a  massive  explosion  in  the  history  of  computing Devices  are  becoming  significantly  more  intelligent  and  connected 17
  • 18. 18 Role of  blockchain  technology in  Internet  of  Things
  • 19. *  =  Autonomous  Decentralized  Peer-­‐to-­‐peer  Telemetry   19 ADEPT*  – PoT of  IBM  and Samsung  on  IoT applying blockchain  technology ibm.biz/empoweringtheedge
  • 20. Key differentiating elements between blockchain  protocols: • Permission model  (private  vs.  public) • Consensus  approach • Smart  contracts • Extensibility &  programmability • APIs • Scalability &  latency • Resource  consumption Multiple  implementations  of  blockchain  related  protocols  : • Bitcoin • Ethereum • Ripple • Stellar • Tendermint • Factom • Hyperledger • …and  many  more There is  not one blockchain  protocol 20
  • 21. Key factors  that influence the future of  blockchain,  crypto  assets and smart  contracts Interoperability  &  standardisation -­‐ Messages -­‐ Consensus -­‐ APIs Scalability -­‐ Volumes -­‐ Response  times Vulnarability -­‐ DDoS  attacks -­‐ Confidentiality Regulatory   -­‐ Issuance  of  crypto  assets -­‐ Compliancy  rules -­‐ Oversight 21
  • 22. Deploy your  blockchain fabric  of  choice Help  you design  and  build your  POC + + Help  guide  your  blockchain   exploration Research Middleware Services Cloud iX Design & Development IBM’s value add in  blockchain
  • 23. 1. Discuss  Blockchain  technology 2. Explore  customer  business   model 3. Asses  Blockchain  suitability 1. Show  Blockchain Application   Demo 2. Explain  technology  usage 3. Validate  Client  Interest 1. Understand  Blockchain  concepts &  elements 2. Hands on  with  Blockchain   technology 3. Demo  customization  using   Design  Thinking 1. Explore customer  specific   business  model 2. Design,  build  &  iterate  approach 3. Builds  limited  scope  deployable   solution 2  hours  meeting 2  hours  demo 1  day  workshop 2-­‐6  weeks Remote  or  face  to  face Remote  or  face  to  face Face  to  face Co-­‐located joint  team Fee of  charge Free  of charge Free of  charge For  charge Conversation Demonstration Proof  of   Concept Proof  of   Technology Overview IBM  blockchain  engagement  model
  • 24. Sample  agenda  1-­‐day  workshop • Introduction (10  mins) • Technology  Overview(50  mins) • Break (15  mins) • Understand (90  mins) • Lunch (60  mins) • Explore (90  mins) • Break (15  mins) • Prototype  (30  mins) • Evaluate (60  mins) UNDERSTAND EXPLORE PROTOTYPE EVALUATE
  • 25. Is blockchain going to be the next big disruptor for… … information technology … the economy … the society … our lifestyle ? 25