mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-02-22 08:31:30 +08:00
Add mutex to deriveArgon2IDKey
This commit is contained in:
parent
0fec7cb4c3
commit
fbd4a60a4a
@ -2,6 +2,7 @@ package account
|
||||
|
||||
import (
|
||||
"regexp"
|
||||
"sync"
|
||||
|
||||
"golang.org/x/crypto/argon2"
|
||||
)
|
||||
@ -21,8 +22,14 @@ const (
|
||||
TokenSize = 32
|
||||
)
|
||||
|
||||
var isValidUsername = regexp.MustCompile(`^\w{1,16}$`).MatchString
|
||||
var (
|
||||
isValidUsername = regexp.MustCompile(`^\w{1,16}$`).MatchString
|
||||
argonMtx sync.Mutex
|
||||
)
|
||||
|
||||
func deriveArgon2IDKey(password, salt []byte) []byte {
|
||||
argonMtx.Lock()
|
||||
defer argonMtx.Unlock()
|
||||
|
||||
return argon2.IDKey(password, salt, ArgonTime, ArgonMemory, ArgonThreads, ArgonKeySize)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user