A Python implementation of a secure password generator that creates strong, randomized passwords with customizable character sets.
This project demonstrates how to generate secure passwords using Python's randomization capabilities. It's an educational tool for understanding basic security principles in password creation and helps users create strong passwords that are difficult to crack.
- Customizable number of letters, symbols, and numbers
- Random selection from extensive character sets
- Automatic shuffling for maximum entropy
- Easy-to-use command-line interface
- Generates passwords of varying complexity levels
-
Clone the repository:
git clone https://github.com/fahadelahikhan/SecurePasswordGenerator-Python.git cd SecurePasswordGenerator-Python
-
Run the password generator:
python Password_Generator.py
# Import the password generator function
from password_generator import generate_password
# Generate a password with 8 letters, 2 symbols, and 2 numbers
password = generate_password(8, 2, 2)
print(password) # Output: Example output: "a3#B7$dE"
# Generate a strong password with 12 letters, 4 symbols, and 4 numbers
strong_password = generate_password(12, 4, 4)
print(f"Your secure password: {strong_password}")
# Generate a simple password with 6 letters and 2 numbers
simple_password = generate_password(6, 0, 2)
print(f"Your simple password: {simple_password}")
The password generator works by:
- Selecting random characters from predefined sets of letters (both uppercase and lowercase), numbers, and symbols
- Combining these characters based on user-specified quantities
- Shuffling the resulting character list to ensure maximum randomness
- Joining the characters into a final password string
The algorithm ensures that each character is randomly selected and that the final password has a good mix of different character types.
Distributed under the MIT License. See LICENSE for details.
Note: While this password generator creates strong passwords, always follow best security practices. Never share your passwords, use multi-factor authentication when available, and consider using a password manager for optimal security.