代码拉取完成,页面将自动刷新
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package idemix
import (
"github.com/hyperledger/fabric-amcl/amcl"
"github.com/hyperledger/fabric-amcl/amcl/FP256BN"
"github.com/pkg/errors"
)
// nonRevokedProver is the Prover of the ZK proof system that handles revocation.
type nonRevokedProver interface {
// getFSContribution returns the non-revocation contribution to the Fiat-Shamir hash, forming the challenge of the ZKP,
getFSContribution(rh *FP256BN.BIG, rRh *FP256BN.BIG, cri *CredentialRevocationInformation, rng *amcl.RAND) ([]byte, error)
// getNonRevokedProof returns a proof of non-revocation with the respect to passed challenge
getNonRevokedProof(chal *FP256BN.BIG) (*NonRevocationProof, error)
}
// nopNonRevokedProver is an empty nonRevokedProver
type nopNonRevokedProver struct{}
func (prover *nopNonRevokedProver) getFSContribution(rh *FP256BN.BIG, rRh *FP256BN.BIG, cri *CredentialRevocationInformation, rng *amcl.RAND) ([]byte, error) {
return nil, nil
}
func (prover *nopNonRevokedProver) getNonRevokedProof(chal *FP256BN.BIG) (*NonRevocationProof, error) {
ret := &NonRevocationProof{}
ret.RevocationAlg = int32(ALG_NO_REVOCATION)
return ret, nil
}
// getNonRevocationProver returns the nonRevokedProver bound to the passed revocation algorithm
func getNonRevocationProver(algorithm RevocationAlgorithm) (nonRevokedProver, error) {
switch algorithm {
case ALG_NO_REVOCATION:
return &nopNonRevokedProver{}, nil
default:
// unknown revocation algorithm
return nil, errors.Errorf("unknown revocation algorithm %d", algorithm)
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。