Home
last modified time | relevance | path

Searched refs:ocspResponse (Results 1 – 12 of 12) sorted by relevance

/external/conscrypt/platform/src/test/java/org/conscrypt/ct/
DCTVerifierTest.java62 byte[] ocspResponse = readTestFile("ocsp-response.der"); in test_verifySignedCertificateTimestamps_withOCSPResponse()
64 ctVerifier.verifySignedCertificateTimestamps(chain, null, ocspResponse); in test_verifySignedCertificateTimestamps_withOCSPResponse()
139 byte[] ocspResponse = new byte[] { 1, 2, 3, 4 }; in test_verifySignedCertificateTimestamps_withInvalidOCSPResponse()
142 ctVerifier.verifySignedCertificateTimestamps(chain, null, ocspResponse); in test_verifySignedCertificateTimestamps_withInvalidOCSPResponse()
151 byte[] ocspResponse = readTestFile("ocsp-response.der"); in test_verifySignedCertificateTimestamps_withMultipleTimestamps()
154 ctVerifier.verifySignedCertificateTimestamps(chain, tlsExtension, ocspResponse); in test_verifySignedCertificateTimestamps_withMultipleTimestamps()
/external/conscrypt/platform/src/main/java/org/conscrypt/
DInternalUtil.java47 byte[] ocspResponse, String oid, OpenSSLX509Certificate x509, in getOcspSingleExtension() argument
49 return NativeCrypto.get_ocsp_single_extension(ocspResponse, oid, x509.getContext(), x509, in getOcspSingleExtension()
/external/conscrypt/common/src/main/java/org/conscrypt/
DSSLParametersImpl.java94 byte[] ocspResponse; field in SSLParametersImpl
361 ocspResponse = response; in setOCSPResponse()
365 return ocspResponse; in getOCSPResponse()
DNativeSsl.java341 if (parameters.ocspResponse != null) { in initialize()
342 NativeCrypto.SSL_set_ocsp_response(ssl, this, parameters.ocspResponse); in initialize()
DNativeCrypto.java1220 …byte[] ocspResponse, String oid, long x509Ref, OpenSSLX509Certificate holder, long issuerX509Ref, … in get_ocsp_single_extension() argument
/external/boringssl/src/ssl/test/runner/
Dhandshake_client.go815 c.ocspResponse = hs.session.ocspResponse
859 if c.config.Bugs.NoOCSPStapling && cert.ocspResponse != nil {
867 …if i > 0 && c.config.Bugs.ExpectNoExtensionsOnIntermediate && (cert.ocspResponse != nil || cert.sc…
877 c.ocspResponse = certMsg.certificates[0].ocspResponse
1117 c.ocspResponse = cs.response
1532 c.ocspResponse = hs.session.ocspResponse
1589 ocspResponse: c.ocspResponse,
Dconn.go48 ocspResponse []byte // stapled OCSP response member
1561 ocspResponse: c.ocspResponse,
1838 return c.ocspResponse
Dhandshake_messages.go1527 ocspResponse []byte member
1564 if cert.ocspResponse != nil {
1569 response.addBytes(cert.ocspResponse)
1623 !body.readU24LengthPrefixedBytes(&cert.ocspResponse) ||
Dcommon.go294 ocspResponse []byte member
Dhandshake_server.go864 cert.ocspResponse = hs.cert.OCSPStaple
873 cert.ocspResponse = config.Bugs.SendOCSPOnIntermediates
1018 if cert.ocspResponse != nil || cert.sctList != nil {
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DConscryptSocketTest.java296 byte[] ocspResponse; field in ConscryptSocketTest.ServerHooks
305 sslParameters.setOCSPResponse(ocspResponse); in createContext()
506 connection.serverHooks.ocspResponse = readTestFile("ocsp-response.der");
DNativeCryptoTest.java3004 byte[] ocspResponse = readTestFile("ocsp-response.der"); in test_get_ocsp_single_extension()
3012ocspResponse, OCSP_SCT_LIST_OID, certificate.getContext(), certificate, issuer.getContext(), issue… in test_get_ocsp_single_extension()