HomeSort by relevance Sort by last modified time
    Searched defs:ocsp_response (Results 1 - 7 of 7) sorted by null

  /external/boringssl/src/ssl/
tls13_both.cc 194 CBS ocsp_response; local
197 !CBS_get_u24_length_prefixed(&status_request, &ocsp_response) ||
198 CBS_len(&ocsp_response) == 0 ||
205 CRYPTO_BUFFER_free(hs->new_session->ocsp_response);
206 hs->new_session->ocsp_response =
207 CRYPTO_BUFFER_new_from_CBS(&ocsp_response, ssl->ctx->pool);
208 if (hs->new_session->ocsp_response == nullptr) {
396 ssl->cert->ocsp_response != NULL) {
397 CBB contents, ocsp_response; local
401 !CBB_add_u24_length_prefixed(&contents, &ocsp_response) ||
    [all...]
handshake_client.cc 873 CBS certificate_status = msg.body, ocsp_response; local
877 !CBS_get_u24_length_prefixed(&certificate_status, &ocsp_response) ||
878 CBS_len(&ocsp_response) == 0 ||
885 CRYPTO_BUFFER_free(hs->new_session->ocsp_response);
886 hs->new_session->ocsp_response =
887 CRYPTO_BUFFER_new_from_CBS(&ocsp_response, ssl->ctx->pool);
888 if (hs->new_session->ocsp_response == nullptr) {
    [all...]
handshake_server.cc 769 CBB body, ocsp_response; local
773 !CBB_add_u24_length_prefixed(&body, &ocsp_response) ||
774 !CBB_add_bytes(&ocsp_response,
775 CRYPTO_BUFFER_data(ssl->cert->ocsp_response),
776 CRYPTO_BUFFER_len(ssl->cert->ocsp_response)) ||
    [all...]
internal.h 1759 CRYPTO_BUFFER *ocsp_response; member in struct:bssl::CERT
    [all...]
  /external/boringssl/src/ssl/test/
test_config.h 106 std::string ocsp_response; member in struct:TestConfig
  /external/boringssl/src/include/openssl/
ssl.h 4204 CRYPTO_BUFFER *ocsp_response; member in struct:ssl_session_st
    [all...]
  /external/conscrypt/common/src/jni/main/cpp/conscrypt/
native_crypto.cc 8965 CBS ocsp_response; local
    [all...]

Completed in 98 milliseconds