clear unused imports

This commit is contained in:
Lucàs
2022-12-04 20:03:55 +01:00
parent 71fdc47706
commit 6466284b1b
3 changed files with 1 additions and 9 deletions
-6
View File
@@ -2,15 +2,11 @@ package client;
import java.io.*;
import java.net.Socket;
import java.nio.charset.StandardCharsets;
import java.rmi.UnknownHostException;
import java.security.Key;
import java.security.KeyPair;
import java.security.PublicKey;
import java.util.Arrays;
import java.util.Scanner;
import reseau.AES;
import reseau.RSA;
public class Client {
@@ -26,8 +22,6 @@ public class Client {
KeyPair clientKeyPair = RSA.genererCle();
PublicKey serverKey = null;
// AES.sauvegarderCle(key);
// Création des Sockets
try {
serverSocket = new Socket("localhost", 4444);