type MockIdentity struct { mock.Mock ID string }
func (m *MockIdentity) Anonymous() bool
func (m *MockIdentity) ExpiresAt() time.Time
func (m *MockIdentity) GetIdentifier() *msp.IdentityIdentifier
func (*MockIdentity) GetMSPIdentifier() string
func (*MockIdentity) GetOrganizationalUnits() []*msp.OUIdentifier
func (m *MockIdentity) SatisfiesPrincipal(principal *pmsp.MSPPrincipal) error
func (*MockIdentity) Serialize() ([]byte, error)
func (m *MockIdentity) Validate() error
func (*MockIdentity) Verify(msg []byte, sig []byte) error
type MockMSP struct { mock.Mock }
func (m *MockMSP) DeserializeIdentity(serializedIdentity []byte) (msp.Identity, error)
func (m *MockMSP) GetDefaultSigningIdentity() (msp.SigningIdentity, error)
func (m *MockMSP) GetIdentifier() (string, error)
func (m *MockMSP) GetSigningIdentity(identifier *msp.IdentityIdentifier) (msp.SigningIdentity, error)
func (m *MockMSP) GetTLSIntermediateCerts() [][]byte
func (m *MockMSP) GetTLSRootCerts() [][]byte
func (m *MockMSP) GetType() msp.ProviderType
func (m *MockMSP) GetVersion() msp.MSPVersion
func (m *MockMSP) IsWellFormed(_ *pmsp.SerializedIdentity) error
func (m *MockMSP) SatisfiesPrincipal(id msp.Identity, principal *pmsp.MSPPrincipal) error
func (m *MockMSP) Setup(config *pmsp.MSPConfig) error
func (m *MockMSP) Validate(id msp.Identity) error
type MockSigningIdentity struct { mock.Mock *MockIdentity }
func (*MockSigningIdentity) GetPublicVersion() msp.Identity
func (*MockSigningIdentity) Sign(msg []byte) ([]byte, error)