This commit is contained in:
parent
0278540fb2
commit
94f1ec943c
@ -1,43 +0,0 @@
|
|||||||
package bou.amine.apps.readerforselfossv2.android.utils
|
|
||||||
|
|
||||||
import okhttp3.OkHttpClient
|
|
||||||
import java.security.cert.CertificateException
|
|
||||||
import java.security.cert.X509Certificate
|
|
||||||
import javax.net.ssl.SSLContext
|
|
||||||
import javax.net.ssl.TrustManager
|
|
||||||
import javax.net.ssl.X509TrustManager
|
|
||||||
|
|
||||||
fun getUnsafeHttpClient(): OkHttpClient.Builder =
|
|
||||||
try {
|
|
||||||
// Create a trust manager that does not validate certificate chains
|
|
||||||
val trustAllCerts = arrayOf<TrustManager>(object : X509TrustManager {
|
|
||||||
override fun getAcceptedIssuers(): Array<X509Certificate> =
|
|
||||||
arrayOf()
|
|
||||||
|
|
||||||
@Throws(CertificateException::class)
|
|
||||||
override fun checkClientTrusted(
|
|
||||||
chain: Array<java.security.cert.X509Certificate>,
|
|
||||||
authType: String
|
|
||||||
) {
|
|
||||||
}
|
|
||||||
|
|
||||||
@Throws(CertificateException::class)
|
|
||||||
override fun checkServerTrusted(
|
|
||||||
chain: Array<java.security.cert.X509Certificate>,
|
|
||||||
authType: String
|
|
||||||
) {
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
// Install the all-trusting trust manager
|
|
||||||
val sslContext = SSLContext.getInstance("SSL")
|
|
||||||
sslContext.init(null, trustAllCerts, java.security.SecureRandom())
|
|
||||||
|
|
||||||
val sslSocketFactory = sslContext.socketFactory
|
|
||||||
|
|
||||||
OkHttpClient.Builder()
|
|
||||||
.sslSocketFactory(sslSocketFactory, trustAllCerts[0] as X509TrustManager)
|
|
||||||
.hostnameVerifier { _, _ -> true }
|
|
||||||
} catch (e: Exception) {
|
|
||||||
throw RuntimeException(e)
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user