SSL : implémenté
This commit is contained in:
parent
d680a85bf2
commit
a42eb59be7
@ -5,6 +5,8 @@ import lightcontainer.interfaces.ProtocolRepository;
|
||||
import lightcontainer.interfaces.UnicastCHR;
|
||||
import lightcontainer.repository.FileFrontEnd;
|
||||
|
||||
import javax.net.ssl.SSLServerSocket;
|
||||
import javax.net.ssl.SSLServerSocketFactory;
|
||||
import java.io.IOException;
|
||||
import java.net.ServerSocket;
|
||||
import java.net.Socket;
|
||||
@ -31,17 +33,20 @@ public class UnicastServerListener implements Runnable {
|
||||
/**
|
||||
* Initializes the server and starts it on the previously selected port.
|
||||
*
|
||||
* @since 1.0
|
||||
*
|
||||
* @see Thread#start()
|
||||
* @see ClientHandler
|
||||
* @see Thread#start()
|
||||
* @see ClientHandler
|
||||
* @since 1.0
|
||||
*/
|
||||
@Override
|
||||
public void run() {
|
||||
try {
|
||||
// Allow looping in the loop and create a socket server
|
||||
SSLServerSocketFactory sslserversocketfactory = (SSLServerSocketFactory) SSLServerSocketFactory
|
||||
.getDefault();
|
||||
SSLServerSocket sslserversocket = (SSLServerSocket) sslserversocketfactory
|
||||
.createServerSocket(this.server_port);
|
||||
this.server_run = true;
|
||||
this.server = new ServerSocket(this.server_port);
|
||||
this.server = sslserversocket;
|
||||
while (this.server_run) {
|
||||
// Accepting connection requests (blocking)
|
||||
Socket client = this.server.accept();
|
||||
@ -61,14 +66,15 @@ public class UnicastServerListener implements Runnable {
|
||||
/**
|
||||
* Stops the server and terminates the new connection.
|
||||
*
|
||||
* @since 1.0
|
||||
* @since 1.0
|
||||
*/
|
||||
public void stop() {
|
||||
if (this.server_run) {
|
||||
try {
|
||||
this.server_run = false;
|
||||
this.server.close();
|
||||
} catch (IOException ignored) { }
|
||||
} catch (IOException ignored) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -18,7 +18,7 @@ public class AES_GCM {
|
||||
public static void main(String[] args) throws Exception
|
||||
{
|
||||
// Text pour test :
|
||||
String plainText = "salut fils de pute";
|
||||
String plainText = "salut fils de pute";//TODO enlever le text chelou de Jérémi (ce fou là)
|
||||
|
||||
String IV = generateIV();
|
||||
String key = generateSecretKey();
|
||||
|
Loading…
Reference in New Issue
Block a user