mirror of
https://github.com/openziti/zrok.git
synced 2024-11-08 01:04:08 +01:00
24 lines
532 B
Go
24 lines
532 B
Go
package controller
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"encoding/hex"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func generateApiToken() (string, error) {
|
|
bytes := make([]byte, 64)
|
|
if _, err := rand.Read(bytes); err != nil {
|
|
return "", errors.Wrap(err, "error generating random api token")
|
|
}
|
|
return hex.EncodeToString(bytes), nil
|
|
}
|
|
|
|
func randomId() (string, error) {
|
|
bytes := make([]byte, 8)
|
|
if _, err := rand.Read(bytes); err != nil {
|
|
return "", errors.Wrap(err, "error generating random identity id")
|
|
}
|
|
return hex.EncodeToString(bytes), nil
|
|
}
|