Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Mapper ¶
type Mapper interface { // Put associates an identity to its given pkiID, and returns an error // in case the given pkiID doesn't match the identity Put(pkiID common.PKIidType, identity api.PeerIdentityType) error // Get returns the identity of a given pkiID, or error if such an identity // isn't found Get(pkiID common.PKIidType) (api.PeerIdentityType, error) // Sign signs a message, returns a signed message on success // or an error on failure Sign(msg []byte) ([]byte, error) // Verify verifies a signed message Verify(vkID, signature, message []byte) error // GetPKIidOfCert returns the PKI-ID of a certificate GetPKIidOfCert(api.PeerIdentityType) common.PKIidType }
Mapper holds mappings between pkiID to certificates(identities) of peers
func NewIdentityMapper ¶
func NewIdentityMapper(mcs api.MessageCryptoService) Mapper
NewIdentityMapper method, all we need is a reference to a MessageCryptoService
Click to show internal directories.
Click to hide internal directories.