maddy/dispatcher/msgid.go
fox.cpp 35c3b1c792
Restructure code tree
Root package now contains only initialization code and 'dummy' module.

Each module now got its own package. Module packages are grouped by
their main purpose (storage/, target/, auth/, etc). Shared code is
placed in these "group" packages.

Parser for module references in config is moved into config/module.

Code shared by tests (mock modules, etc) is placed in testutils.
2019-09-08 16:06:38 +03:00

16 lines
366 B
Go

package dispatcher
import (
"encoding/hex"
"math/rand"
)
// GenerateMsgID generates a string usable as MsgID field in module.MsgMeta.
//
// TODO: Find a better place for this function. 'dispatcher' package seems
// irrelevant.
func GenerateMsgID() (string, error) {
rawID := make([]byte, 32)
_, err := rand.Read(rawID)
return hex.EncodeToString(rawID), err
}