/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | TrustManagerImpl.java | 393 byte[] ocspData = null; in checkTrusted() 398 ocspData = getOcspDataFromSession(session); in checkTrusted() 411 return checkTrusted(certs, ocspData, tlsSctData, authType, hostname, clientAuth); in checkTrusted() 467 private List<X509Certificate> checkTrusted(X509Certificate[] certs, byte[] ocspData, in checkTrusted() argument 491 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrusted() 518 private List<X509Certificate> checkTrustedRecursive(X509Certificate[] certs, byte[] ocspData, in checkTrustedRecursive() argument 535 return verifyChain(untrustedChain, trustAnchorChain, host, clientAuth, ocspData, in checkTrustedRecursive() 556 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrustedRecursive() 571 return verifyChain(untrustedChain, trustAnchorChain, host, clientAuth, ocspData, in checkTrustedRecursive() 601 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrustedRecursive() [all …]
|
D | NativeSslSession.java | 114 byte[] ocspData = null; in newInstance() 125 ocspData = new byte[ocspLength]; in newInstance() 126 buf.get(ocspData); in newInstance() 155 return new Impl(context, ref, host, port, peerCerts, ocspData, tlsSctData); in newInstance()
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | TrustManagerImpl.java | 407 byte[] ocspData = null; in checkTrusted() 412 ocspData = getOcspDataFromSession(session); in checkTrusted() 425 return checkTrusted(certs, ocspData, tlsSctData, authType, hostname, clientAuth); in checkTrusted() 481 private List<X509Certificate> checkTrusted(X509Certificate[] certs, byte[] ocspData, in checkTrusted() argument 505 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrusted() 532 private List<X509Certificate> checkTrustedRecursive(X509Certificate[] certs, byte[] ocspData, in checkTrustedRecursive() argument 549 return verifyChain(untrustedChain, trustAnchorChain, host, clientAuth, ocspData, in checkTrustedRecursive() 570 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrustedRecursive() 585 return verifyChain(untrustedChain, trustAnchorChain, host, clientAuth, ocspData, in checkTrustedRecursive() 615 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrustedRecursive() [all …]
|
D | NativeSslSession.java | 115 byte[] ocspData = null; in newInstance() 126 ocspData = new byte[ocspLength]; in newInstance() 127 buf.get(ocspData); in newInstance() 156 return new Impl(context, ref, host, port, peerCerts, ocspData, tlsSctData); in newInstance()
|
/external/conscrypt/common/src/main/java/org/conscrypt/ct/ |
D | CTVerifier.java | 38 byte[] tlsData, byte[] ocspData) throws CertificateEncodingException { in verifySignedCertificateTimestamps() argument 44 return verifySignedCertificateTimestamps(certs, tlsData, ocspData); in verifySignedCertificateTimestamps() 54 byte[] tlsData, byte[] ocspData) throws CertificateEncodingException { in verifySignedCertificateTimestamps() argument 65 List<SignedCertificateTimestamp> ocspScts = getSCTsFromOCSPResponse(ocspData, chain); in verifySignedCertificateTimestamps()
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ct/ |
D | CTVerifier.java | 42 byte[] tlsData, byte[] ocspData) throws CertificateEncodingException { in verifySignedCertificateTimestamps() argument 48 return verifySignedCertificateTimestamps(certs, tlsData, ocspData); in verifySignedCertificateTimestamps() 58 byte[] tlsData, byte[] ocspData) throws CertificateEncodingException { in verifySignedCertificateTimestamps() argument 69 List<SignedCertificateTimestamp> ocspScts = getSCTsFromOCSPResponse(ocspData, chain); in verifySignedCertificateTimestamps()
|
/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
D | TestSessionBuilder.java | 89 public TestSessionBuilder addOcspData(byte[] ocspData) { in addOcspData() argument 91 ocspDatas.add(ocspData); in addOcspData() 92 ocspDataLengths.add(ocspData.length); in addOcspData()
|
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/ |
D | TestSessionBuilder.java | 93 public TestSessionBuilder addOcspData(byte[] ocspData) { in addOcspData() argument 95 ocspDatas.add(ocspData); in addOcspData() 96 ocspDataLengths.add(ocspData.length); in addOcspData()
|
/external/conscrypt/common/src/jni/main/cpp/conscrypt/ |
D | native_crypto.cc | 9585 ScopedByteArrayRO ocspData(env, ocspDataBytes); in NativeCrypto_get_ocsp_single_extension() local 9586 if (ocspData.get() == nullptr) { in NativeCrypto_get_ocsp_single_extension() 9591 CBS_init(&cbs, reinterpret_cast<const uint8_t*>(ocspData.get()), ocspData.size()); in NativeCrypto_get_ocsp_single_extension()
|