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

  /external/boringssl/src/ssl/
ssl_cert.cc 189 if (cert->ocsp_response != NULL) {
190 CRYPTO_BUFFER_up_ref(cert->ocsp_response);
191 ret->ocsp_response = cert->ocsp_response;
230 CRYPTO_BUFFER_free(c->ocsp_response);
895 CRYPTO_BUFFER_free(ctx->cert->ocsp_response);
896 ctx->cert->ocsp_response = CRYPTO_BUFFER_new(response, response_len, NULL);
897 return ctx->cert->ocsp_response != NULL;
902 CRYPTO_BUFFER_free(ssl->cert->ocsp_response);
903 ssl->cert->ocsp_response = CRYPTO_BUFFER_new(response, response_len, NULL)
    [all...]
tls13_both.cc 282 CBS ocsp_response; local
285 !CBS_get_u24_length_prefixed(&status_request, &ocsp_response) ||
286 CBS_len(&ocsp_response) == 0 ||
293 !CBS_stow(&ocsp_response, &hs->new_session->ocsp_response,
499 ssl->cert->ocsp_response != NULL) {
500 CBB contents, ocsp_response; local
504 !CBB_add_u24_length_prefixed(&contents, &ocsp_response) ||
505 !CBB_add_bytes(&ocsp_response,
506 CRYPTO_BUFFER_data(ssl->cert->ocsp_response),
    [all...]
ssl_session.cc 230 if (session->ocsp_response != NULL) {
231 new_session->ocsp_response = (uint8_t *)BUF_memdup(
232 session->ocsp_response, session->ocsp_response_length);
233 if (new_session->ocsp_response == NULL) {
382 OPENSSL_free(session->ocsp_response);
    [all...]
handshake_client.cc 1137 CBS certificate_status, ocsp_response; local
    [all...]
handshake_server.cc 1000 CBB body, ocsp_response; local
    [all...]
ssl_asn1.cc 324 !CBB_add_bytes(&child2, in->ocsp_response, in->ocsp_response_length)) {
692 &session, &ret->ocsp_response, &ret->ocsp_response_length,
ssl_lib.cc     [all...]
internal.h 1475 CRYPTO_BUFFER *ocsp_response; member in struct:cert_st
    [all...]
t1_lib.cc     [all...]
  /external/boringssl/src/ssl/test/
test_config.h 101 std::string ocsp_response; member in struct:TestConfig
test_config.cc 167 { "-ocsp-response", &TestConfig::ocsp_response },
bssl_shim.cc 491 if (!config->ocsp_response.empty() &&
492 !SSL_set_ocsp_response(ssl, (const uint8_t *)config->ocsp_response.data(),
493 config->ocsp_response.size())) {
    [all...]
  /external/conscrypt/common/src/jni/main/cpp/
NativeCrypto.cpp 8456 CBS ocsp_response; local
    [all...]
  /external/boringssl/src/include/openssl/
ssl.h 4045 uint8_t *ocsp_response; member in struct:ssl_session_st
    [all...]

Completed in 418 milliseconds