|
|
@ -19,6 +19,7 @@ package account
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
import (
|
|
|
|
"regexp"
|
|
|
|
"regexp"
|
|
|
|
|
|
|
|
"runtime"
|
|
|
|
|
|
|
|
|
|
|
|
"golang.org/x/crypto/argon2"
|
|
|
|
"golang.org/x/crypto/argon2"
|
|
|
|
)
|
|
|
|
)
|
|
|
@ -34,13 +35,13 @@ const (
|
|
|
|
ArgonKeySize = 32
|
|
|
|
ArgonKeySize = 32
|
|
|
|
ArgonSaltSize = 16
|
|
|
|
ArgonSaltSize = 16
|
|
|
|
|
|
|
|
|
|
|
|
ArgonMaxInstances = 16
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
UUIDSize = 16
|
|
|
|
UUIDSize = 16
|
|
|
|
TokenSize = 32
|
|
|
|
TokenSize = 32
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
var (
|
|
|
|
|
|
|
|
ArgonMaxInstances = runtime.NumCPU()
|
|
|
|
|
|
|
|
|
|
|
|
isValidUsername = regexp.MustCompile(`^\w{1,16}$`).MatchString
|
|
|
|
isValidUsername = regexp.MustCompile(`^\w{1,16}$`).MatchString
|
|
|
|
semaphore = make(chan bool, ArgonMaxInstances)
|
|
|
|
semaphore = make(chan bool, ArgonMaxInstances)
|
|
|
|
)
|
|
|
|
)
|
|
|
|