Releases: Mora-Bytes/MemKey
Releases · Mora-Bytes/MemKey
0.2
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
0.1
Just the start.