k3s/vendor/github.com/bhendo/go-powershell/utils/rand.go
Darren Shepherd d246c89254 go mod vendor
2019-09-05 15:16:39 -07:00

21 lines
284 B
Go

// Copyright (c) 2017 Gorillalabs. All rights reserved.
package utils
import (
"crypto/rand"
"encoding/hex"
)
func CreateRandomString(bytes int) string {
c := bytes
b := make([]byte, c)
_, err := rand.Read(b)
if err != nil {
panic(err)
}
return hex.EncodeToString(b)
}