Searched refs:ocsp_response (Results 1 – 10 of 10) sorted by relevance
/external/boringssl/src/ssl/test/ |
D | test_config.h | 88 std::string ocsp_response; member
|
D | test_config.cc | 133 { "-ocsp-response", &TestConfig::ocsp_response },
|
D | bssl_shim.cc | 336 if (!config->ocsp_response.empty() && in InstallCertificate() 338 (const uint8_t *)config->ocsp_response.data(), in InstallCertificate() 339 config->ocsp_response.size())) { in InstallCertificate()
|
/external/boringssl/src/ssl/ |
D | ssl_asn1.c | 323 !CBB_add_bytes(&child2, in->ocsp_response, in->ocsp_response_length)) { in SSL_SESSION_to_bytes_full() 623 &session, &ret->ocsp_response, &ret->ocsp_response_length, in SSL_SESSION_parse()
|
D | s3_clnt.c | 1506 CBS certificate_status, ocsp_response; in ssl3_get_cert_status() local 1527 !CBS_get_u24_length_prefixed(&certificate_status, &ocsp_response) || in ssl3_get_cert_status() 1528 CBS_len(&ocsp_response) == 0 || in ssl3_get_cert_status() 1535 if (!CBS_stow(&ocsp_response, &ssl->session->ocsp_response, in ssl3_get_cert_status()
|
D | ssl_lib.c | 339 OPENSSL_free(ctx->ocsp_response); in SSL_CTX_free() 1506 if (ssl->server || !session || !session->ocsp_response) { in SSL_get0_ocsp_response() 1509 *out = session->ocsp_response; in SSL_get0_ocsp_response() 1529 OPENSSL_free(ctx->ocsp_response); in SSL_CTX_set_ocsp_response() 1532 ctx->ocsp_response = BUF_memdup(response, response_len); in SSL_CTX_set_ocsp_response() 1533 if (ctx->ocsp_response == NULL) { in SSL_CTX_set_ocsp_response()
|
D | s3_srvr.c | 1168 CBB out, ocsp_response; in ssl3_send_certificate_status() local 1175 !CBB_add_u24_length_prefixed(&out, &ocsp_response) || in ssl3_send_certificate_status() 1176 !CBB_add_bytes(&ocsp_response, ssl->ctx->ocsp_response, in ssl3_send_certificate_status()
|
D | ssl_session.c | 201 OPENSSL_free(session->ocsp_response); in SSL_SESSION_free()
|
/external/boringssl/src/include/openssl/ |
D | ssl.h | 3402 uint8_t *ocsp_response; member 3683 uint8_t *ocsp_response; member
|
/external/conscrypt/src/main/native/ |
D | org_conscrypt_NativeCrypto.cpp | 10891 static bool get_ocsp_basic_response(CBS *ocsp_response, CBS *basic_response) { argument 10895 if (!CBS_get_asn1(ocsp_response, nullptr /* responseStatus */, CBS_ASN1_ENUMERATED) || 10896 !CBS_get_asn1(ocsp_response, &tagged_response_bytes, 10989 CBS ocsp_response; local 10990 if (!CBS_get_asn1(&cbs, &ocsp_response, CBS_ASN1_SEQUENCE)) { 10996 if (!get_ocsp_basic_response(&ocsp_response, &basic_response)) {
|