@@ -13,11 +13,11 @@ import java.util.Scanner;
|
||||
|
||||
public class Client {
|
||||
|
||||
public static KeyPair keys;
|
||||
static KeyPair keys;
|
||||
|
||||
public static PublicKey serverPublicRSA;
|
||||
static PublicKey serverPublicRSA;
|
||||
|
||||
public static SecretKey aesKey;
|
||||
static SecretKey aesKey;
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
Map<String, String> validatedArguments = getValidatedDataFromArguments(args);
|
||||
|
||||
@@ -22,9 +22,9 @@ public class ClientThread implements Runnable {
|
||||
|
||||
final PrintWriter out;
|
||||
|
||||
public boolean rsaReceived = false;
|
||||
boolean rsaReceived = false;
|
||||
|
||||
public boolean aesReceived = false;
|
||||
boolean aesReceived = false;
|
||||
|
||||
public ClientThread(Socket socket) throws IOException {
|
||||
this.clientSocket = socket;
|
||||
|
||||
Reference in New Issue
Block a user