li-raz
li-raz

Reputation: 1696

Akka HTTPS how to support TLS1.2

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

Answers (1)

Levi Ramsey
Levi Ramsey

Reputation: 20561

Replace SSLContext.getInstance("TLS") with SSLContext.getInstance("TLSv1.2").

Upvotes: 2

Related Questions