I forked this simple akka server-client project:
https://github.com/roclas/akka-irc
which is an IRC-like chat, and I'm trying to encode messages.
In my main branch, if I started the server (start sbt, and then select option 2), and then the client (start sbt, and then select option 1), if I write something in the client, the message is sent correctly to the server.
If I run wirehark and listen to messages that meet these conditions: tcp.port == 1099 and tcp.len> 200
I can read messages in plain text.
How can I encode them using SSL? You can see what I'm trying to do by changing the src / main / resources / application.conf file in the development branch What do I need to change? What should the src / main / resources / application.conf file look like?
thank
source
share