Refactored password type
This commit is contained in:
@@ -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':
|
||||
|
Reference in New Issue
Block a user