RustSecurePassGen is a secure password generator developed in the Rust programming language. This project is designed to create high-entropy, random passwords that can be used to enhance account security. π
- π Length customization: Users can choose the length of the password according to their needs.
- π Character set: Ability to choose from various character sets, including:
- Uppercase letters (A-Z)
π °οΈ - Lowercase letters (a-z) π
- Numbers (0-9) π’
- Special characters (!@#$%^&* and so on) π
- π« Exclusion of similar characters: Option to exclude characters that can be easily confused (e.g.,
0
andO
).
The project uses the Rust programming language to ensure high performance and security. π
To run the project, you need to have Rust and Cargo installed.
# Cloning the repository
git clone https://github.com/LF3551/RustSecurePassGen.git
# Navigating to the project directory
cd RustSecurePassGen
# Building and running
cargo run
# Running tests
cargo test