Thursday, May 3, 2018

Password With Asterisk in C++

Here is a password security with asterisk masking that I wrote a long time ago in C++ using CodeBlocks. I hope you will find my work useful.

I am currently accepting programming work, it project, school programming projects , thesis and capstone projects, IT consulting work and web development work kindly contact me in the following email address for further details.  If you want to advertise in my website kindly contact me also in my email address also. Thank you.

My email address are the following jakerpomperada@gmail.com and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.




Sample Program Output


Program Listing

password.cpp

// Password.cpp
// Author    : Mr. Jake Rodriguez Pomperada, MAED - Instructional Technology
// Date      : September 26, 2009 Saturday
// Email     : jakerpomperada@yahoo.com
// Tool      : Code Blocks 8.02
// Language  : C++

#include <iostream>
#include <conio.h>
#include <string>

using namespace std;

const int PASSLEN = 4;

string passget();


void start()
{

string password;
cout << "\n\n";
cout << "\t PASSWORD SECURITY VERSION 1.0";
cout << "\n\n";
cout << "Enter Your Password: ";
password = passget();

if (password == "jake") {
    cout << "\n\n";
    cout << "Password Accepted";
    cout << "\n\n\n";
    cout << "\t\t Thank You For Using this Software";
    cout << "\n\n\t Created By: Mr. Jake Rodriguez Pomperada, MAED-IT";
        cout << "\n\n\t\t Date : September 26, 2009 Saturday";
}
else {
    cout << "\n\n";
    cout << "Password Denied Try Again !!!";
    start();
}
}  // End of Start Function


int main()
{
    start();
getch();
}

string passget()
{
char password[PASSLEN], letter;
int loop;
int len;
string password2;

//Get Password and replace letters with *--------------
loop = 0;
while(loop != PASSLEN)
{
password[loop] = '\0';
loop++;
}
loop = 0;
len = 0;
letter = '\0';
while( letter != '\r' )
{
letter = getch();
if( letter == '\b' && password[0] == '\0')
{
loop = 0;
len = 0;
}
else
{
if( letter == '\b' && password[0] != '\0')
{
cout << "\b";
cout << " ";
cout << "\b";
loop--;
password[loop] = '\0';
len--;
}
else
{
if( isprint( letter ) != 0 && loop < PASSLEN)
{
password[loop] = tolower(letter);
cout << "*" ;
}
loop++;
if (loop <= PASSLEN)
len++;
}
}
}

//Convert Password from character array to string
loop = 0;
len = len;
password2 = "";
while (loop != len)
{
password2 = password2+password[loop];
loop++;
}

return password2;
 } // End of Function Password


No comments:

Post a Comment