【发布时间】:2018-11-10 03:48:41
【问题描述】:
我试图了解 Hyperledger Fabric v1.3 中的 ACL。我阅读了configtx.yaml 并看到了下面描述的channel 部分:
Channel: &ChannelDefaults
# Policies defines the set of policies at this level of the config tree
# For Channel policies, their canonical path is
# /Channel/<PolicyName>
Policies:
# Who may invoke the 'Deliver' API
Readers:
Type: ImplicitMeta
Rule: "ANY Readers"
# Who may invoke the 'Broadcast' API
Writers:
Type: ImplicitMeta
Rule: "ANY Writers"
# By default, who may modify elements at this config level
Admins:
Type: ImplicitMeta
Rule: "MAJORITY Admins"
根据文档,提到了 Readers # Who may invoke the 'Deliver' API 和 Writers # Who may invoke the 'Broadcast' API。我无法理解 Deliver API 和 Broadcast API 做什么。
如果有人知道,请告诉我。
【问题讨论】:
标签: hyperledger-fabric access-control