mirror of
https://github.com/pocketbase/pocketbase.git
synced 2026-05-18 22:00:21 -04:00
upgraded to math/rand/v2
This commit is contained in:
@@ -3,7 +3,7 @@ package security
|
||||
import (
|
||||
cryptoRand "crypto/rand"
|
||||
"math/big"
|
||||
mathRand "math/rand" // @todo replace with rand/v2?
|
||||
mathRand "math/rand/v2"
|
||||
)
|
||||
|
||||
const defaultRandomAlphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
|
||||
@@ -52,7 +52,7 @@ func PseudorandomStringWithAlphabet(length int, alphabet string) string {
|
||||
max := len(alphabet)
|
||||
|
||||
for i := range b {
|
||||
b[i] = alphabet[mathRand.Intn(max)]
|
||||
b[i] = alphabet[mathRand.IntN(max)]
|
||||
}
|
||||
|
||||
return string(b)
|
||||
|
||||
Reference in New Issue
Block a user