eric6/Utilities/crypto/py3PBKDF2.py

changeset 7259
7c017076c12e
parent 7229
53054eb5b15a
child 7360
9190402e4505
diff -r aff39db4dacc -r 7c017076c12e eric6/Utilities/crypto/py3PBKDF2.py
--- a/eric6/Utilities/crypto/py3PBKDF2.py	Mon Sep 23 19:10:42 2019 +0200
+++ b/eric6/Utilities/crypto/py3PBKDF2.py	Mon Sep 23 19:22:12 2019 +0200
@@ -71,8 +71,8 @@
     @param saltSize size of the salt (integer)
     @return hashed password entry according to PBKDF2 specification (string)
     """
-    digestname, iterations, salt, pwHash = \
-        hashPasswordTuple(password, digestMod, iterations, saltSize)
+    digestname, iterations, salt, pwHash = hashPasswordTuple(
+        password, digestMod, iterations, saltSize)
     return Delimiter.join([
         digestname,
         str(iterations),

eric ide

mercurial