forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
msp.go
145 lines (110 loc) · 3.09 KB
/
msp.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package mocks
import (
"time"
mspprotos "github.com/hyperledger/fabric-protos-go/msp"
"github.com/hyperledger/fabric/msp"
)
type noopmsp struct {
}
// NewNoopMsp returns a no-op implementation of the MSP interface
func NewNoopMsp() msp.MSP {
return &noopmsp{}
}
func (msp *noopmsp) Setup(*mspprotos.MSPConfig) error {
return nil
}
func (msp *noopmsp) GetVersion() msp.MSPVersion {
return 1
}
func (msp *noopmsp) GetType() msp.ProviderType {
return 0
}
func (msp *noopmsp) GetIdentifier() (string, error) {
return "NOOP", nil
}
func (msp *noopmsp) GetSigningIdentity(identifier *msp.IdentityIdentifier) (msp.SigningIdentity, error) {
id, _ := newNoopSigningIdentity()
return id, nil
}
func (msp *noopmsp) GetDefaultSigningIdentity() (msp.SigningIdentity, error) {
id, _ := newNoopSigningIdentity()
return id, nil
}
// GetRootCerts returns the root certificates for this MSP
func (msp *noopmsp) GetRootCerts() []msp.Identity {
return nil
}
// GetIntermediateCerts returns the intermediate root certificates for this MSP
func (msp *noopmsp) GetIntermediateCerts() []msp.Identity {
return nil
}
// GetTLSRootCerts returns the root certificates for this MSP
func (msp *noopmsp) GetTLSRootCerts() [][]byte {
return nil
}
// GetTLSIntermediateCerts returns the intermediate root certificates for this MSP
func (msp *noopmsp) GetTLSIntermediateCerts() [][]byte {
return nil
}
func (msp *noopmsp) DeserializeIdentity(serializedID []byte) (msp.Identity, error) {
id, _ := newNoopIdentity()
return id, nil
}
func (msp *noopmsp) Validate(id msp.Identity) error {
return nil
}
func (msp *noopmsp) SatisfiesPrincipal(id msp.Identity, principal *mspprotos.MSPPrincipal) error {
return nil
}
// IsWellFormed checks if the given identity can be deserialized into its provider-specific form
func (msp *noopmsp) IsWellFormed(_ *mspprotos.SerializedIdentity) error {
return nil
}
type noopidentity struct {
}
func newNoopIdentity() (msp.Identity, error) {
return &noopidentity{}, nil
}
func (id *noopidentity) Anonymous() bool {
panic("implement me")
}
func (id *noopidentity) SatisfiesPrincipal(*mspprotos.MSPPrincipal) error {
return nil
}
func (id *noopidentity) ExpiresAt() time.Time {
return time.Time{}
}
func (id *noopidentity) GetIdentifier() *msp.IdentityIdentifier {
return &msp.IdentityIdentifier{Mspid: "NOOP", Id: "Bob"}
}
func (id *noopidentity) GetMSPIdentifier() string {
return "MSPID"
}
func (id *noopidentity) Validate() error {
return nil
}
func (id *noopidentity) GetOrganizationalUnits() []*msp.OUIdentifier {
return nil
}
func (id *noopidentity) Verify(msg []byte, sig []byte) error {
return nil
}
func (id *noopidentity) Serialize() ([]byte, error) {
return []byte("cert"), nil
}
type noopsigningidentity struct {
noopidentity
}
func newNoopSigningIdentity() (msp.SigningIdentity, error) {
return &noopsigningidentity{}, nil
}
func (id *noopsigningidentity) Sign(msg []byte) ([]byte, error) {
return []byte("signature"), nil
}
func (id *noopsigningidentity) GetPublicVersion() msp.Identity {
return id
}