代码拉取完成,页面将自动刷新
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package bridge
import (
"crypto/ecdsa"
"github.com/golang/protobuf/proto"
"github.com/hyperledger/fabric-amcl/amcl/FP256BN"
"github.com/hyperledger/fabric/bccsp"
cryptolib "github.com/hyperledger/fabric/idemix"
"github.com/pkg/errors"
)
// Revocation encapsulates the idemix algorithms for revocation
type Revocation struct {
}
// NewKey generate a new revocation key-pair.
func (*Revocation) NewKey() (*ecdsa.PrivateKey, error) {
return cryptolib.GenerateLongTermRevocationKey()
}
// Sign generates a new CRI with the respect to the passed unrevoked handles, epoch, and revocation algorithm.
func (*Revocation) Sign(key *ecdsa.PrivateKey, unrevokedHandles [][]byte, epoch int, alg bccsp.RevocationAlgorithm) (res []byte, err error) {
defer func() {
if r := recover(); r != nil {
res = nil
err = errors.Errorf("failure [%s]", r)
}
}()
handles := make([]*FP256BN.BIG, len(unrevokedHandles))
for i := 0; i < len(unrevokedHandles); i++ {
handles[i] = FP256BN.FromBytes(unrevokedHandles[i])
}
cri, err := cryptolib.CreateCRI(key, handles, epoch, cryptolib.RevocationAlgorithm(alg), NewRandOrPanic())
if err != nil {
return nil, errors.WithMessage(err, "failed creating CRI")
}
return proto.Marshal(cri)
}
// Verify checks that the passed serialised CRI (criRaw) is valid with the respect to the passed revocation public key,
// epoch, and revocation algorithm.
func (*Revocation) Verify(pk *ecdsa.PublicKey, criRaw []byte, epoch int, alg bccsp.RevocationAlgorithm) (err error) {
defer func() {
if r := recover(); r != nil {
err = errors.Errorf("failure [%s]", r)
}
}()
cri := &cryptolib.CredentialRevocationInformation{}
err = proto.Unmarshal(criRaw, cri)
if err != nil {
return err
}
return cryptolib.VerifyEpochPK(
pk,
cri.EpochPk,
cri.EpochPkSig,
int(cri.Epoch),
cryptolib.RevocationAlgorithm(cri.RevocationAlg),
)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。