I'm new to Hyperledger Fabric. In the current version of Hyperledger Fabric, in chaincode.go I can't find the function called ReadCertAttributes. Is there any way to get attributes?
相关问题
- How to add a new Orderer Organization to existing
- chaincode in hyperledger composer vs chaincode in
- Hyperledger fabcar sample fabric showing connect f
- OCI runtime exec failed: exec failed: container_li
- User level restriction in hyperledger fabric 1.0
相关文章
- When I generate MSP for some organization, I can c
- Does Composer needs an already built Fabric networ
- Hyperledger transaction verification
- Hyperledger Fabric - Error while Instantiating cha
- Hyperledger fabric's ChannelCreationPolicy
- what kind of peer types does hyperledger have?
- How to retrieve user information from recent versi
- hyperledger fabric first_network example create ch
Starting from Hypeledger Fabric 1.0.0 you can use
GetCreator
method ofChaincodeStubInterface
to obtain clients certificate, e.g.:For example you can do something similar to: