gigahorse.SSL.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gigahorse-core_2.13 Show documentation
Show all versions of gigahorse-core_2.13 Show documentation
Gigahorse is an HTTP client for Scala with multiple backend support.
The newest version!
/*
* Original implementation (C) 2009-2016 Lightbend Inc. (https://www.lightbend.com).
* Adapted and extended in 2017 by Eugene Yokota
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package gigahorse
import com.typesafe.sslconfig.ssl._
import com.typesafe.sslconfig.util.NoopLogger
import javax.net.ssl._
import java.security.KeyStore
import java.security.cert.X509Certificate
private[gigahorse] object SSL {
def buildContext(sslConfig: SSLConfigSettings): (SSLContext, Option[TrustManager]) = {
if (sslConfig.default) {
(SSLContext.getDefault, None)
} else {
// break out the static methods as much as we can...
val keyManagerFactory = buildKeyManagerFactory(sslConfig)
val trustManagerFactory = buildTrustManagerFactory(sslConfig)
val tmf = TrustManagerFactory.getInstance(sslConfig.trustManagerConfig.algorithm)
tmf.init(null.asInstanceOf[KeyStore])
val trustManager: X509TrustManager = tmf.getTrustManagers()(0).asInstanceOf[X509TrustManager]
val context = new ConfigSSLContextBuilder(NoopLogger.factory(), sslConfig, keyManagerFactory, trustManagerFactory).build()
val trustManagerOpt = Option(trustManager)
(context, trustManagerOpt)
}
}
def buildKeyManagerFactory(ssl: SSLConfigSettings): KeyManagerFactoryWrapper =
new DefaultKeyManagerFactoryWrapper(ssl.keyManagerConfig.algorithm)
def buildTrustManagerFactory(ssl: SSLConfigSettings): TrustManagerFactoryWrapper =
new DefaultTrustManagerFactoryWrapper(ssl.trustManagerConfig.algorithm)
lazy val insecureTrustManager: X509TrustManager = new X509TrustManager {
def checkClientTrusted(certs: Array[X509Certificate], authType: String): Unit = ()
def checkServerTrusted(certs: Array[X509Certificate], authType: String): Unit = ()
def getAcceptedIssuers(): Array[X509Certificate] = Array()
}
lazy val insecureHostnameVerifier: HostnameVerifier = new HostnameVerifier {
def verify(hostname: String, session: SSLSession): Boolean = true
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy