This commit is contained in:
Usman Nasir
2019-12-10 15:09:10 +05:00
parent d0dc397463
commit 5e7aeeb597
231 changed files with 1698 additions and 1697 deletions

View File

@@ -13,7 +13,7 @@ def generate_pass(length=14):
password = []
while len(password) < length:
key = choice(char_set.keys())
key = choice(list(char_set.keys()))
a_char = urandom(1)
if a_char in char_set[key]:
if check_prev_char(password, char_set[key]):