Utilities/crypto/py3PBKDF2.py

changeset 6188
5a6ae3be31e6
parent 6048
82ad8ec9548c
child 6645
ad476851d7e0
diff -r 2cc7e3629784 -r 5a6ae3be31e6 Utilities/crypto/py3PBKDF2.py
--- a/Utilities/crypto/py3PBKDF2.py	Mon Mar 12 19:57:16 2018 +0100
+++ b/Utilities/crypto/py3PBKDF2.py	Tue Mar 13 14:54:46 2018 +0100
@@ -37,7 +37,7 @@
     @return hashed password (bytes)
     """
     pwHash = password
-    for i in range(iterations):
+    for _ in range(iterations):
         pwHash = hmac.new(salt, pwHash, digestMod).digest()
     return pwHash
 

eric ide

mercurial