You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This fixes Fabric Model.
Ongoing commits attached to this issue
[ci-skip]
Change-Id: Ie605ac4700e8c53555bf6b76845994ae1da47067
Signed-off-by: Nick Gaski <[email protected]>
Copy file name to clipboardexpand all lines: docs/source/fabric_model.rst
+4-5
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ channel. Each peer maintains a copy of the ledger for each channel of which they
55
55
- Prior to appending a block, a versioning check is performed to ensure that states for assets that were read have not changed since chaincode execution time
56
56
- There is immutability once a transaction is validated and committed
57
57
- A channel's ledger contains a configuration block defining policies, access control lists, and other pertinent information
58
-
- Channel's contain :ref:`MSP`s allowing crypto materials to be derived from different certificate authorities
58
+
- Channel's contain :ref:`MSP` instances allowing for crypto materials to be derived from different certificate authorities
59
59
60
60
See the :doc:`ledger` topic for a deeper dive on the databases, storage structure, and "query-ability."
61
61
@@ -77,7 +77,7 @@ Chaincode gets installed only on peers that need to access the asset states
77
77
to perform reads and writes (in other words, if a chaincode is not installed on
78
78
a peer, it will not be able to properly interface with the ledger). To further
79
79
obfuscate the data, values within chaincode can be encrypted (in part or in total) using common
80
-
cryptographic algorithms such as SHA0-256, etc. before appending to the ledger.
80
+
cryptographic algorithms such as SHA-256 before appending to the ledger.
81
81
82
82
.. _Security-Membership-Services:
83
83
@@ -92,9 +92,8 @@ governed on the broader network and on channel levels. This "permissioned" noti
92
92
of Fabric, coupled with the existence and capabilities of channels, helps address
93
93
scenarios where privacy and confidentiality are paramount concerns.
94
94
95
-
See the 'Fabric CA <https://hyperledger-fabric.readthedocs.io/en/latest/Setup/ca-setup.html>`__
96
-
section to better understand cryptographic implementations, and the sign, verify,
97
-
authenticate approach used in Fabric.
95
+
See the :doc:`Fabric CA <Setup/ca-setup>` section to better understand cryptographic
96
+
implementations, and the sign, verify, authenticate approach used in Fabric.
0 commit comments