mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-04 03:57:13 +08:00
Set ArgonMaxInstances to number of cores
This commit is contained in:
parent
7dbcb18ebf
commit
192b777ac3
@ -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)
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user