-
Notifications
You must be signed in to change notification settings - Fork 1
/
cryptographer.cpp
127 lines (117 loc) · 3.54 KB
/
cryptographer.cpp
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#include<iostream> //important libraries
#include<fstream>
#include<string>
#include <cstdlib>
#include<unistd.h>
using namespace std;
int main()
{ e:
string infile,outfile;
char ch,j;
int numA,x,i;
sleep(2);
cout<<"****************************************************"<<endl;
cout<<"****************** CRYPTOGRAPHER *******************"<<endl;
cout<<"****************************************************"<<endl;
sleep(1);
cout<<"Welcome to my cryptography program."<<endl;
sleep(1);
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
sleep(1);
cout<<"Choose any option."<<endl;
a:
cout<<"1. Encrypt your file ."<<endl;
cout<<"2. Decrypt your file ."<<endl;
cin>>x;
switch (x)
{
case 1:
{ c:
cout<<"Enter your file name or file location to Encrypt : "<<endl;
cin>>infile;
ifstream in(infile);
if(in.fail())
{
cout<<"File doesn't exist !!!"<<endl;
goto c;
}
else
{
cout<<"Enter output file name : "<<endl;
cin>>outfile;
ofstream out(outfile);
//in>>ch;
while (in.get(ch))
{
numA=(int)ch;
numA=numA+5;
out<<(char)numA;
//cout<<ch;
}
cout<<"Please wait. Your file has being encrypting.\n"<<endl;
for (i = 0; i < 6; i++)
{
cout<<"*******";
sleep(1);
}
cout<<endl<<"Congrats! Your file is encrypted."<<endl;
in.close();
}
break;
}
case 2:
{ d:
cout<<"Enter your file name or file location to Dencrypt : "<<endl;
cin>>infile;
ifstream in(infile);
if (in.fail())
{
cout<<"File doesn't exist !!!"<<endl;
goto d;
}
else
{
cout<<"Enter output file name : "<<endl;
cin>>outfile;
ofstream out(outfile);
//in>>ch;
while (in.get(ch))
{
numA=(int)ch;
numA=numA-5;
out<<(char)numA;
//cout<<ch;
}
cout<<"Please wait. Your file has being decrypting.\n"<<endl;
for (i = 0; i < 6; i++)
{
cout<<"*******";
sleep(1);
}
cout<<endl<<"Congrats! Your file is decrypted."<<endl; //getenv(in, ch);
in.close();
}
break;
}
default:
{
cout<<"Invalid Input !!!\nPlease enter a valid keyword."<<endl;
goto a;
}
}
cout<<"\nThank you for using Cryptographer.\n"<<endl;
cout<<"(Programmed by Sourabh Verma)\n"<<endl;
cout<<"Do you want to run Cryptographer again, press Y/y "<<endl;
cout<<"Press any key to exit. "<<endl;
cin>>j;
if (j=='y' || j=='Y')
{
goto e;
}
else
{
sleep(1);
exit(0);
}
return 0;
}