Refactored password type

This commit is contained in:
Konsta Vesterinen
2013-10-24 13:49:11 +03:00
parent 576edb19a5
commit f37d9d6a03

View File

@@ -14,7 +14,6 @@ except ImportError:
class Password(object):
def __init__(self, value, context=None):
# Store the hash.
self.hash = value
@@ -87,6 +86,12 @@ class PasswordType(types.TypeDecorator, ScalarCoercible):
self.context = CryptContext(**kwargs)
if max_length is None:
max_length = self.calculate_max_length()
# Set the length to the now-calculated max length.
self.length = max_length
def calculate_max_length(self):
# Calculate the largest possible encoded password.
# name + rounds + salt + hash + ($ * 4) of largest hash
max_lengths = [1024]
@@ -102,11 +107,8 @@ class PasswordType(types.TypeDecorator, ScalarCoercible):
)
max_lengths.append(length)
# Set the max_length to the maximum calculated max length.
max_length = max(max_lengths)
# Set the length to the now-calculated max length.
self.length = max_length
# Return the maximum calculated max length.
return max(max_lengths)
def load_dialect_impl(self, dialect):
if dialect.name == 'postgresql':