Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ErrBadRecord = errors.New("bad dht record")
ErrBadRecord is returned any time a dht record is found to be incorrectly formatted or signed.
var ErrInvalidRecordType = errors.New("invalid record keytype")
ErrInvalidRecordType is returned if a DHTRecord keys prefix is not found in the Validator map of the DHT.
Functions ¶
func MakePutRecord ¶
func MakePutRecord(sk ci.PrivKey, key u.Key, value []byte) (*pb.Record, error)
MakePutRecord creates and signs a dht record for the given key/value pair
func RecordBlobForSig ¶
func RecordBlobForSig(r *pb.Record) []byte
RecordBlobForSig returns the blob protected by the record signature
func ValidatePublicKeyRecord ¶
func ValidatePublicKeyRecord(k u.Key, val []byte) error
ValidatePublicKeyRecord implements ValidatorFunc and verifies that the passed in record value is the PublicKey that matches the passed in key.
Types ¶
type Validator ¶
type Validator map[string]ValidatorFunc
Validator is an object that helps ensure routing records are valid. It is a collection of validator functions, each of which implements its own notion of validity.
func (Validator) VerifyRecord ¶
func (v Validator) VerifyRecord(r *pb.Record, pk ci.PubKey) error
VerifyRecord checks a record and ensures it is still valid. It runs needed validators
type ValidatorFunc ¶
type ValidatorFunc func(u.Key, []byte) error
ValidatorFunc is a function that is called to validate a given type of DHTRecord.