Home
last modified time | relevance | path

Searched refs:ocsp_response (Results 1 – 10 of 10) sorted by relevance

/external/boringssl/src/ssl/test/
Dtest_config.h88 std::string ocsp_response; member
Dtest_config.cc133 { "-ocsp-response", &TestConfig::ocsp_response },
Dbssl_shim.cc336 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/
Dssl_asn1.c323 !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()
Ds3_clnt.c1506 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()
Dssl_lib.c339 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()
Ds3_srvr.c1168 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()
Dssl_session.c201 OPENSSL_free(session->ocsp_response); in SSL_SESSION_free()
/external/boringssl/src/include/openssl/
Dssl.h3402 uint8_t *ocsp_response; member
3683 uint8_t *ocsp_response; member
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp10891 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)) {