Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update MemKey.py to 0.2 #1

Merged
merged 1 commit into from
Jul 7, 2023
Merged

Update MemKey.py to 0.2 #1

merged 1 commit into from
Jul 7, 2023

Conversation

Mora-Bytes
Copy link
Owner

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))

Timeouts after 75 rounds(Not Customizable).
Fixed the Length system(Customizable).
Checks how Strong a Password is.
@Mora-Bytes Mora-Bytes merged commit e05c271 into main Jul 7, 2023
@Mora-Bytes Mora-Bytes deleted the Mora-Minor-0.2 branch July 7, 2023 09:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant