1 Star 0 Fork 0

陈文甲 / fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
credential.go 3.90 KB
一键复制 编辑 原始数据 按行查看 历史
Angelo De Caro 提交于 2018-04-27 11:11 . [FAB-9526] Idemix BCCSP
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package bridge
import (
"bytes"
"github.com/golang/protobuf/proto"
"github.com/hyperledger/fabric-amcl/amcl"
"github.com/hyperledger/fabric-amcl/amcl/FP256BN"
"github.com/hyperledger/fabric/bccsp"
"github.com/hyperledger/fabric/bccsp/idemix/handlers"
cryptolib "github.com/hyperledger/fabric/idemix"
"github.com/pkg/errors"
)
// Credential encapsulates the idemix algorithms to produce (sign) a credential
// and verify it. Recall that a credential is produced by the Issuer upon a credential request,
// and it is verified by the requester.
type Credential struct {
NewRand func() *amcl.RAND
}
// Sign produces an idemix credential. It takes in input the issuer secret key,
// a serialised credential request, and a list of attribute values.
// Notice that attributes should not contain attributes whose type is IdemixHiddenAttribute
// cause the credential needs to carry all the attribute values.
func (c *Credential) Sign(key handlers.IssuerSecretKey, credentialRequest []byte, attributes []bccsp.IdemixAttribute) (res []byte, err error) {
defer func() {
if r := recover(); r != nil {
res = nil
err = errors.Errorf("failure [%s]", r)
}
}()
iisk, ok := key.(*IssuerSecretKey)
if !ok {
return nil, errors.Errorf("invalid issuer secret key, expected *Big, got [%T]", key)
}
cr := &cryptolib.CredRequest{}
err = proto.Unmarshal(credentialRequest, cr)
if err != nil {
return nil, errors.Wrap(err, "failed unmarshalling credential request")
}
attrValues := make([]*FP256BN.BIG, len(attributes))
for i := 0; i < len(attributes); i++ {
switch attributes[i].Type {
case bccsp.IdemixBytesAttribute:
attrValues[i] = cryptolib.HashModOrder(attributes[i].Value.([]byte))
case bccsp.IdemixIntAttribute:
attrValues[i] = FP256BN.NewBIGint(attributes[i].Value.(int))
default:
return nil, errors.Errorf("attribute type not allowed or supported [%v] at position [%d]", attributes[i].Type, i)
}
}
cred, err := cryptolib.NewCredential(iisk.SK, cr, attrValues, c.NewRand())
if err != nil {
return nil, errors.WithMessage(err, "failed creating new credential")
}
return proto.Marshal(cred)
}
// Verify checks that an idemix credential is cryptographically correct. It takes
// in input the user secret key (sk), the issuer public key (ipk), the serialised credential (credential),
// and a list of attributes. The list of attributes is optional, in case it is specified, Verify
// checks that the credential carries the specified attributes.
func (*Credential) Verify(sk handlers.Big, ipk handlers.IssuerPublicKey, credential []byte, attributes []bccsp.IdemixAttribute) (err error) {
defer func() {
if r := recover(); r != nil {
err = errors.Errorf("failure [%s]", r)
}
}()
isk, ok := sk.(*Big)
if !ok {
return errors.Errorf("invalid user secret key, expected *Big, got [%T]", sk)
}
iipk, ok := ipk.(*IssuerPublicKey)
if !ok {
return errors.Errorf("invalid issuer public key, expected *IssuerPublicKey, got [%T]", sk)
}
cred := &cryptolib.Credential{}
err = proto.Unmarshal(credential, cred)
if err != nil {
return err
}
for i := 0; i < len(attributes); i++ {
switch attributes[i].Type {
case bccsp.IdemixBytesAttribute:
if !bytes.Equal(
cryptolib.BigToBytes(cryptolib.HashModOrder(attributes[i].Value.([]byte))),
cred.Attrs[i]) {
return errors.Errorf("credential does not contain the correct attribute value at position [%d]", i)
}
case bccsp.IdemixIntAttribute:
if !bytes.Equal(
cryptolib.BigToBytes(FP256BN.NewBIGint(attributes[i].Value.(int))),
cred.Attrs[i]) {
return errors.Errorf("credential does not contain the correct attribute value at position [%d]", i)
}
case bccsp.IdemixHiddenAttribute:
continue
default:
return errors.Errorf("attribute type not allowed or supported [%v] at position [%d]", attributes[i].Type, i)
}
}
return cred.Ver(isk.E, iipk.PK)
}
1
https://gitee.com/venjia/fabric.git
git@gitee.com:venjia/fabric.git
venjia
fabric
fabric
v1.4.12

搜索帮助

53164aa7 5694891 3bd8fe86 5694891