I think encryption of data in ledger should be performed by application (client application and chaincode) in Hyperledger Fabric. Is there any mean to crypto data of ledger using Hyperledger Composer ? Should I implement encryption in client application or transaction processing function ?
相关问题
- chaincode in hyperledger composer vs chaincode in
- How to get timestamp when transaction is committed
- Instantiating Chaincode in Hyperledger Composer wi
- How to deploy Hyperledger Composer to “Azure Hyper
- Hyperledger-Composer: Issuing identity using REST-
相关文章
- Does Composer needs an already built Fabric networ
- Error: Cannot find module './api' (Hyperle
- how to access the 'eventEmitted' field in
- Hyperledger Composer - ACL Rule with function in c
- Get Count of assets in HyperLedger Composer Query?
- Hyperledger composer network install
- Getting timestamps in deterministic way in Hyperle
- is there any size limit for pdf in hyperledger fab
correct, it should be performed on the client side. So you would implement any encryption client side as opposed to the Hyperledger Composer TP functions. If you encrypt the data (eg. even at a field/attribute level), then you will need to provide a means to share the decryption keys. As far as the ledger at rest is concerned, it can be encrypted via file system encryption on the peer, and for any data in-transit, can be encrypted via TLS.