Added missing mutex acquisition
This commit is contained in:
parent
8bdadaae59
commit
04ded4c631
@ -62,6 +62,9 @@ func (st *CookieChecker) Init(pk NoisePublicKey) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (st *CookieChecker) CheckMAC1(msg []byte) bool {
|
func (st *CookieChecker) CheckMAC1(msg []byte) bool {
|
||||||
|
st.mutex.RLock()
|
||||||
|
defer st.mutex.RUnlock()
|
||||||
|
|
||||||
size := len(msg)
|
size := len(msg)
|
||||||
smac2 := size - blake2s.Size128
|
smac2 := size - blake2s.Size128
|
||||||
smac1 := smac2 - blake2s.Size128
|
smac1 := smac2 - blake2s.Size128
|
||||||
|
Loading…
Reference in New Issue
Block a user