Searched refs:ocspData (Results 1 – 5 of 5) sorted by relevance
/external/conscrypt/platform/src/main/java/org/conscrypt/ |
D | TrustManagerImpl.java | 399 byte[] ocspData = null; in checkTrusted() 404 ocspData = getOcspDataFromSession(session); in checkTrusted() 418 return checkTrusted(certs, ocspData, tlsSctData, authType, hostname, clientAuth); in checkTrusted() 471 private List<X509Certificate> checkTrusted(X509Certificate[] certs, byte[] ocspData, in checkTrusted() argument 495 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrusted() 522 private List<X509Certificate> checkTrustedRecursive(X509Certificate[] certs, byte[] ocspData, in checkTrustedRecursive() argument 539 return verifyChain(untrustedChain, trustAnchorChain, host, clientAuth, ocspData, in checkTrustedRecursive() 560 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrustedRecursive() 575 return verifyChain(untrustedChain, trustAnchorChain, host, clientAuth, ocspData, in checkTrustedRecursive() 605 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrustedRecursive() [all …]
|
/external/conscrypt/platform/src/main/java/org/conscrypt/ct/ |
D | CTVerifier.java | 41 byte[] tlsData, byte[] ocspData) throws CertificateEncodingException { in verifySignedCertificateTimestamps() argument 47 return verifySignedCertificateTimestamps(certs, tlsData, ocspData); in verifySignedCertificateTimestamps() 57 byte[] tlsData, byte[] ocspData) throws CertificateEncodingException { in verifySignedCertificateTimestamps() argument 68 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/common/src/main/java/org/conscrypt/ |
D | SslSessionWrapper.java | 111 byte[] ocspData = null; in newInstance() 122 ocspData = new byte[ocspLength]; in newInstance() 123 buf.get(ocspData); in newInstance() 152 return new Impl(context, ref, host, port, peerCerts, ocspData, tlsSctData); in newInstance()
|
/external/conscrypt/common/src/jni/main/cpp/ |
D | NativeCrypto.cpp | 8447 ScopedByteArrayRO ocspData(env, ocspDataBytes); in NativeCrypto_get_ocsp_single_extension() local 8448 if (ocspData.get() == nullptr) { in NativeCrypto_get_ocsp_single_extension() 8453 CBS_init(&cbs, reinterpret_cast<const uint8_t*>(ocspData.get()), ocspData.size()); in NativeCrypto_get_ocsp_single_extension()
|