org.apache.http.conn.ssl.SSLSocketFactory.split()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(3.2k)|赞(0)|评价(0)|浏览(155)

本文整理了Java中org.apache.http.conn.ssl.SSLSocketFactory.split()方法的一些代码示例,展示了SSLSocketFactory.split()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。SSLSocketFactory.split()方法的具体详情如下:
包路径:org.apache.http.conn.ssl.SSLSocketFactory
类名称:SSLSocketFactory
方法名:split

SSLSocketFactory.split介绍

暂无

代码示例

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.apache.httpcomponents.httpclient

/**
 * Obtains default SSL socket factory with an SSL context based on system properties
 * as described in
 * <a href="http://docs.oracle.com/javase/1.5.0/docs/guide/security/jsse/JSSERefGuide.html">
 * "JavaTM Secure Socket Extension (JSSE) Reference Guide for the JavaTM 2 Platform
 * Standard Edition 5</a>
 *
 * @return default system SSL socket factory
 */
public static SSLSocketFactory getSystemSocketFactory() throws SSLInitializationException {
  return new SSLSocketFactory(
    (javax.net.ssl.SSLSocketFactory) javax.net.ssl.SSLSocketFactory.getDefault(),
    split(System.getProperty("https.protocols")),
    split(System.getProperty("https.cipherSuites")),
    BROWSER_COMPATIBLE_HOSTNAME_VERIFIER);
}

代码示例来源:origin: com.hynnet/httpclient

/**
 * Obtains default SSL socket factory with an SSL context based on system properties
 * as described in
 * <a href="http://docs.oracle.com/javase/1.5.0/docs/guide/security/jsse/JSSERefGuide.html">
 * "JavaTM Secure Socket Extension (JSSE) Reference Guide for the JavaTM 2 Platform
 * Standard Edition 5</a>
 *
 * @return default system SSL socket factory
 */
public static SSLSocketFactory getSystemSocketFactory() throws SSLInitializationException {
  return new SSLSocketFactory(
    (javax.net.ssl.SSLSocketFactory) javax.net.ssl.SSLSocketFactory.getDefault(),
    split(System.getProperty("https.protocols")),
    split(System.getProperty("https.cipherSuites")),
    BROWSER_COMPATIBLE_HOSTNAME_VERIFIER);
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

/**
 * Obtains default SSL socket factory with an SSL context based on system properties
 * as described in
 * <a href="http://docs.oracle.com/javase/1.5.0/docs/guide/security/jsse/JSSERefGuide.html">
 * "JavaTM Secure Socket Extension (JSSE) Reference Guide for the JavaTM 2 Platform
 * Standard Edition 5</a>
 *
 * @return default system SSL socket factory
 */
public static SSLSocketFactory getSystemSocketFactory() throws SSLInitializationException {
  return new SSLSocketFactory(
    (javax.net.ssl.SSLSocketFactory) javax.net.ssl.SSLSocketFactory.getDefault(),
    split(System.getProperty("https.protocols")),
    split(System.getProperty("https.cipherSuites")),
    BROWSER_COMPATIBLE_HOSTNAME_VERIFIER);
}

代码示例来源:origin: Nextdoor/bender

/**
 * Obtains default SSL socket factory with an SSL context based on system properties
 * as described in
 * <a href="http://docs.oracle.com/javase/1.5.0/docs/guide/security/jsse/JSSERefGuide.html">
 * "JavaTM Secure Socket Extension (JSSE) Reference Guide for the JavaTM 2 Platform
 * Standard Edition 5</a>
 *
 * @return default system SSL socket factory
 */
public static SSLSocketFactory getSystemSocketFactory() throws SSLInitializationException {
  return new SSLSocketFactory(
    (javax.net.ssl.SSLSocketFactory) javax.net.ssl.SSLSocketFactory.getDefault(),
    split(System.getProperty("https.protocols")),
    split(System.getProperty("https.cipherSuites")),
    BROWSER_COMPATIBLE_HOSTNAME_VERIFIER);
}

相关文章