summaryrefslogtreecommitdiff
path: root/src/mailman/utilities/passwords.py
diff options
context:
space:
mode:
authorBarry Warsaw2011-08-03 23:01:06 -0400
committerBarry Warsaw2011-08-03 23:01:06 -0400
commitfdb49295a5f859059f2b8d105d30e97f5b059e77 (patch)
tree84bbd8097dc150cc089069761612ae0a47372d79 /src/mailman/utilities/passwords.py
parent6b7f61df17382d29fcb4b403d4485d1d08481177 (diff)
downloadmailman-fdb49295a5f859059f2b8d105d30e97f5b059e77.tar.gz
mailman-fdb49295a5f859059f2b8d105d30e97f5b059e77.tar.zst
mailman-fdb49295a5f859059f2b8d105d30e97f5b059e77.zip
Diffstat (limited to 'src/mailman/utilities/passwords.py')
-rw-r--r--src/mailman/utilities/passwords.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mailman/utilities/passwords.py b/src/mailman/utilities/passwords.py
index 896872436..f595a3c55 100644
--- a/src/mailman/utilities/passwords.py
+++ b/src/mailman/utilities/passwords.py
@@ -55,7 +55,6 @@ SCHEME_RE = r'{(?P<scheme>[^}]+?)}(?P<rest>.*)'
-# pylint: disable-msg=W0232
class PasswordScheme:
"""Password scheme base class."""
TAG = b''
@@ -99,7 +98,6 @@ class NoPasswordScheme(PasswordScheme):
"""See `PasswordScheme`."""
return b''
- # pylint: disable-msg=W0613
@staticmethod
def check_response(challenge, response):
"""See `PasswordScheme`."""
@@ -211,7 +209,6 @@ class PBKDF2PasswordScheme(PasswordScheme):
derived_key = encode(digest + salt)
return derived_key
- # pylint: disable-msg=W0221
@staticmethod
def check_response(challenge, response, prf, iterations):
"""See `PasswordScheme`."""