Hyperledger Indy - Trust Anchor 和 ENDORSER 之间有什么区别?
Hyperledger Indy - What's the difference between Trust Anchor and ENDORSER?
我读了
https://github.com/hyperledger/indy-sdk/blob/master/docs/getting-started/indy-walkthrough.md and https://github.com/hyperledger/indy-node/blob/master/docs/source/auth_rules.md.
我觉得Trust Anchor
, ENDORSER
的作用是一样的,不知道有什么区别
从 SDK 的角度来看,Trust Anchor 等于 Endorser,这意味着 Trust Anchor 实际上是一个 Endorser,但从更广泛的意义上来说,在查找 Sovrin 字典时,Trust Anchor 是一个实体,例如 Credential Issuer(例如:Government,University,Company ecc..) 是权威机构。
实际上,在尝试使用 Java Wrapper 进行一些实现时,我已经在方法 buildNymRequestuildNymRequest(String submitterDid,....,String role) 中看到如果放入 role="TRUST_ANCHOR" 实际上它将在 NYM 交易中被翻译成 ENDORSER(我使用 indyscan https://github.com/Patrik-Stas/indyscan 检查交易)。
您可能还想查看我在 Java 中对某些操作的实现(正在进行的工作)。
https://github.com/caltr98/IndyWorkings
如果您在 Trust_Anchor/Endorser 崩溃中找到更好的解决方案,请告诉我。
我读了 https://github.com/hyperledger/indy-sdk/blob/master/docs/getting-started/indy-walkthrough.md and https://github.com/hyperledger/indy-node/blob/master/docs/source/auth_rules.md.
我觉得Trust Anchor
, ENDORSER
的作用是一样的,不知道有什么区别
从 SDK 的角度来看,Trust Anchor 等于 Endorser,这意味着 Trust Anchor 实际上是一个 Endorser,但从更广泛的意义上来说,在查找 Sovrin 字典时,Trust Anchor 是一个实体,例如 Credential Issuer(例如:Government,University,Company ecc..) 是权威机构。
实际上,在尝试使用 Java Wrapper 进行一些实现时,我已经在方法 buildNymRequestuildNymRequest(String submitterDid,....,String role) 中看到如果放入 role="TRUST_ANCHOR" 实际上它将在 NYM 交易中被翻译成 ENDORSER(我使用 indyscan https://github.com/Patrik-Stas/indyscan 检查交易)。 您可能还想查看我在 Java 中对某些操作的实现(正在进行的工作)。 https://github.com/caltr98/IndyWorkings
如果您在 Trust_Anchor/Endorser 崩溃中找到更好的解决方案,请告诉我。