Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SigningIdentity ¶
type SigningIdentity interface {
// Serialize returns a byte representation of this identity which is used to verify
// messages signed by this SigningIdentity
Serialize() ([]byte, error)
// Sign signs the given payload and returns a signature
Sign([]byte) ([]byte, error)
}
SigningIdentity signs messages and serializes its public identity to bytes
type SigningIdentityFetcher ¶
type SigningIdentityFetcher interface {
endorsement.Dependency
// SigningIdentityForRequest returns a signing identity for the given proposal
SigningIdentityForRequest(*peer.SignedProposal) (SigningIdentity, error)
}
SigningIdentityFetcher fetches a signing identity based on the proposal
Source Files
¶
- identities.go
Click to show internal directories.
Click to hide internal directories.