Skip to content
Compare
Choose a tag to compare
@Mora-Bytes Mora-Bytes released this 07 Jul 09:53
e05c271

1. Timeouts after 75 rounds(Not Customizable).

[17]

[17] time = 0

[66 and 67]

[66] time += 1
[67] if time >= 75: raise TimeoutError('Please up the Password Length.')

2. Fixed the Length system(Customizable).

[14 and 15]

[14] if size <= 2:
[15] size = 6

3. Checks how Strong a Password is.

[58-63]

[58] ok = not ((re.search(r"[a-z]", password) is None) or (re.search(r"\d", password) is None) or (len(password) <= 11))
[59] if ok and not resp:
[60] print("Password: {0} (Strong)".format(password))
[61] done = True
[62] elif not resp:
[63] print("Password: {0} (Weak)".format(password))

What's Changed

  • Update MemKey.py to 0.2 by @MoraByte2027 in #1

New Contributors

  • @MoraByte2027 made their first contribution in #1

Full Changelog: 0.1...0.2