fix undefined variable bug (#171)

This commit is contained in:
John 2017-02-05 23:44:43 +11:00 committed by 破娃酱
parent 5d479087a8
commit bf8bb8afe2

2
shadowsocks/obfsplugin/auth.py Normal file → Executable file
View file

@ -1434,7 +1434,7 @@ class auth_aes128_sha1(auth_base):
self.user_id = os.urandom(4)
self.user_key = self.server_info.key
buf += self.user_id
return buf + hmac.new(user_key, buf, self.hashfunc).digest()[:4]
return buf + hmac.new(self.user_key, buf, self.hashfunc).digest()[:4]
def client_udp_post_decrypt(self, buf):
user_key = self.server_info.key