-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyCodeFinal.java
240 lines (223 loc) · 7.93 KB
/
syCodeFinal.java
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
import java.util.*;
class syCodeFinal
{
static String s, key;
public static void main()
{
Scanner x=new Scanner(System.in);
System.out.println("Welcome to Custom Encryption/Decryption Portal. To begin with, Please enter your keyword and key : ");
String fx="";
int dd=0;
System.out.println("Enter a Keyword : ");
s=x.nextLine();
System.out.println("Enter a key value : ");
key=x.next();
do{
System.out.println("\nNow Please enter your choice number as per the given menu :");
System.out.println("1. Custom Encryption");
System.out.println("2. Decryption");
System.out.println("0. Abort the process");
System.out.println("Enter a choice : ");
int num=x.nextInt();
if(num==1)
{
encrypt();
System.out.println("\n\nWant to continue?? Press Y for yes and N for no...");
fx=x.next();
if(fx.equalsIgnoreCase("Y"))
dd=1;
else
{
dd=0;
System.out.println("\nThank you for using the Cyphed Portal.\nHope to see you again.\nHave a nice day!!\n\n**********The Code was brought to you by Shruti Shreya and Yash Ray.**********");
}
}
else if(num==2)
{
decrypt();
System.out.println("\n\nWant to continue?? Press Y for yes and N for no...");
fx=x.next();
if(fx.equalsIgnoreCase("Y"))
dd=1;
else
{
dd=0;
System.out.println("\nThank you for using the Cyphed Portal.\nHope to see you again.\nHave a nice day!!\n\n**********The Code was brought to you by Shruti Shreya and Yash Ray.**********");
}
}
else if(num==0)
{
System.out.println("\nThank you for using the Cyphed Portal.\nHope to see you again.\nHave a nice day!!\n\n**********The Code was brought to you by Shruti Shreya and Yash Ray.**********");
break;
}
else
{
System.out.println("Invalid Choice entered.\nProcess Aborted.");
break;
}
}while(dd>=1);
}
public static void encrypt()
{
Scanner x=new Scanner(System.in);
System.out.println("Enter a message : ");
String msg=x.nextLine();
s=s.toUpperCase();
int i, j, flag=0, pos=0, k=0;
char ch1,ch2;
String A[]=new String[s.length()], wd="", new_wd="";
String T[]=new String[msg.length()];
//to add indivisual alphabets of the keyword into a String array
for(i=0;i<s.length();i++)
A[i]=Character.toString(s.charAt(i));
//to add the alphabets of the message to be encrypted into an array of String datatype
for(i=0;i<msg.length();i++)
T[i]=Character.toString(msg.charAt(i));
//to remove repititions
for(i=0;i<s.length();i++)
{
for(j=i+1;j<s.length();j++)
{
if(A[i].equalsIgnoreCase(A[j]))
A[j]="";
}
}
for(i=0;i<s.length();i++)
if(A[i]!="")
wd+=A[i];
//to add the leftover alphabets after the new word
for(i=65;i<=90;i++)
{
for(j=0;j<wd.length();j++)
{
if((Character.toString((char)i)).equals(Character.toString(wd.charAt(j))))
flag=1;
else
continue;
}
if(flag==0)
{
wd+=Character.toString((char)i);
}
else
{
flag=0;
continue;
}
}
//to insert the formed word into an array
String EC[]= new String[wd.length()];
String NEC[]= new String[wd.length()];
for(i=0;i<wd.length();i++)
EC[i]=Character.toString(wd.charAt(i));
//to find and rearrange the word array EC
for(i=0;i<wd.length();i++)
if(key.equalsIgnoreCase(EC[i]))
{
pos=i;
break;
}
//System.out.println(pos);
for(i=pos;i<wd.length();i++)
NEC[k++]=EC[i];
for(i=0;i<pos;i++)
NEC[k++]=EC[i];
//to finally encrypt the message
for(i=65;i<=90;i++)
{
for(j=0;j<msg.length();j++)
{
if((Character.toString((char)i)).equalsIgnoreCase(Character.toString(msg.charAt(j))))
T[j]=NEC[i-65];
}
}
//to display the encrypted message
System.out.println("\nThe Encrypted Message is : ");
for(i=0;i<msg.length();i++)
System.out.print(T[i]);
}
public static void decrypt()
{
Scanner x=new Scanner(System.in);
System.out.println("Enter message to be decrypted : ");
String ec_msg=x.nextLine();
s=s.toUpperCase();
int i, j, flag=0, pos=0, k=0;
char ch1,ch2;
String A[]=new String[s.length()], wd="", new_wd="";
String T[]=new String[ec_msg.length()];
//to add indivisual alphabets of the keyword into a String array
for(i=0;i<s.length();i++)
A[i]=Character.toString(s.charAt(i));
//to add the alphabets of the message to be encrypted into an array of String datatype
for(i=0;i<ec_msg.length();i++)
T[i]=Character.toString(ec_msg.charAt(i));
//to remove repititions
for(i=0;i<s.length();i++)
{
for(j=i+1;j<s.length();j++)
{
if(A[i].equalsIgnoreCase(A[j]))
A[j]="";
}
}
for(i=0;i<s.length();i++)
if(A[i]!="")
wd+=A[i];
//to add the leftover alphabets after the new word
for(i=65;i<=90;i++)
{
for(j=0;j<wd.length();j++)
{
if((Character.toString((char)i)).equals(Character.toString(wd.charAt(j))))
flag=1;
else
continue;
}
if(flag==0)
{
wd+=Character.toString((char)i);
}
else
{
flag=0;
continue;
}
}
//to insert the formed word into an array
String EC[]= new String[wd.length()];
String NEC[]= new String[wd.length()];
for(i=0;i<wd.length();i++)
EC[i]=Character.toString(wd.charAt(i));
//to find and rearrange the word array EC
for(i=0;i<wd.length();i++)
if(key.equalsIgnoreCase(EC[i]))
{
pos=i;
break;
}
for(i=pos;i<wd.length();i++)
NEC[k++]=EC[i];
for(i=0;i<pos;i++)
NEC[k++]=EC[i];
String F[]=new String[ec_msg.length()];
int alph=65;
for(i=0;i<wd.length();i++)
{
for(j=0;j<ec_msg.length();j++)
{
if(NEC[i].equalsIgnoreCase(Character.toString(ec_msg.charAt(j))))
F[j]=Character.toString((char)alph);
}
alph++;
}
//to display the decrypted message
System.out.println("\nThe Decrypted Message is :");
for(i=0;i<ec_msg.length();i++)
if(F[i]!=null)
System.out.print(F[i]);
else
System.out.print(" ");
System.out.println("");
}
}