include alpha-numeric random string generation in secret package

This commit is contained in:
Pavel Sviderski
2024-11-14 11:45:28 +10:00
parent a4be45186d
commit 22bca16226
2 changed files with 30 additions and 8 deletions
+30
View File
@@ -0,0 +1,30 @@
package secret
import (
"crypto/rand"
"fmt"
"math/big"
)
// NewID generates a unique 128-bit random ID as a hex-encoded string.
func NewID() (string, error) {
if s, err := New(16); err != nil {
return "", err
} else {
return s.String(), nil
}
}
// RandomAlphaNumeric generates a random string of the specified length using the characters [a-z0-9].
func RandomAlphaNumeric(length int) (string, error) {
const charSet = "abcdefghijklmnopqrstuvwxyz0123456789"
s := make([]byte, length)
for i := range s {
randIdx, err := rand.Int(rand.Reader, big.NewInt(int64(len(charSet))))
if err != nil {
return "", fmt.Errorf("get random number: %w", err)
}
s[i] = charSet[randIdx.Int64()]
}
return string(s), nil
}
-8
View File
@@ -54,11 +54,3 @@ func New(len int) (Secret, error) {
}
return s, nil
}
func NewID() (string, error) {
if s, err := New(16); err != nil {
return "", err
} else {
return s.String(), nil
}
}