package observability import ( "crypto/rand" "encoding/hex" ) func readRandom(b []byte) (int, error) { return rand.Read(b) } func hexEncode(b []byte) string { return hex.EncodeToString(b) }