Remove pointless local assign of self._password (sasl.scram)

This commit is contained in:
jesopo 2019-02-06 21:16:39 +00:00
parent 90b540d5dc
commit cbdd8d6fc9

View file

@ -55,9 +55,8 @@ class SCRAM(object):
nonce = pieces[b"r"] nonce = pieces[b"r"]
salt = base64.b64decode(pieces[b"s"]) salt = base64.b64decode(pieces[b"s"])
iterations = pieces[b"i"] iterations = pieces[b"i"]
password = self._password
salted_password = hashlib.pbkdf2_hmac(self._algo, password, salt, salted_password = hashlib.pbkdf2_hmac(self._algo, self._password, salt,
int(iterations), dklen=None) int(iterations), dklen=None)
self._salted_password = salted_password self._salted_password = salted_password