How do I secure a Java SocketChannel
, ServerSocketChannel
or, perhaps even, a DatagramChannel
with TLS?
I know that there are some frameworks (#1 #2) that advertise to be able, but I want to know if it is possible to achieve this with the pure Java standard library alone.
You need to use SSLEngine and do the handshake manually using that state machine. SSL/TLS is implemented on top of TCP so you can not use it directly on top of a
DatagramChannel
.The article Non-blocking I/O with SSLEngine may be helpful.