当前位置: 首页>>代码示例>>Java>>正文


Java SSLParameters.getEndpointIdentificationAlgorithm方法代码示例

本文整理汇总了Java中javax.net.ssl.SSLParameters.getEndpointIdentificationAlgorithm方法的典型用法代码示例。如果您正苦于以下问题:Java SSLParameters.getEndpointIdentificationAlgorithm方法的具体用法?Java SSLParameters.getEndpointIdentificationAlgorithm怎么用?Java SSLParameters.getEndpointIdentificationAlgorithm使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javax.net.ssl.SSLParameters的用法示例。


在下文中一共展示了SSLParameters.getEndpointIdentificationAlgorithm方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: checkTrusted

import javax.net.ssl.SSLParameters; //导入方法依赖的package包/类
private List<X509Certificate> checkTrusted(X509Certificate[] certs, String authType,
        SSLSession session, SSLParameters parameters, boolean clientAuth)
                throws CertificateException {
    byte[] ocspData = null;
    byte[] tlsSctData = null;
    String hostname = null;
    if (session != null) {
        hostname = session.getPeerHost();
        ocspData = getOcspDataFromSession(session);
        tlsSctData = getTlsSctDataFromSession(session);
    }

    if (session != null && parameters != null) {
        String identificationAlgorithm = parameters.getEndpointIdentificationAlgorithm();
        if (identificationAlgorithm != null
                && "HTTPS".equals(identificationAlgorithm.toUpperCase(Locale.US))) {
            HostnameVerifier verifier = HttpsURLConnection.getDefaultHostnameVerifier();
            if (!verifier.verify(hostname, session)) {
                throw new CertificateException("No subjectAltNames on the certificate match");
            }
        }
    }
    return checkTrusted(certs, ocspData, tlsSctData, authType, hostname, clientAuth);
}
 
开发者ID:google,项目名称:conscrypt,代码行数:25,代码来源:TrustManagerImpl.java

示例2: setSSLParameters

import javax.net.ssl.SSLParameters; //导入方法依赖的package包/类
/**
 * Applies SSLParameters to newly accepted connections.
 */
@Override
synchronized public void setSSLParameters(SSLParameters params) {
    super.setSSLParameters(params);

    // the super implementation does not handle the following parameters
    identificationProtocol = params.getEndpointIdentificationAlgorithm();
    algorithmConstraints = params.getAlgorithmConstraints();
    preferLocalCipherSuites = params.getUseCipherSuitesOrder();
    Collection<SNIMatcher> matchers = params.getSNIMatchers();
    if (matchers != null) {
        sniMatchers = params.getSNIMatchers();
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:17,代码来源:SSLServerSocketImpl.java

示例3: setSSLParameters

import javax.net.ssl.SSLParameters; //导入方法依赖的package包/类
/**
 * Applies SSLParameters to newly accepted connections.
 */
@Override
public synchronized void setSSLParameters(SSLParameters params) {
    super.setSSLParameters(params);

    // the super implementation does not handle the following parameters
    identificationProtocol = params.getEndpointIdentificationAlgorithm();
    algorithmConstraints = params.getAlgorithmConstraints();
    preferLocalCipherSuites = params.getUseCipherSuitesOrder();
    Collection<SNIMatcher> matchers = params.getSNIMatchers();
    if (matchers != null) {
        sniMatchers = params.getSNIMatchers();
    }
    applicationProtocols = params.getApplicationProtocols();
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:18,代码来源:SSLServerSocketImpl.java

示例4: getEndpointIdentificationAlgorithm

import javax.net.ssl.SSLParameters; //导入方法依赖的package包/类
@SuppressWarnings("unused")
static String getEndpointIdentificationAlgorithm(SSLParameters params) {
    return params.getEndpointIdentificationAlgorithm();
}
 
开发者ID:google,项目名称:conscrypt,代码行数:5,代码来源:Platform.java


注:本文中的javax.net.ssl.SSLParameters.getEndpointIdentificationAlgorithm方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。