-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJRMPClientImpl.java
208 lines (168 loc) · 6.98 KB
/
JRMPClientImpl.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
package server;
import java.awt.HeadlessException;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.PrintWriter;
import java.math.*;
import java.net.MalformedURLException;
import java.net.URL;
import java.rmi.RemoteException;
//import java.rmi.server.UnicastRemoteObject;
import javax.swing.ImageIcon;
import javax.swing.JOptionPane;
public class JRMPClientImpl implements JRMPClient {
/**
*
*/
private static final long serialVersionUID = 1L;
private MainServerJRMP mainServJRMP;
private String serverIP;
private String codebase;
//private JRMPClient myStub;
private String Msg;
private String[] TuaMadre = new String[2];
private BigInteger[] Key = new BigInteger[2];
public JRMPClientImpl(MainServerJRMP ms) throws RemoteException {
mainServJRMP = ms;
}
public void actAdmin() throws RemoteException {
//myStub=(JRMPClient) UnicastRemoteObject.exportObject(this);
serverIP = System.getenv("SERVERIP");
codebase = "http://" + serverIP + ":8000/";
URL icon;
String scelta;
int s = 0;
try {
while (s != 2) {
icon = new URL(codebase + "res/Admin.png");
scelta = (String) JOptionPane.showInputDialog(null,
"MENU:\n"
+ "1) Invia messaggio da criptare\n"
+ "2) Log out", "Menu Admin",
JOptionPane.INFORMATION_MESSAGE, new ImageIcon(icon),
null, null);
try {
s = Integer.parseInt(scelta);
} catch (NumberFormatException nfe) {
s = 4;
}
switch (s) {
case 1: {
icon = new URL(codebase + "res/AddDownload.png");
Msg = (String) JOptionPane.showInputDialog(null,
"Inserisci messaggio", "Richiedi chiave",
JOptionPane.INFORMATION_MESSAGE, new ImageIcon(
icon), null, null);
addMessage(Msg);
Key[0] = null;
Key[1] = null;
try {
while (Key[1] == null){
if (mainServJRMP.LeggiChiave() != null) {
TuaMadre = mainServJRMP.LeggiChiave();
Key[0] = toBigInteger(TuaMadre[0]);
Key[1] = toBigInteger(TuaMadre[1]);
}
else {
Thread.currentThread();
Thread.sleep(100);
}
}
} catch (IOException e) {
e.printStackTrace();
}catch (InterruptedException e) {
e.printStackTrace();
}catch (NullPointerException e){
System.out.println("è a null");
}
//System.out.println(TuaMadre[0]+ "\n" +TuaMadre[1]);
//PublicKey = mainServJRMP.SearchArrayPrimi();
//System.out.println("Ho trovato la chiave! che e :" + PublicKey[0] + PublicKey[1]);
codifyMsg(Msg, Key);
break;
}
case 2: {
//mainServJRMP.removeAdmin(InetAddress.getLocalHost().toString());
System.exit(0);
break;
}
default: {
icon = new URL(codebase + "res/Error.png");
scelta = null;
JOptionPane.showMessageDialog(null,
"Scelta non valida", "Errore",
JOptionPane.ERROR_MESSAGE, new ImageIcon(icon));
}
}
}
} catch (HeadlessException e) {
e.printStackTrace();
} catch (MalformedURLException e) {
e.printStackTrace();
}/* catch (UnknownHostException e){
e.printStackTrace();
}*/
}
public BigInteger toBigInteger(String foo) {
return new BigInteger(foo.getBytes());
}
// Questa funzione aggiunge un messaggio al file di testo che sarà codificato una volta ricevuta la chiave
private void addMessage(String msg) {
try {
newFileMsg();
FileOutputStream fos = new FileOutputStream (".listaMsg.txt", true); // append
PrintWriter pw = new PrintWriter (fos);
pw.print (msg+"\n");
pw.close ();
System.out.println("Hai registrato il messaggio con successo\n");
///Aggiungi un pannello di attesa !!!!
System.out.println("Messaggio in attesa della chiave pubblica per la codifica.");
} catch (FileNotFoundException e) {
System.out.println("Impossibile aggiungere il messaggio.");
e.printStackTrace();
} catch (RemoteException e) {
System.out.println("Impossibile ricevere la chiave pubblica.");
}
}
public BigInteger[] codifyMsg(String Msg, BigInteger[] Key) throws RemoteException{
BigInteger[] NumberedMsg = new BigInteger[Msg.length()];
BigInteger[] CodifiedMsg = new BigInteger[Msg.length()];
NumberedMsg = MsgToArray(Msg); // Questa funzione trasforma il messaggio in stringa in un array di big integer per la codifica
for (int i = 0; i < Msg.length(); i++)
CodifiedMsg[i] = NumberedMsg[i].modPow(Key[1], BigInteger.ONE).mod(Key[0]);
System.out.println("Messaggio codificato correttamente");
return CodifiedMsg;
}
//trasforma la stringa Msg in un array di bigInteger
public BigInteger[] MsgToArray(String Msg) {
BigInteger[] array = new BigInteger[Msg.length()];
int[] intArray = new int[Msg.length()];
for (int i = 0; i < Msg.length(); i++){ // da stringa ad array di int con corrisp codice ASCII
intArray[i] = Msg.charAt(i);
}
for (int i = 0; i < Msg.length(); i++) { // da array di int ad array di BigInteger
array[i] = BigInteger.valueOf(intArray[i]);
}
System.out.println("L'array è il seguente\n");
for(int i = 0; i < Msg.length(); i++)
System.out.println(array[i]);
return array;
}
public void newFileMsg() throws RemoteException {
String path = ".listaMsg.txt";
try {
File file = new File(path);
if (file.exists())
System.out.println("Il file " + path + " esiste");
else if (file.createNewFile())
System.out.println("Il file " + path + " è stato creato");
else
System.out.println("Il file " + path + " non può essere creato");
}
catch (IOException e) {
e.printStackTrace();
}
}
}