We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bae7b5 commit 1b9ac47Copy full SHA for 1b9ac47
framework/src/play/server/ssl/SslHttpServerContextFactory.java
@@ -55,8 +55,10 @@ public class SslHttpServerContextFactory {
55
56
// Set up key manager factory to use our key store
57
KeyManagerFactory kmf = KeyManagerFactory.getInstance(algorithm);
58
+ kmf.init(ks, certificatePassword);
59
60
TrustManagerFactory tmf = TrustManagerFactory.getInstance(algorithm);
61
+
62
tmf.init(ks);
63
64
// Initialize the SSLContext to work with our key managers.
0 commit comments