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.
- Host: GitHub
- URL: https://github.com/mubeen-channa/random-password-generator
- Owner: Mubeen-Channa
- Created: 2024-02-28T07:45:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-04T03:57:56.000Z (over 2 years ago)
- Last Synced: 2024-03-04T05:09:52.941Z (over 2 years ago)
- Topics: cpp, random-password, random-password-generator
- Language: C++
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!