本文整理了Java中okhttp3.internal.platform.Platform.getSSLContext()
方法的一些代码示例,展示了Platform.getSSLContext()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Platform.getSSLContext()
方法的具体详情如下:
包路径:okhttp3.internal.platform.Platform
类名称:Platform
方法名:getSSLContext
暂无
代码示例来源:origin: square/okhttp
private static SSLSocketFactory newSslSocketFactory(X509TrustManager trustManager) {
try {
SSLContext sslContext = Platform.get().getSSLContext();
sslContext.init(null, new TrustManager[] { trustManager }, null);
return sslContext.getSocketFactory();
} catch (GeneralSecurityException e) {
throw new AssertionError("No System TLS", e); // The system has no TLS. Just give up.
}
}
代码示例来源:origin: square/okhttp
private static SSLSocketFactory createInsecureSslSocketFactory(TrustManager trustManager) {
try {
SSLContext context = Platform.get().getSSLContext();
context.init(null, new TrustManager[] {trustManager}, null);
return context.getSocketFactory();
} catch (Exception e) {
throw new AssertionError(e);
}
}
代码示例来源:origin: square/okhttp
public SSLContext sslContext() {
try {
SSLContext sslContext = Platform.get().getSSLContext();
sslContext.init(new KeyManager[] { keyManager }, new TrustManager[] { trustManager },
new SecureRandom());
return sslContext;
} catch (KeyManagementException e) {
throw new AssertionError(e);
}
}
代码示例来源:origin: com.squareup.okhttp3/okhttp
private static SSLSocketFactory newSslSocketFactory(X509TrustManager trustManager) {
try {
SSLContext sslContext = Platform.get().getSSLContext();
sslContext.init(null, new TrustManager[] { trustManager }, null);
return sslContext.getSocketFactory();
} catch (GeneralSecurityException e) {
throw new AssertionError("No System TLS", e); // The system has no TLS. Just give up.
}
}
代码示例来源:origin: com.squareup.okhttp3/okhttp-tls
public SSLContext sslContext() {
try {
SSLContext sslContext = Platform.get().getSSLContext();
sslContext.init(new KeyManager[] { keyManager }, new TrustManager[] { trustManager },
new SecureRandom());
return sslContext;
} catch (KeyManagementException e) {
throw new AssertionError(e);
}
}
代码示例来源:origin: com.squareup.okhttp3/okcurl
private static SSLSocketFactory createInsecureSslSocketFactory(TrustManager trustManager) {
try {
SSLContext context = Platform.get().getSSLContext();
context.init(null, new TrustManager[] {trustManager}, null);
return context.getSocketFactory();
} catch (Exception e) {
throw new AssertionError(e);
}
}
代码示例来源:origin: apache/servicemix-bundles
private static SSLSocketFactory newSslSocketFactory(X509TrustManager trustManager) {
try {
SSLContext sslContext = Platform.get().getSSLContext();
sslContext.init(null, new TrustManager[] { trustManager }, null);
return sslContext.getSocketFactory();
} catch (GeneralSecurityException e) {
throw assertionError("No System TLS", e); // The system has no TLS. Just give up.
}
}
代码示例来源:origin: com.github.ljun20160606/okhttp
private SSLSocketFactory systemDefaultSslSocketFactory(X509TrustManager trustManager) {
try {
SSLContext sslContext = Platform.get().getSSLContext();
sslContext.init(null, new TrustManager[] { trustManager }, null);
return sslContext.getSocketFactory();
} catch (GeneralSecurityException e) {
throw assertionError("No System TLS", e); // The system has no TLS. Just give up.
}
}
代码示例来源:origin: com.github.ljun20160606/mockwebserver
this.sslContext != null ? this.sslContext : Platform.get().getSSLContext();
activeSslContext.init(keyManagerFactory.getKeyManagers(), trustManagers,
new SecureRandom());
内容来源于网络,如有侵权,请联系作者删除!