Skip to content

Commit 1b9ac47

Browse files
pepiteguillaumebort
authored andcommitted
Fix SSL [#368]
1 parent 8bae7b5 commit 1b9ac47

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

framework/src/play/server/ssl/SslHttpServerContextFactory.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,10 @@ public class SslHttpServerContextFactory {
5555

5656
// Set up key manager factory to use our key store
5757
KeyManagerFactory kmf = KeyManagerFactory.getInstance(algorithm);
58+
kmf.init(ks, certificatePassword);
5859

5960
TrustManagerFactory tmf = TrustManagerFactory.getInstance(algorithm);
61+
6062
tmf.init(ks);
6163

6264
// Initialize the SSLContext to work with our key managers.

0 commit comments

Comments
 (0)