Searched refs:ocsp_response (Results 1 - 11 of 11) sorted by relevance

/external/boringssl/src/ssl/test/
H A Dtest_config.h88 std::string ocsp_response; member in struct:TestConfig
H A Dtest_config.cc133 { "-ocsp-response", &TestConfig::ocsp_response },
H A Dbssl_shim.cc336 if (!config->ocsp_response.empty() &&
338 (const uint8_t *)config->ocsp_response.data(),
339 config->ocsp_response.size())) {
/external/boringssl/src/ssl/
H A Dssl_asn1.c323 !CBB_add_bytes(&child2, in->ocsp_response, in->ocsp_response_length)) {
623 &session, &ret->ocsp_response, &ret->ocsp_response_length,
H A Ds3_clnt.c1506 CBS certificate_status, ocsp_response; local
1527 !CBS_get_u24_length_prefixed(&certificate_status, &ocsp_response) ||
1528 CBS_len(&ocsp_response) == 0 ||
1535 if (!CBS_stow(&ocsp_response, &ssl->session->ocsp_response,
H A Dssl_lib.c339 OPENSSL_free(ctx->ocsp_response);
1506 if (ssl->server || !session || !session->ocsp_response) {
1509 *out = session->ocsp_response;
1529 OPENSSL_free(ctx->ocsp_response);
1532 ctx->ocsp_response = BUF_memdup(response, response_len);
1533 if (ctx->ocsp_response == NULL) {
H A Ds3_srvr.c1168 CBB out, ocsp_response; local
1175 !CBB_add_u24_length_prefixed(&out, &ocsp_response) ||
1176 !CBB_add_bytes(&ocsp_response, ssl->ctx->ocsp_response,
H A Dssl_session.c201 OPENSSL_free(session->ocsp_response);
/external/boringssl/include/openssl/
H A Dssl.h3402 uint8_t *ocsp_response; member in struct:ssl_session_st
3683 uint8_t *ocsp_response; member in struct:ssl_ctx_st
/external/boringssl/src/include/openssl/
H A Dssl.h3402 uint8_t *ocsp_response; member in struct:ssl_session_st
3683 uint8_t *ocsp_response; member in struct:ssl_ctx_st
/external/conscrypt/src/main/native/
H A 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)) {

Completed in 226 milliseconds