Home
last modified time | relevance | path

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

/external/conscrypt/common/src/main/java/org/conscrypt/
DTrustManagerImpl.java393 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 …]
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/
DTrustManagerImpl.java407 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 …]
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/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/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/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/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/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc9585 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()