NAME
RandomPasswordGeneratorCpp — A C++ command-line program that generates secure random passwords based on user-defined length. Combines uppercase and…
SYNOPSIS
INFO
DESCRIPTION
A C++ command-line program that generates secure random passwords based on user-defined length. Combines uppercase and lowercase letters, numbers, and special characters using standard C++ libraries. Designed to demonstrate randomness, string handling, and basic security concepts in a simple, beginner-friendly CLI tool.
README
README.md
# RandomPasswordGeneratorCppOverview
RandomPasswordGeneratorCpp is a simple yet powerful C++ program designed to generate secure random passwords. Users can specify the desired password length, and the program will create a random combination of uppercase letters, lowercase letters, numbers, and special characters.
Features
- Generates random passwords with a mix of characters.
- User-friendly interface for specifying password length.
- Uses standard C++ libraries for randomness and string manipulation.
How to Use
Clone the repository:
git clone https://github.com/SagarBiswas-MultiHAT/RandomPasswordGeneratorCpp.git
- Navigate to the project directory:
cd RandomPasswordGeneratorCpp - Compile the program using a C++ compiler (e.g., g++):
g++ -o password_generator password_generator.cpp - Run the executable:
./password_generator - Enter the desired password length when prompted, and the program will generate a random password.
Example Output
..:: PASSWORD GENERATOR ::....:: Enter the length of the password : 12
==> Generated Password : A1b!C2d#E3f$
Requirements
- C++ compiler (e.g., g++)
Author