func randomHex()

in e2etestrunner/util.go [23:29]


func randomHex(length uint8) (string, error) {
	bytes := make([]byte, length)
	if _, err := rand.Read(bytes); err != nil {
		return "", err
	}
	return hex.EncodeToString(bytes), nil
}