代码拉取完成,页面将自动刷新
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package protoutil
import (
"bytes"
"fmt"
"github.com/golang/protobuf/proto"
"github.com/hyperledger/fabric-protos-go/common"
)
// SignedData is used to represent the general triplet required to verify a signature
// This is intended to be generic across crypto schemes, while most crypto schemes will
// include the signing identity and a nonce within the Data, this is left to the crypto
// implementation.
type SignedData struct {
Data []byte
Identity []byte
Signature []byte
}
// ConfigUpdateEnvelopeAsSignedData returns the set of signatures for the
// ConfigUpdateEnvelope as SignedData or an error indicating why this was not
// possible.
func ConfigUpdateEnvelopeAsSignedData(ce *common.ConfigUpdateEnvelope) ([]*SignedData, error) {
if ce == nil {
return nil, fmt.Errorf("No signatures for nil SignedConfigItem")
}
result := make([]*SignedData, len(ce.Signatures))
for i, configSig := range ce.Signatures {
sigHeader := &common.SignatureHeader{}
err := proto.Unmarshal(configSig.SignatureHeader, sigHeader)
if err != nil {
return nil, err
}
result[i] = &SignedData{
Data: bytes.Join([][]byte{configSig.SignatureHeader, ce.ConfigUpdate}, nil),
Identity: sigHeader.Creator,
Signature: configSig.Signature,
}
}
return result, nil
}
// EnvelopeAsSignedData returns the signatures for the Envelope as SignedData
// slice of length 1 or an error indicating why this was not possible.
func EnvelopeAsSignedData(env *common.Envelope) ([]*SignedData, error) {
if env == nil {
return nil, fmt.Errorf("No signatures for nil Envelope")
}
payload := &common.Payload{}
err := proto.Unmarshal(env.Payload, payload)
if err != nil {
return nil, err
}
if payload.Header == nil /* || payload.Header.SignatureHeader == nil */ {
return nil, fmt.Errorf("Missing Header")
}
shdr := &common.SignatureHeader{}
err = proto.Unmarshal(payload.Header.SignatureHeader, shdr)
if err != nil {
return nil, fmt.Errorf("GetSignatureHeaderFromBytes failed, err %s", err)
}
return []*SignedData{{
Data: env.Payload,
Identity: shdr.Creator,
Signature: env.Signature,
}}, nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。