From 2bd413e657579f9369b34220315089393b4a3cb0 Mon Sep 17 00:00:00 2001 From: Tom Galloway Date: Wed, 24 Apr 2013 09:29:58 +0100 Subject: If needed instead of an elif. --- modules/installed/lib/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/installed/lib/auth.py b/modules/installed/lib/auth.py index 4aa5be5..6e67fb8 100644 --- a/modules/installed/lib/auth.py +++ b/modules/installed/lib/auth.py @@ -28,7 +28,7 @@ def check_credentials(username, passphrase): u = cfg.users[username] - elif u is None: + if u is None: # hash the password whether the user exists, to foil timing # side-channel attacks hashlib.md5(passphrase).hexdigest() -- cgit v1.2.3