Posts

Showing posts with the label Password generator

Creating a Password generator application using C++

Image
Well, this is my very first application that I've done in C++. The ideas of this application sprouted when I was answering this question (click to see) in one of the Stack exchange sites called code review. This post consists of the source code for a password-generating application. Here are some of the features of the application: You can either generate a classic or custom password  A Classic password  is a password generated from predefined characters A-Z, a-z, 0-9 and the symbols  (space) ! # $ % & ' ( ) * + , - . / \ " : ; < = > ? @ [ ] ^ _ ` { | } ~. These passwords are not accepted by all websites but only a few. A Custom password is a password generated from the characters that you input! Just mention all the characters accepted by the website and you'll have your password generated. You can Bookmark the generated passwords if you like them and look at them anytime you want! This application is not in anyway ingenio...