Android中的OCSP证书装订

Posted

技术标签:

【中文标题】Android中的OCSP证书装订【英文标题】:OCSP certificate stapling in Android 【发布时间】:2016-07-07 23:39:22 【问题描述】:

过去几天我一直在努力尝试在 android 中实现 OCSP 验证。

到目前为止,在 ios 中实现起来很容易,但对于 Android,我遇到的每一条信息都行不通。我一直在使用客户的 API 端点和 this website 来运行证书撤销测试,到目前为止,我还没有幸运地在我的 Android 应用程序中检测到撤销的证书。我正在使用 OKHTTPClient。 这是我验证证书吊销的方法

public void checkServerTrusted(X509Certificate[] chain, String authType)
            throws CertificateException 

        assert (chain != null);
        if (chain == null) 
            throw new IllegalArgumentException(
                    "checkServerTrusted: X509Certificate array is null");
        

        assert (chain.length > 0);
        if (!(chain.length > 0)) 
            throw new IllegalArgumentException(
                    "checkServerTrusted: X509Certificate is empty");
        

        if (VERIFY_AUTHTYPE) 
            assert (null != authType && authType.equalsIgnoreCase(AUTH_TYPE));
            if (!(null != authType && authType.equalsIgnoreCase(AUTH_TYPE))) 
                throw new CertificateException(
                        "checkServerTrusted: AuthType is not " + AUTH_TYPE);
            
        

        if(chain[0]!=null)
            try 
                X509Certificate issuerCert = chain[1];
                X509Certificate c1 = chain[0];
                TrustAnchor anchor = new TrustAnchor(issuerCert, null);
                Set anchors = Collections.singleton(anchor);
                CertificateFactory cf = CertificateFactory.getInstance("X.509");
                List list = Arrays.asList(new Certificate[]c1);
                CertPath path = cf.generateCertPath(list);
                PKIXParameters params = new PKIXParameters(anchors);
                // Activate certificate revocation checking
                params.setRevocationEnabled(false);
                // Activate OCSP
                Security.setProperty("ocsp.enable", "true");

                // Ensure that the ocsp.responderURL property is not set.
                if (Security.getProperty("ocsp.responderURL") != null) 
                    throw new
                            Exception("The ocsp.responderURL property must not be set");
                
                CertPathValidator validator = CertPathValidator.getInstance("PKIX");
                PKIXCertPathValidatorResult result = (PKIXCertPathValidatorResult) validator
                        .validate(path, params);

                System.out.println("VALID");
             catch (Exception e) 
                System.out.println("EXCEPTION " + e.getMessage());
                e.printStackTrace();
            

【问题讨论】:

【参考方案1】:

我有一段与你相似的代码,只是略有不同,它当前正确阻止了与已撤销证书的连接,请参见此处:https://gist.github.com/HylkeB/f9f3c26398c49985e54545df1b76b062

它不是装订的,我无法让它工作(我还没有找到如何将 status_request 扩展添加到 ClientHello TLS 握手)。不过现在这已经足够了。

【讨论】:

【参考方案2】:

如果是 https://

,请尝试在构建中使用 Android 的 HttpURLConnectionHttpsURLConnection 而不是使用 OkHttp

【讨论】:

以上是关于Android中的OCSP证书装订的主要内容,如果未能解决你的问题,请参考以下文章

Android:我应该在哪里查找证书吊销列表?

OCSP查询没有颁发者证书的中间证书

OCSP

密码学系列之:在线证书状态协议OCSP详解

如何使用中间证书设置 OCSP 服务器

Android Studio:禁用装订线