Confidentiality of assets

+1 vote
We want to issue a lot of assets over a private blockchain, but for the information regarding those assets to be confidential but still tied down in the chain. Is there a way to do this?
asked Jun 26, 2015 by anonymous

1 Answer

0 votes

Yes, when you create an asset using the issue API call, the last parameter lets you add any number of custom fields to your asset. These are then visible to all other blockchain nodes via the listassets API call.

In those custom fields you can enter hashes (e.g. using sha256) of the information you want. The information will not be visible to anybody, but it will be tied down. In other words anyone, when presented with the confidential information, can verify that it matches the appropriate asset custom field.

answered Jun 26, 2015 by MultiChain
...