mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-03 03:27:13 +08:00
Add mutex to deriveArgon2IDKey
This commit is contained in:
parent
0fec7cb4c3
commit
fbd4a60a4a
@ -2,6 +2,7 @@ package account
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"regexp"
|
"regexp"
|
||||||
|
"sync"
|
||||||
|
|
||||||
"golang.org/x/crypto/argon2"
|
"golang.org/x/crypto/argon2"
|
||||||
)
|
)
|
||||||
@ -21,8 +22,14 @@ const (
|
|||||||
TokenSize = 32
|
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 {
|
func deriveArgon2IDKey(password, salt []byte) []byte {
|
||||||
|
argonMtx.Lock()
|
||||||
|
defer argonMtx.Unlock()
|
||||||
|
|
||||||
return argon2.IDKey(password, salt, ArgonTime, ArgonMemory, ArgonThreads, ArgonKeySize)
|
return argon2.IDKey(password, salt, ArgonTime, ArgonMemory, ArgonThreads, ArgonKeySize)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user