Reputation: 1696
I have created simple Akka HTTP server that listen on HTTPS i saw that by default it use TLSv1 which is old and deprecated how can i remove it and use proper TLS version and normal ciphers
Upvotes: 0
Views: 371
Reputation: 20561
Replace SSLContext.getInstance("TLS")
with SSLContext.getInstance("TLSv1.2")
.
Upvotes: 2