On 11 Dec 2014, at 16:07, henry...@bblfish.net wrote:
Hello, everyone!I'm using akka.io 2.3.7 and I don't see any SSL/TLS support there.As far as I understand it was removed (since 2.3.x). Is it correct?Why? Will come back?
TLS (a.k.a SSL ) server support has been added recently .It is still missing client certificate renegotiation for it to be useful enough forme to move my server away from netty to akka.
And... Is there a clean workaround?May be this topic was discussed before, but I didn't find an appropriate link.Thanks, Paul
--
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to the Google Groups "Akka User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to akka-user+...@googlegroups.com.
To post to this group, send email to akka...@googlegroups.com.
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.Social Web Architect
--
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to the Google Groups "Akka User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to akka-user+...@googlegroups.com.
To post to this group, send email to akka...@googlegroups.com.
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.
I know this code was written in January, but can someone translate this into code that compiles with the current version of akka-stream?// Setup flowconn.flow.join(Flow(Sink(cipher.cipherTextInbound), // Incoming data (client -> sslActor -> server)Source(cipher.cipherTextOutbound) // Outgoing data (server -> sslActor -> client))).run()
Hi,I tried out this gist with akka-stream % 1.0M5 and it doesn't compile. The main problem is this codeI know this code was written in January, but can someone translate this into code that compiles with the current version of akka-stream?// Setup flowconn.flow.join(Flow(Sink(cipher.cipherTextInbound), // Incoming data (client -> sslActor -> server)Source(cipher.cipherTextOutbound) // Outgoing data (server -> sslActor -> client))).run()