mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-21 20:09:37 +00:00
chore: fix max limit for password to keep it 64 chars
This commit is contained in:
parent
bebeaf2de3
commit
14637a8709
@ -15,7 +15,7 @@ def random_name_string():
|
||||
def random_password_string():
|
||||
return ''.join((random.choice(
|
||||
string.ascii_letters + string.digits + string.punctuation)
|
||||
for _ in range(10, 28))
|
||||
for _ in range(10, 65))
|
||||
)
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user