mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
21 lines
284 B
Go
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)
|
|
}
|