Home
last modified time | relevance | path

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

12345678910>>...16

/dports/security/s2n/s2n-tls-1.1.2/tests/integration/
H A Ds2n_handshake_test_gnutls-serv.py38 ocsp_response = TEST_OCSP_ECDSA_RESPONSE_FILE
44 ocsp_response = TEST_OCSP_RESPONSE_FILE
47 "--ocsp-response", ocsp_response])
49 ocsp_response = TEST_OCSP_RESPONSE_FILE
52 ocsp_response = TEST_OCSP_ECDSA_RESPONSE_FILE
55 "--ocsp-response", ocsp_response])
/dports/www/mod_gnutls/mod_gnutls-0.8.4/src/
H A Dgnutls_ocsp.c755 *ocsp_response = sc->cache->fetch(ctxt, in mgs_get_ocsp_response()
757 if (ocsp_response->size == 0) in mgs_get_ocsp_response()
775 gnutls_free(ocsp_response->data); in mgs_get_ocsp_response()
776 ocsp_response->data = NULL; in mgs_get_ocsp_response()
793 if (ocsp_response->size > 0) in mgs_get_ocsp_response()
802 ocsp_response->data = NULL; in mgs_get_ocsp_response()
819 *ocsp_response = sc->cache->fetch(ctxt, in mgs_get_ocsp_response()
821 if (ocsp_response->size == 0) in mgs_get_ocsp_response()
833 gnutls_free(ocsp_response->data); in mgs_get_ocsp_response()
834 ocsp_response->size = 0; in mgs_get_ocsp_response()
[all …]
/dports/net/haproxy23/haproxy-2.3.16/src/
H A Dssl_ckch.c213 ocsp_response = calloc(1, sizeof(*ocsp_response)); in ssl_sock_load_ocsp_response_from_file()
215 free(ocsp_response); in ssl_sock_load_ocsp_response_from_file()
216 ocsp_response = NULL; in ssl_sock_load_ocsp_response_from_file()
220 if (ckch->ocsp_response) { in ssl_sock_load_ocsp_response_from_file()
225 ckch->ocsp_response = ocsp_response; in ssl_sock_load_ocsp_response_from_file()
699 if (src->ocsp_response) { in ssl_sock_copy_cert_key_and_chain()
702 ocsp_response = calloc(1, sizeof(*ocsp_response)); in ssl_sock_copy_cert_key_and_chain()
703 if (!chunk_dup(ocsp_response, src->ocsp_response)) { in ssl_sock_copy_cert_key_and_chain()
704 free(ocsp_response); in ssl_sock_copy_cert_key_and_chain()
705 ocsp_response = NULL; in ssl_sock_copy_cert_key_and_chain()
[all …]
/dports/net/haproxy22/haproxy-2.2.19/src/
H A Dssl_ckch.c213 ocsp_response = calloc(1, sizeof(*ocsp_response)); in ssl_sock_load_ocsp_response_from_file()
215 free(ocsp_response); in ssl_sock_load_ocsp_response_from_file()
216 ocsp_response = NULL; in ssl_sock_load_ocsp_response_from_file()
220 if (ckch->ocsp_response) { in ssl_sock_load_ocsp_response_from_file()
225 ckch->ocsp_response = ocsp_response; in ssl_sock_load_ocsp_response_from_file()
635 if (src->ocsp_response) { in ssl_sock_copy_cert_key_and_chain()
638 ocsp_response = calloc(1, sizeof(*ocsp_response)); in ssl_sock_copy_cert_key_and_chain()
639 if (!chunk_dup(ocsp_response, src->ocsp_response)) { in ssl_sock_copy_cert_key_and_chain()
640 free(ocsp_response); in ssl_sock_copy_cert_key_and_chain()
641 ocsp_response = NULL; in ssl_sock_copy_cert_key_and_chain()
[all …]
/dports/databases/pymongo/pymongo-3.12.0/pymongo/
H A Docsp_support.py241 ocsp_response = ocsp_response_cache[ocsp_request]
256 ocsp_response = _load_der_ocsp_response(response.content)
258 "OCSP response status: %r", ocsp_response.response_status)
259 if ocsp_response.response_status != _OCSPResponseStatus.SUCCESSFUL:
265 if ocsp_response.serial_number != ocsp_request.serial_number:
268 if not _verify_response(issuer, ocsp_response):
272 ocsp_response_cache[ocsp_request] = ocsp_response
274 return ocsp_response
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/cert/
H A Dct_objects_extractor_unittest.cc139 std::string ocsp_response = ct::GetDerEncodedFakeOCSPResponse(); in TEST_F() local
143 issuer_cert->cert_buffer(), subject_cert->serial_number(), ocsp_response, in TEST_F()
156 std::string ocsp_response = ct::GetDerEncodedFakeOCSPResponse(); in TEST_F() local
160 issuer_cert->cert_buffer(), test_cert_->serial_number(), ocsp_response, in TEST_F()
172 std::string ocsp_response = ct::GetDerEncodedFakeOCSPResponse(); in TEST_F() local
177 test_cert_->cert_buffer(), subject_cert->serial_number(), ocsp_response, in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/cert/
H A Dct_objects_extractor_unittest.cc139 std::string ocsp_response = ct::GetDerEncodedFakeOCSPResponse(); in TEST_F() local
143 issuer_cert->cert_buffer(), subject_cert->serial_number(), ocsp_response, in TEST_F()
156 std::string ocsp_response = ct::GetDerEncodedFakeOCSPResponse(); in TEST_F() local
160 issuer_cert->cert_buffer(), test_cert_->serial_number(), ocsp_response, in TEST_F()
172 std::string ocsp_response = ct::GetDerEncodedFakeOCSPResponse(); in TEST_F() local
177 test_cert_->cert_buffer(), subject_cert->serial_number(), ocsp_response, in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/boringssl/src/ssl/
H A Dtls13_both.cc262 CBS ocsp_response; in tls13_process_certificate() local
266 CBS_len(&ocsp_response) == 0 || in tls13_process_certificate()
273 hs->new_session->ocsp_response.reset( in tls13_process_certificate()
274 CRYPTO_BUFFER_new_from_CBS(&ocsp_response, ssl->ctx->pool)); in tls13_process_certificate()
275 if (hs->new_session->ocsp_response == nullptr) { in tls13_process_certificate()
467 if (hs->ocsp_stapling_requested && cert->ocsp_response != NULL) { in tls13_add_certificate()
468 CBB contents, ocsp_response; in tls13_add_certificate() local
472 !CBB_add_u24_length_prefixed(&contents, &ocsp_response) || in tls13_add_certificate()
473 !CBB_add_bytes(&ocsp_response, in tls13_add_certificate()
474 CRYPTO_BUFFER_data(cert->ocsp_response.get()), in tls13_add_certificate()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/boringssl/src/ssl/
H A Dtls13_both.cc263 CBS ocsp_response; in tls13_process_certificate() local
267 CBS_len(&ocsp_response) == 0 || in tls13_process_certificate()
274 hs->new_session->ocsp_response.reset( in tls13_process_certificate()
275 CRYPTO_BUFFER_new_from_CBS(&ocsp_response, ssl->ctx->pool)); in tls13_process_certificate()
276 if (hs->new_session->ocsp_response == nullptr) { in tls13_process_certificate()
468 if (hs->ocsp_stapling_requested && cert->ocsp_response != NULL) { in tls13_add_certificate()
469 CBB contents, ocsp_response; in tls13_add_certificate() local
473 !CBB_add_u24_length_prefixed(&contents, &ocsp_response) || in tls13_add_certificate()
474 !CBB_add_bytes(&ocsp_response, in tls13_add_certificate()
475 CRYPTO_BUFFER_data(cert->ocsp_response.get()), in tls13_add_certificate()
[all …]
/dports/net/quiche/quiche-0.9.0/cargo-crates/boring-sys-1.1.1/deps/boringssl/src/ssl/
H A Dtls13_both.cc262 CBS ocsp_response; in tls13_process_certificate() local
266 CBS_len(&ocsp_response) == 0 || in tls13_process_certificate()
273 hs->new_session->ocsp_response.reset( in tls13_process_certificate()
274 CRYPTO_BUFFER_new_from_CBS(&ocsp_response, ssl->ctx->pool)); in tls13_process_certificate()
275 if (hs->new_session->ocsp_response == nullptr) { in tls13_process_certificate()
467 if (hs->ocsp_stapling_requested && cert->ocsp_response != NULL) { in tls13_add_certificate()
468 CBB contents, ocsp_response; in tls13_add_certificate() local
472 !CBB_add_u24_length_prefixed(&contents, &ocsp_response) || in tls13_add_certificate()
473 !CBB_add_bytes(&ocsp_response, in tls13_add_certificate()
474 CRYPTO_BUFFER_data(cert->ocsp_response.get()), in tls13_add_certificate()
[all …]
/dports/net/quiche/quiche-0.9.0/deps/boringssl/src/ssl/
H A Dtls13_both.cc262 CBS ocsp_response; in tls13_process_certificate() local
266 CBS_len(&ocsp_response) == 0 || in tls13_process_certificate()
273 hs->new_session->ocsp_response.reset( in tls13_process_certificate()
274 CRYPTO_BUFFER_new_from_CBS(&ocsp_response, ssl->ctx->pool)); in tls13_process_certificate()
275 if (hs->new_session->ocsp_response == nullptr) { in tls13_process_certificate()
467 if (hs->ocsp_stapling_requested && cert->ocsp_response != NULL) { in tls13_add_certificate()
468 CBB contents, ocsp_response; in tls13_add_certificate() local
472 !CBB_add_u24_length_prefixed(&contents, &ocsp_response) || in tls13_add_certificate()
473 !CBB_add_bytes(&ocsp_response, in tls13_add_certificate()
474 CRYPTO_BUFFER_data(cert->ocsp_response.get()), in tls13_add_certificate()
[all …]
/dports/security/boringssl/boringssl-6a71840/ssl/
H A Dtls13_both.cc263 CBS ocsp_response; in tls13_process_certificate() local
267 CBS_len(&ocsp_response) == 0 || in tls13_process_certificate()
274 hs->new_session->ocsp_response.reset( in tls13_process_certificate()
275 CRYPTO_BUFFER_new_from_CBS(&ocsp_response, ssl->ctx->pool)); in tls13_process_certificate()
276 if (hs->new_session->ocsp_response == nullptr) { in tls13_process_certificate()
468 if (hs->ocsp_stapling_requested && cert->ocsp_response != NULL) { in tls13_add_certificate()
469 CBB contents, ocsp_response; in tls13_add_certificate() local
473 !CBB_add_u24_length_prefixed(&contents, &ocsp_response) || in tls13_add_certificate()
474 !CBB_add_bytes(&ocsp_response, in tls13_add_certificate()
475 CRYPTO_BUFFER_data(cert->ocsp_response.get()), in tls13_add_certificate()
[all …]
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/roms/ipxe/src/include/ipxe/
H A Docsp.h57 struct ocsp_response { struct
89 struct ocsp_response response; argument
117 extern int ocsp_response ( struct ocsp_check *ocsp, const void *data,
/dports/devel/pecl-grpc/grpc-1.42.0/third_party/boringssl-with-bazel/src/ssl/
H A Dtls13_both.cc255 CBS ocsp_response; in tls13_process_certificate() local
259 CBS_len(&ocsp_response) == 0 || in tls13_process_certificate()
266 hs->new_session->ocsp_response.reset( in tls13_process_certificate()
267 CRYPTO_BUFFER_new_from_CBS(&ocsp_response, ssl->ctx->pool)); in tls13_process_certificate()
268 if (hs->new_session->ocsp_response == nullptr) { in tls13_process_certificate()
454 if (hs->ocsp_stapling_requested && cert->ocsp_response != NULL) { in tls13_add_certificate()
455 CBB contents, ocsp_response; in tls13_add_certificate() local
459 !CBB_add_u24_length_prefixed(&contents, &ocsp_response) || in tls13_add_certificate()
460 !CBB_add_bytes(&ocsp_response, in tls13_add_certificate()
461 CRYPTO_BUFFER_data(cert->ocsp_response.get()), in tls13_add_certificate()
[all …]
/dports/devel/py-grpcio/grpcio-1.43.0/third_party/boringssl-with-bazel/src/ssl/
H A Dtls13_both.cc255 CBS ocsp_response; in tls13_process_certificate() local
259 CBS_len(&ocsp_response) == 0 || in tls13_process_certificate()
266 hs->new_session->ocsp_response.reset( in tls13_process_certificate()
267 CRYPTO_BUFFER_new_from_CBS(&ocsp_response, ssl->ctx->pool)); in tls13_process_certificate()
268 if (hs->new_session->ocsp_response == nullptr) { in tls13_process_certificate()
454 if (hs->ocsp_stapling_requested && cert->ocsp_response != NULL) { in tls13_add_certificate()
455 CBB contents, ocsp_response; in tls13_add_certificate() local
459 !CBB_add_u24_length_prefixed(&contents, &ocsp_response) || in tls13_add_certificate()
460 !CBB_add_bytes(&ocsp_response, in tls13_add_certificate()
461 CRYPTO_BUFFER_data(cert->ocsp_response.get()), in tls13_add_certificate()
[all …]
/dports/net/haproxy/haproxy-2.4.10/src/
H A Dssl_ckch.c211 ocsp_response = calloc(1, sizeof(*ocsp_response)); in ssl_sock_load_ocsp_response_from_file()
213 ha_free(&ocsp_response); in ssl_sock_load_ocsp_response_from_file()
217 if (ckch->ocsp_response) { in ssl_sock_load_ocsp_response_from_file()
219 free(ckch->ocsp_response); in ssl_sock_load_ocsp_response_from_file()
221 ckch->ocsp_response = ocsp_response; in ssl_sock_load_ocsp_response_from_file()
560 if (ckch->ocsp_response) { in ssl_sock_load_pem_into_ckch()
631 if (ckch->ocsp_response) { in ssl_sock_free_cert_key_and_chain_contents()
686 if (src->ocsp_response) { in ssl_sock_copy_cert_key_and_chain()
689 ocsp_response = calloc(1, sizeof(*ocsp_response)); in ssl_sock_copy_cert_key_and_chain()
690 if (!chunk_dup(ocsp_response, src->ocsp_response)) { in ssl_sock_copy_cert_key_and_chain()
[all …]
/dports/emulators/qemu42/qemu-4.2.1/roms/ipxe/src/include/ipxe/
H A Docsp.h65 struct ocsp_response { struct
97 struct ocsp_response response; argument
144 extern int ocsp_response ( struct ocsp_check *ocsp, const void *data,
/dports/emulators/qemu5/qemu-5.2.0/roms/ipxe/src/include/ipxe/
H A Docsp.h65 struct ocsp_response { struct
97 struct ocsp_response response; argument
144 extern int ocsp_response ( struct ocsp_check *ocsp, const void *data,
/dports/net/ipxe/ipxe-2265a65/src/include/ipxe/
H A Docsp.h65 struct ocsp_response { struct
97 struct ocsp_response response; argument
144 extern int ocsp_response ( struct ocsp_check *ocsp, const void *data,
/dports/emulators/qemu-utils/qemu-4.2.1/roms/ipxe/src/include/ipxe/
H A Docsp.h65 struct ocsp_response { struct
97 struct ocsp_response response; argument
144 extern int ocsp_response ( struct ocsp_check *ocsp, const void *data,
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/ipxe/src/include/ipxe/
H A Docsp.h65 struct ocsp_response { struct
97 struct ocsp_response response; argument
144 extern int ocsp_response ( struct ocsp_check *ocsp, const void *data,
/dports/www/zola/zola-0.15.2/cargo-crates/rustls-0.20.2/src/client/
H A Dcommon.rs13 pub(super) ocsp_response: Vec<u8>, field
20 ocsp_response: Vec<u8>, in new()
25 ocsp_response, in new()
/dports/emulators/qemu/qemu-6.2.0/roms/ipxe/src/include/ipxe/
H A Docsp.h65 struct ocsp_response { struct
97 struct ocsp_response response; argument
144 extern int ocsp_response ( struct ocsp_check *ocsp, const void *data,
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/rustls-0.20.2/src/client/
H A Dcommon.rs13 pub(super) ocsp_response: Vec<u8>, field
20 ocsp_response: Vec<u8>, in new()
25 ocsp_response, in new()
/dports/emulators/qemu60/qemu-6.0.0/roms/ipxe/src/include/ipxe/
H A Docsp.h65 struct ocsp_response { struct
97 struct ocsp_response response; argument
144 extern int ocsp_response ( struct ocsp_check *ocsp, const void *data,

12345678910>>...16