This program generates random passwords and passphrases in Python.
This program uses the EFF wordlist to generate random passphrases. The EFF wordlist is a list of 77,767 words that are commonly used in English. This makes it a good choice for generating passphrases that are both strong and memorable.
The program also includes a function for generating random passwords. The password generator uses a combination of lowercase letters, uppercase letters, numbers, and special characters to create passwords that are difficult to crack.
- Python 3.x
- requests
- pyperclip
To generate a password, run the following command:
python3 password_generator.py
This will generate a random password of 16 characters and copy it to the clipboard.
To generate a passphrase, run the following command:
python3 passphrase_generator.py
This will generate a random passphrase of 6 words and print it to the console.
This program is licensed under the MIT License.
This program was created by anhkhoakz.
I hope this helps!