internal.go 202 B

123456789
  1. package observability
  2. import (
  3. "crypto/rand"
  4. "encoding/hex"
  5. )
  6. func readRandom(b []byte) (int, error) { return rand.Read(b) }
  7. func hexEncode(b []byte) string { return hex.EncodeToString(b) }