Home
last modified time | relevance | path

Searched refs:ocspData (Results 1 – 9 of 9) sorted by relevance

/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DTrustManagerImpl.java408 byte[] ocspData = null; in checkTrusted()
413 ocspData = getOcspDataFromSession(session); in checkTrusted()
426 return checkTrusted(certs, ocspData, tlsSctData, authType, hostname, clientAuth); in checkTrusted()
483 private List<X509Certificate> checkTrusted(X509Certificate[] certs, byte[] ocspData, in checkTrusted() argument
507 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrusted()
534 private List<X509Certificate> checkTrustedRecursive(X509Certificate[] certs, byte[] ocspData, in checkTrustedRecursive() argument
551 return verifyChain(untrustedChain, trustAnchorChain, host, clientAuth, ocspData, in checkTrustedRecursive()
572 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrustedRecursive()
587 return verifyChain(untrustedChain, trustAnchorChain, host, clientAuth, ocspData, in checkTrustedRecursive()
617 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrustedRecursive()
[all …]
DNativeSslSession.java115 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/
DTrustManagerImpl.java394 byte[] ocspData = null; in checkTrusted()
399 ocspData = getOcspDataFromSession(session); in checkTrusted()
412 return checkTrusted(certs, ocspData, tlsSctData, authType, hostname, clientAuth); in checkTrusted()
469 private List<X509Certificate> checkTrusted(X509Certificate[] certs, byte[] ocspData, in checkTrusted() argument
493 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrusted()
520 private List<X509Certificate> checkTrustedRecursive(X509Certificate[] certs, byte[] ocspData, in checkTrustedRecursive() argument
537 return verifyChain(untrustedChain, trustAnchorChain, host, clientAuth, ocspData, in checkTrustedRecursive()
558 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrustedRecursive()
573 return verifyChain(untrustedChain, trustAnchorChain, host, clientAuth, ocspData, in checkTrustedRecursive()
603 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrustedRecursive()
[all …]
DNativeSslSession.java114 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/ct/
DCTVerifier.java42 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/common/src/main/java/org/conscrypt/ct/
DCTVerifier.java38 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/openjdk/src/test/java/com/android/org/conscrypt/
DTestSessionBuilder.java93 public TestSessionBuilder addOcspData(byte[] ocspData) { in addOcspData() argument
95 ocspDatas.add(ocspData); in addOcspData()
96 ocspDataLengths.add(ocspData.length); in addOcspData()
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DTestSessionBuilder.java89 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/jni/main/cpp/conscrypt/
Dnative_crypto.cc9052 ScopedByteArrayRO ocspData(env, ocspDataBytes); in NativeCrypto_get_ocsp_single_extension() local
9053 if (ocspData.get() == nullptr) { in NativeCrypto_get_ocsp_single_extension()
9058 CBS_init(&cbs, reinterpret_cast<const uint8_t*>(ocspData.get()), ocspData.size()); in NativeCrypto_get_ocsp_single_extension()