Skip to content

Commit 64d6237

Browse files
adecarombjoerkqvist
authored andcommitted
[FAB-7612] MSPPrincipal for anonymity
This change-set does the following: - It introduced a new method to learn if an identity is anonymous. - It provides an implementation for x509-based identities. - It introduces a new MSP principal classification to reason about anonymity of an identity Change-Id: I3fa53fa59cd0090813acaadfa4bf9674f974638e Signed-off-by: Angelo De Caro <adc@zurich.ibm.com> Signed-off-by: Mathias Bjoerkqvist <mbj@zurich.ibm.com>
1 parent aed26a5 commit 64d6237

26 files changed

+294
-59
lines changed

common/cauthdsl/cauthdsl_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ type mockIdentity struct {
3030
idBytes []byte
3131
}
3232

33+
func (id *mockIdentity) Anonymous() bool {
34+
panic("implement me")
35+
}
36+
3337
func (id *mockIdentity) ExpiresAt() time.Time {
3438
return time.Time{}
3539
}

common/mocks/msp/noopmsp.go

+4
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,10 @@ func newNoopIdentity() (m.Identity, error) {
102102
return &noopidentity{}, nil
103103
}
104104

105+
func (id *noopidentity) Anonymous() bool {
106+
panic("implement me")
107+
}
108+
105109
func (id *noopidentity) SatisfiesPrincipal(*msp.MSPPrincipal) error {
106110
return nil
107111
}

core/common/privdata/simplecollection_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ type mockIdentity struct {
3333
idBytes []byte
3434
}
3535

36+
func (id *mockIdentity) Anonymous() bool {
37+
panic("implement me")
38+
}
39+
3640
func (id *mockIdentity) ExpiresAt() time.Time {
3741
return time.Time{}
3842
}

core/policy/mocks/mocks.go

+4
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,10 @@ type MockIdentity struct {
8787
msg []byte
8888
}
8989

90+
func (id *MockIdentity) Anonymous() bool {
91+
panic("implement me")
92+
}
93+
9094
func (id *MockIdentity) SatisfiesPrincipal(p *mspproto.MSPPrincipal) error {
9195
fmt.Printf("[SatisfiesPrincipal] id : [%s], [%s]\n", string(id.identity), string(p.Principal))
9296
if !bytes.Equal(id.identity, p.Principal) {

discovery/support/mocks/identity.go

+51
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

msp/idemixmsp.go

+4
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,10 @@ type idemixidentity struct {
408408
associationProof *idemix.Signature
409409
}
410410

411+
func (id *idemixidentity) Anonymous() bool {
412+
return false
413+
}
414+
411415
func newIdemixIdentity(msp *idemixmsp, nym *FP256BN.ECP, role *m.MSPRole, ou *m.OrganizationUnit, proof *idemix.Signature) *idemixidentity {
412416
id := &idemixidentity{}
413417
id.Nym = nym

msp/identities.go

+4
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,10 @@ func (id *identity) GetOrganizationalUnits() []*OUIdentifier {
128128
return res
129129
}
130130

131+
func (id *identity) Anonymous() bool {
132+
return false
133+
}
134+
131135
// NewSerializedIdentity returns a serialized identity
132136
// having as content the passed mspID and x509 certificate in PEM format.
133137
// This method does not check the validity of certificate nor

msp/mocks/mocks.go

+4
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ type MockIdentity struct {
8383
ID string
8484
}
8585

86+
func (m *MockIdentity) Anonymous() bool {
87+
panic("implement me")
88+
}
89+
8690
func (m *MockIdentity) ExpiresAt() time.Time {
8791
panic("implement me")
8892
}

msp/msp.go

+3
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,9 @@ type Identity interface {
150150
// signer's identity
151151
GetOrganizationalUnits() []*OUIdentifier
152152

153+
// Anonymous returns true if this is an anonymous identity, false otherwise
154+
Anonymous() bool
155+
153156
// Verify a signature over some message using this identity as reference
154157
Verify(msg []byte, sig []byte) error
155158

msp/msp_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,7 @@ func TestIdentitiesGetters(t *testing.T) {
418418
assert.NotNil(t, idid)
419419
mspid := id.GetMSPIdentifier()
420420
assert.NotNil(t, mspid)
421+
assert.False(t, id.Anonymous())
421422
}
422423

423424
func TestSignAndVerify(t *testing.T) {

peer/gossip/mocks/mocks.go

+4
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,10 @@ type Identity struct {
134134
Msg []byte
135135
}
136136

137+
func (id *Identity) Anonymous() bool {
138+
panic("implement me")
139+
}
140+
137141
func (id *Identity) ExpiresAt() time.Time {
138142
return id.expirationDate
139143
}

peer/mocks/signer.go

+51
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protos/common/collection.pb.go

+6-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protos/common/policies.pb.go

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protos/discovery/protocol.pb.go

+6-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protos/gossip/message.pb.go

+6-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protos/ledger/rwset/kvrwset/kv_rwset.pb.go

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protos/msp/identities.pb.go

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)