Private Data Management in Blockchain

/research/offchain-thumbnail2.png
Off-Chain Manager Architecture

Motivation

Blockchain’s transparency is a double-edged sword. It inevitably narrows the area where blockchain can be applied, as private data cannot be uploaded and shared on blockchain. How can we ensure privacy and confidentiality on blockchain while maintaining its transparent nature? How can we maximize the advantages of blockchain by addressing its limitations? We suggest Off-Chain Manager, which can be an answer to these questions.

Data Flow

The fundamental principle is to separate “metadata” from “data.” Blockchain only records the metadata - the ownership information - on the blockchain. The Data Stream Hub then transfers the actual data exclusively to their owners. Off-Chain Manager operates as follows:

  1. The Node #1 tries to share the FILE #1 to the Node #2.
  2. The Node #1 requests to write the ownership information to blockchain.
  3. Blockchain successfully creates a block containing the ownership information of the FILE #1.
  4. The Node #2 fetches the metadata in the new block.
  5. The Node #2 sends a notification of the ownership update to its client.
  6. The client requests the FILE #1 to the Node #2.
  7. The Node #2 requests FILE #1 to the Data Stream Hub.
  8. The Data Stream Hub validates the request from the node.
  9. The Data Stream Hub requests the FILE #1 to the owners, which, in this scenario, is the Node #1, with the Node #2’s public key.
  10. The Node #1 returns the encrypted FILE #1.
  11. The Data Stream Hub returns the encrypted FILE #1 to the Node #2.
  12. The Node #2 returns the encrypted FILE #1 to its client.
  13. The client can decrypt and view the FILE #1.