search
HomeCommon ProblemFabric private data beginners' practical experience
Fabric private data beginners' practical experienceApr 30, 2019 pm 02:56 PM
fabricNetwork Architecture

Hyperledger Fabric private data is a new feature introduced in version 1.2. Fabric private data uses side database (SideDB) to save private data between several channel members, thus providing a more flexible layer on top of the channel. Data protection mechanism. This article will introduce how to use fabric private data in chain code development.

Fabric private data beginners practical experience

fabric private data uses SideDB to save private data, which is equivalent to providing a more fine-grained data privacy protection mechanism on top of the channel. This article will introduce the purpose, basic concepts and application scenarios of fabric private data.

What is fabric private data?

The current way to achieve data privacy in Hyperledger Fabric is to use channels. However, officials are not alone in creating a large number of channels in large networks in order to achieve data privacy protection, because this will bring additional overhead, such as management policies, chain code versions, and member service provision (MSP). In a channel, all data is either public or private. Therefore, it will be very troublesome if you want to transfer assets to members outside the channel. This is why Hyperledger Fabric introduces private transactions. farbic private data allows the creation of private data sets based on policies to define which members of the channel can access the data. Fabric private data can be managed simply by adding policies. This makes it possible to make certain data public to only some members.

Consider Hyperledger Fabric’s marbles example. All marble data can be made public, except for its holder and price information. These two data cannot be disclosed to others, and the price should not be known to others. Maybe you need to track this data because you need to verify that the person selling the marble is the real owner. A hypothetical marble audit firm can act as your partner to verify this. If you use channels, all your actions will be recorded in the ledger state and can be seen by anyone.

How does fabric private data solve the above problems?

Fabric private data beginners practical experience

In the above figure, the first set, Channel Read-Write Sets" is the architecture when fabric private data is not introduced. Each transaction Both record their status and history.

The second set, private state partition 1, shows a shared private state between two nodes belonging to different organizations. This state is based on a pre-set policy. Replicated between nodes.

The third set, private state partition 2&3 shows a real example of fabric private data. The data set can be ignored by some members. This means that you can create a new set for each marble Sellers and auditors set up private data sets separately. These data sets allow the addition of some additional data, and the main data is still stored in the main state and ledger.

Fabric private data beginners practical experience

Authorized Nodes will be able to see the data hash on the main ledger, as well as the real data in the private database. Unauthorized nodes will not synchronize the private database and can only see the data hash on the main ledger. Due to the hash The hash is irreversible, so these unauthorized nodes cannot see the real data.

From a higher level, the problem solved by fabric private data looks like this:

Fabric private data beginners practical experience

fabric private data use case

We use the classic fabcar case in Hyperledger Fabric to show how to use private data sets. The initLedger function will be in Create 10 new cars in our dataset. All of these cars can be viewed by anyone on the network. Now let's create a private database, and this data will only be shared with another member garage we hold.

fabric private data data set configuration

We first need a data set configuration file collections_config.json, which contains the private data set name and access policy. The access policy is similar to the endorsement policy, This allows us to use already existing policy logic, such as OR, AND, etc.

[
  {
    "name": "carCollection",
    "policy": "OR ('Org1MSP.member','Org2MSP.member')",
    "requiredPeerCount": 0,
    "maxPeerCount": 3,
    "blockToLive":1000000
  }
]

Modify the chaincode to support fabric private data

Here is the original createCar function:

async createCar(stubHelper: StubHelper, args: string[]) {
      const verifiedArgs = await Helpers.checkArgs<any>(args[0], Yup.object()
          .shape({
              key: Yup.string().required(),
              make: Yup.string().required(),
              model: Yup.string().required(),
              color: Yup.string().required(),
              owner: Yup.string().required(),
          }));
      let car = {
          docType: &#39;car&#39;,
          make: verifiedArgs.make,
          model: verifiedArgs.model,
          color: verifiedArgs.color,
          owner: verifiedArgs.owner
      };
      await stubHelper.putState(verifiedArgs.key, car);
}

To add data to the private data set carCollection, we need to specify the target data set:

await stubHelper.putState(verifiedArgs.key, car, {privateCollection: &#39;carCollection&#39;});

Next, if we want to query the vehicle, we also need to specify the target private data set:

async queryPrivateCar(stubHelper: StubHelper, args: string[]) {
      const verifiedArgs = await Helpers.checkArgs<any>(args[0], Yup.object()
          .shape({
              key: Yup.string().required(),
          }));
      const car = await stubHelper.getStateAsObject(verifiedArgs.key, {privateCollection: &#39;carCollection&#39;});
      if (!car) {
          throw new NotFoundError(&#39;Car does not exist&#39;);
      }
      return car;
}

Similarly, for delete and update operations, you need to specify the target private data set to be operated.

fabric private data chaincode best practices

Of course, some of our data is visible to anyone in the Hyperledger Fabric network. However, some of this data is private and held in a private dataset and therefore can only be accessed by peers defined in the dataset configuration file.

We recommend saving data using the same key in both the public and private datasets to make it easier to extract the data. Finally, I hope this article is helpful to you.

If you want to know more related tutorials, please pay attention to PHP Chinese website!

The above is the detailed content of Fabric private data beginners' practical experience. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:开源中国. If there is any infringement, please contact admin@php.cn delete
deepseek web version official entrancedeepseek web version official entranceMar 12, 2025 pm 01:42 PM

The domestic AI dark horse DeepSeek has risen strongly, shocking the global AI industry! This Chinese artificial intelligence company, which has only been established for a year and a half, has won wide praise from global users for its free and open source mockups, DeepSeek-V3 and DeepSeek-R1. DeepSeek-R1 is now fully launched, with performance comparable to the official version of OpenAIo1! You can experience its powerful functions on the web page, APP and API interface. Download method: Supports iOS and Android systems, users can download it through the app store; the web version has also been officially opened! DeepSeek web version official entrance: ht

In-depth search deepseek official website entranceIn-depth search deepseek official website entranceMar 12, 2025 pm 01:33 PM

At the beginning of 2025, domestic AI "deepseek" made a stunning debut! This free and open source AI model has a performance comparable to the official version of OpenAI's o1, and has been fully launched on the web side, APP and API, supporting multi-terminal use of iOS, Android and web versions. In-depth search of deepseek official website and usage guide: official website address: https://www.deepseek.com/Using steps for web version: Click the link above to enter deepseek official website. Click the "Start Conversation" button on the homepage. For the first use, you need to log in with your mobile phone verification code. After logging in, you can enter the dialogue interface. deepseek is powerful, can write code, read file, and create code

How to solve the problem of busy servers for deepseekHow to solve the problem of busy servers for deepseekMar 12, 2025 pm 01:39 PM

DeepSeek: How to deal with the popular AI that is congested with servers? As a hot AI in 2025, DeepSeek is free and open source and has a performance comparable to the official version of OpenAIo1, which shows its popularity. However, high concurrency also brings the problem of server busyness. This article will analyze the reasons and provide coping strategies. DeepSeek web version entrance: https://www.deepseek.com/DeepSeek server busy reason: High concurrent access: DeepSeek's free and powerful features attract a large number of users to use at the same time, resulting in excessive server load. Cyber ​​Attack: It is reported that DeepSeek has an impact on the US financial industry.

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor