An open API service indexing awesome lists of open source software.

https://github.com/mubeen-channa/random-password-generator

This C++ project is a random password generator that creates passwords of varying lengths using a mix of characters. It offers a simple command-line interface for users to specify the password length. The program ensures randomness by using the rand() function with the current time.
https://github.com/mubeen-channa/random-password-generator

cpp random-password random-password-generator

Last synced: over 1 year ago
JSON representation

This C++ project is a random password generator that creates passwords of varying lengths using a mix of characters. It offers a simple command-line interface for users to specify the password length. The program ensures randomness by using the rand() function with the current time.

Awesome Lists containing this project

README

          

# Random Password Generator in C++
This simple C++ program generates a random password of the specified length. It utilizes a set of characters that include lowercase and uppercase letters, digits, and special characters. The program uses the rand() function along with the current time to ensure randomness.

# How to Use
1. Run the program.
2. Enter the desired length of the password.
3. The program will generate a random password and display it.
4. Optionally, choose to generate another password or exit.

Feel free to suggest any improvements or contribute to the project!