0

我一直参与使用超级账本结构开发区块链应用程序。

我利用fabric-node-sdk与区块链层进行交互。

现在我有很少的数据被插入到块中,我们可以在 CouchDB 中看到它们并查询相同的数据来检索数据。

channel.queryBlock(1)被调用时,我们得到data_hash作为它的响应,有没有办法解码 data_hash来获取实际数据?

data_hash 看起来像这样:0dafabc38a7d216426b9a9ab71057fe6c8b984c9e44f92b7265fbd3e2785e26c

任何建议都会有所帮助。

谢谢你!

4

2 回答 2

3

根据Fabric SDK 文档,Channel.queryBlock 返回一个块的 Promise。可以查询返回的 Block 对象以提取各种字段,例如

channel = client.getChannel(channelName);
return channel.queryBlock(blockNumber);
}).then((block) => {
  console.log('Block Number: ' + block.header.number);
  console.log('Previous Hash: ' + block.header.previous_hash);
  console.log('Data Hash: ' + block.header.data_hash);
  console.log('Transactions: ' + block.data.data.length);
  block.data.data.forEach(transaction => {
    console.log('Transaction ID: ' + transaction.payload.header.channel_header.tx_id);
    console.log('Creator ID: ' + transaction.payload.header.signature_header.creator.Mspid);
    console.log('Data: ');
    console.log(JSON.stringify(transaction.payload.data));
  });
});

一些示例输出:

Block Number: 4
Previous Hash: b794ee910514f989c0bcb54c2d26d907fca65eb9dd60e86047b3c3c78b96cb96
Data Hash: 1e267340a5f57ea687bfd6b57aec51b5e16420921fb50f980d08f1302bd289be
Transactions: 1
Transaction ID: 49c1333402977a53ec2532a4d425ef8bd6e3efa546358d3d2e3be645ee32b6c0
Creator ID: Org1MSP
Data:
{"actions":[{"header":{"creator":{"Mspid":"Org1MSP","IdBytes":"-----BEGIN CERTIFICATE-----...

Block 对象的结构在此处完整记录。

于 2018-11-29T09:44:29.980 回答
0

哈希是一个不可逆的函数,我们无法从哈希中获取数据。当我们计算任何输入数据的哈希值时,我们会得到哈希值,每次如果你提供相同的数据,你将得到相同的哈希值。

加密的情况下,我们可以通过解密作为可逆函数来获取输入数据。

于 2019-09-24T03:29:09.930 回答