Hmm.  I'm not an expert here (just use BC for CloudFront).  Have you tried 
keeping your Java 8 SSLContext while combining that with the BC cipher 
support?

Something more like your original, but with the BC ciphers.

Security.addProvider(new 
org.bouncycastle.jce.provider.BouncyCastleProvider())
val context = SSLContext.getInstance("TLS")
context.init(null, null, null)
val cipherSuites = 
NegotiateNewSession.withCipherSuites("TLS_PSK_WITH_AES_128_CBC_SHA")
val clientTls = SslTls(context, cipherSuites, Client)

-- 
>>>>>>>>>>      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+unsubscr...@googlegroups.com.
To post to this group, send email to akka-user@googlegroups.com.
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to