/external/chromium_org/net/cert/ |
D | ct_objects_extractor_unittest.cc | 139 std::string ocsp_response = ct::GetDerEncodedFakeOCSPResponse(); in TEST_F() local 144 ocsp_response, &extracted_sct_list)); in TEST_F() 155 std::string ocsp_response = ct::GetDerEncodedFakeOCSPResponse(); in TEST_F() local 160 ocsp_response, &extracted_sct_list)); in TEST_F() 170 std::string ocsp_response = ct::GetDerEncodedFakeOCSPResponse(); in TEST_F() local 176 ocsp_response, &extracted_sct_list)); in TEST_F()
|
D | ct_objects_extractor_openssl.cc | 265 const std::string& ocsp_response, in ExtractSCTListFromOCSPResponse() argument 272 reinterpret_cast<const uint8_t*>(ocsp_response.data()), in ExtractSCTListFromOCSPResponse() 273 ocsp_response.size()); in ExtractSCTListFromOCSPResponse()
|
D | ct_objects_extractor_nss.cc | 518 const std::string& ocsp_response, in ExtractSCTListFromOCSPResponse() argument 525 if (ocsp_response.size() > 0xffffff) in ExtractSCTListFromOCSPResponse() 535 ocsp_response.data())), in ExtractSCTListFromOCSPResponse() 536 static_cast<unsigned int>(ocsp_response.size()) }; in ExtractSCTListFromOCSPResponse()
|
D | ct_objects_extractor.h | 57 const std::string& ocsp_response,
|
/external/chromium_org/third_party/tlslite/patches/ |
D | status_request.patch | 84 + def create(self, ocsp_response): 85 + self.ocsp_response = ocsp_response 97 + ocsp_response = p.getVarBytes(3) 98 + if not ocsp_response: 101 + self.ocsp_response = ocsp_response 108 + w.addVarSeq(bytearray(self.ocsp_response), 1, 3)
|
/external/chromium_org/third_party/boringssl/src/ssl/ |
D | ssl_asn1.c | 123 ASN1_OCTET_STRING ocsp_response; member 275 a.ocsp_response.length = in->ocsp_response_length; in i2d_SSL_SESSION() 276 a.ocsp_response.type = V_ASN1_OCTET_STRING; in i2d_SSL_SESSION() 277 a.ocsp_response.data = in->ocsp_response; in i2d_SSL_SESSION() 315 M_ASN1_I2D_len_EXP_opt(&(a.ocsp_response), i2d_ASN1_OCTET_STRING, 16, v16); in i2d_SSL_SESSION() 353 if (in->ocsp_response > 0) in i2d_SSL_SESSION() 354 M_ASN1_I2D_put_EXP_opt(&(a.ocsp_response), i2d_ASN1_OCTET_STRING, 16, v16); in i2d_SSL_SESSION() 620 if (ret->ocsp_response) in d2i_SSL_SESSION() 621 OPENSSL_free(ret->ocsp_response); in d2i_SSL_SESSION() 622 ret->ocsp_response = os.data; in d2i_SSL_SESSION()
|
D | ssl_sess.c | 719 if (ss->ocsp_response != NULL) in SSL_SESSION_free() 720 OPENSSL_free(ss->ocsp_response); in SSL_SESSION_free()
|
D | s3_clnt.c | 1806 CBS certificate_status, ocsp_response; in ssl3_get_cert_status() local 1822 !CBS_get_u24_length_prefixed(&certificate_status, &ocsp_response) || in ssl3_get_cert_status() 1823 CBS_len(&ocsp_response) == 0 || in ssl3_get_cert_status() 1831 if (!CBS_stow(&ocsp_response, in ssl3_get_cert_status() 1832 &s->session->ocsp_response, &s->session->ocsp_response_length)) in ssl3_get_cert_status()
|
D | ssl_lib.c | 1715 if (!session || !session->ocsp_response) in SSL_get0_ocsp_response() 1717 *out = session->ocsp_response; in SSL_get0_ocsp_response()
|
/external/chromium_org/third_party/tlslite/tlslite/ |
D | messages.py | 427 def create(self, ocsp_response): argument 428 self.ocsp_response = ocsp_response 440 ocsp_response = p.getVarBytes(3) 441 if not ocsp_response: 444 self.ocsp_response = ocsp_response 451 w.addVarSeq(bytearray(self.ocsp_response), 1, 3)
|
/external/chromium_org/net/tools/testserver/ |
D | testserver.py | 160 fallback_scsv_enabled, ocsp_response, disable_session_cache): argument 179 self.ocsp_response = ocsp_response 233 ocspResponse = self.ocsp_response) 1750 self.ocsp_response = socket_server.ocsp_response 1758 self.send_header('Content-Length', str(len(self.ocsp_response))) 1761 self.wfile.write(self.ocsp_response) 1985 self.__ocsp_server.ocsp_response = ocsp_der 1995 stapled_ocsp_response = self.__ocsp_server.ocsp_response
|
/external/chromium_org/net/socket/ |
D | ssl_client_socket_openssl.cc | 931 uint8_t* ocsp_response; in DoHandshake() local 933 SSL_get0_ocsp_response(ssl_, &ocsp_response, &ocsp_response_len); in DoHandshake() 1156 std::string ocsp_response; in VerifyCT() local 1158 ocsp_response.assign(reinterpret_cast<const char*>(ocsp_response_raw), in VerifyCT() 1174 ocsp_response, sct_list, &ct_verify_result_, net_log_); in VerifyCT()
|
D | ssl_client_socket_unittest.cc | 2654 base::StringPiece ocsp_response = input; in IsValidOCSPResponse() local 2656 return asn1::GetElement(&ocsp_response, asn1::kSEQUENCE, &sequence) && in IsValidOCSPResponse() 2657 ocsp_response.empty() && in IsValidOCSPResponse()
|
/external/chromium_org/third_party/boringssl/src/include/openssl/ |
D | ssl.h | 459 uint8_t *ocsp_response; member
|