Added missing mutex acquisition

This commit is contained in:
Mathias Hall-Andersen 2018-02-11 23:07:07 +01:00
parent 8bdadaae59
commit 04ded4c631

View file

@ -62,6 +62,9 @@ func (st *CookieChecker) Init(pk NoisePublicKey) {
}
func (st *CookieChecker) CheckMAC1(msg []byte) bool {
st.mutex.RLock()
defer st.mutex.RUnlock()
size := len(msg)
smac2 := size - blake2s.Size128
smac1 := smac2 - blake2s.Size128