Home
last modified time | relevance | path

Searched refs:ocsp_resp (Results 1 – 4 of 4) sorted by relevance

/external/wpa_supplicant_8/src/tls/
Dtlsv1_server_write.c284 char *ocsp_resp, in tls_write_server_certificate_status() argument
290 if (!ocsp_resp) { in tls_write_server_certificate_status()
345 os_memcpy(pos, ocsp_resp, ocsp_resp_len); in tls_write_server_certificate_status()
935 char *ocsp_resp = NULL; in tls_send_server_hello() local
942 ocsp_resp = os_readfile( in tls_send_server_hello()
948 ocsp_resp = os_readfile(conn->cred->ocsp_stapling_response, in tls_send_server_hello()
951 if (!ocsp_resp) in tls_send_server_hello()
958 os_free(ocsp_resp); in tls_send_server_hello()
967 os_free(ocsp_resp); in tls_send_server_hello()
972 os_free(ocsp_resp); in tls_send_server_hello()
[all …]
/external/curl/lib/vtls/
Dgtls.c932 gnutls_ocsp_resp_t ocsp_resp; in gtls_connect_step3() local
951 gnutls_ocsp_resp_init(&ocsp_resp); in gtls_connect_step3()
953 rc = gnutls_ocsp_resp_import(ocsp_resp, &status_request); in gtls_connect_step3()
959 (void)gnutls_ocsp_resp_get_single(ocsp_resp, 0, NULL, NULL, NULL, NULL, in gtls_connect_step3()
1022 gnutls_ocsp_resp_deinit(ocsp_resp); in gtls_connect_step3()
/external/python/cryptography/docs/x509/
Docsp.rst199 >>> ocsp_resp = ocsp.load_der_ocsp_response(der_ocsp_resp_unauth)
200 >>> print(ocsp_resp.response_status)
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Dbackend.py1579 ocsp_resp = self._lib.OCSP_response_create(
1582 self.openssl_assert(ocsp_resp != self._ffi.NULL)
1583 ocsp_resp = self._ffi.gc(ocsp_resp, self._lib.OCSP_RESPONSE_free)
1584 return _OCSPResponse(self, ocsp_resp)