File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
ssl-config-core/src/main/scala/com/typesafe/sslconfig/ssl Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -42,10 +42,9 @@ object FakeKeyStore {
4242 * Generate a fresh KeyStore object in memory. This KeyStore
4343 * is not saved to disk. If you want that, then call `keyManagerFactory`.
4444 *
45- * This method has has `private[ssl]` access so it can be used for
46- * testing.
45+ * This method is public only for consumption by Play/Lagom.
4746 */
48- private [ssl] def generateKeyStore : KeyStore = {
47+ def generateKeyStore : KeyStore = {
4948 // Create a new KeyStore
5049 val keyStore : KeyStore = KeyStore .getInstance(" JKS" )
5150
@@ -235,7 +234,8 @@ final class FakeKeyStore(mkLogger: LoggerFactory) {
235234 }
236235 }
237236
238- private [ssl] def keyManagerFactory (appPath : File ): KeyManagerFactory = {
237+ /** Public only for consumption by Play/Lagom. */
238+ def keyManagerFactory (appPath : File ): KeyManagerFactory = {
239239 val keyStore = createKeyStore(appPath)
240240
241241 // Load the key and certificate into a key manager factory
You can’t perform that action at this time.
0 commit comments