1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
#include <iostream>
#include <string>
using namespace std;
void encrypt(char a[],int x);
void decrypt ( char b[],int x);
string texttest ;
char *a;
void textinput()
{
getline(cin, texttest);
a=new char[texttest.size()+1];
a[texttest.size()]=0;
memcpy(a,texttest.c_str(),texttest.size());
}
int main ()
{
int choice;
cout<<"Choose 1 to encrypt , 2 to decrypt";
cin>>choice;
if(choice ==1){
cout<<"Enter a message to encrypt : ";
textinput();
encrypt(a,texttest.size());}
else if(choice ==2)
{ cout<<"Enter a message to encrypt : ";
textinput();
decrypt(a,texttest.size());}
else cout<<"Run The app again";
system("PAUSE") ;
return 0;
}
void encrypt ( char b[],int x)
{int num;
int keyindex;
int key [3] = {1,2,3};
for (num=0 ,keyindex=0 ; num<x;num++,keyindex++)
{
if(keyindex==3)
keyindex=0;
b[num]= b[num]+ key[keyindex];
cout<<b[num];
}
}
void decrypt ( char b[],int x)
{int num;
int keyindex;
int key [3] = {1,2,3};
for (num=0 ,keyindex=0 ; num<x;num++,keyindex++)
{if(keyindex==3)
keyindex=0;
b[num]= b[num]- key[keyindex];
cout<<b[num];
}
}
|