wolfSSL SSL/TLS library, support up to TLS1.3

Dependents:   CyaSSL-Twitter-OAuth4Tw Example-client-tls-cert TwitterReader TweetTest ... more

Committer:
wolfSSL
Date:
Tue Aug 22 10:48:22 2017 +0000
Revision:
13:f67a6c6013ca
Parent:
11:cee25a834751
wolfSSL3.12.0 with TLS1.3

Who changed what in which revision?

UserRevisionLine numberNew contents of line
wolfSSL 11:cee25a834751 1 /* ocsp.h for libcurl */
wolfSSL 11:cee25a834751 2
wolfSSL 11:cee25a834751 3 #ifndef WOLFSSL_OCSP_H_
wolfSSL 11:cee25a834751 4 #define WOLFSSL_OCSP_H_
wolfSSL 11:cee25a834751 5
wolfSSL 11:cee25a834751 6 #ifdef HAVE_OCSP
wolfSSL 11:cee25a834751 7 #include <wolfssl/ocsp.h>
wolfSSL 11:cee25a834751 8
wolfSSL 11:cee25a834751 9 #define OCSP_REQUEST OcspRequest
wolfSSL 11:cee25a834751 10 #define OCSP_RESPONSE OcspResponse
wolfSSL 11:cee25a834751 11 #define OCSP_BASICRESP WOLFSSL_OCSP_BASICRESP
wolfSSL 11:cee25a834751 12 #define OCSP_CERTID WOLFSSL_OCSP_CERTID
wolfSSL 11:cee25a834751 13 #define OCSP_ONEREQ WOLFSSL_OCSP_ONEREQ
wolfSSL 11:cee25a834751 14
wolfSSL 11:cee25a834751 15 #define OCSP_RESPONSE_STATUS_SUCCESSFUL 0
wolfSSL 11:cee25a834751 16 #define V_OCSP_CERTSTATUS_GOOD 0
wolfSSL 11:cee25a834751 17
wolfSSL 11:cee25a834751 18 #define OCSP_resp_find_status wolfSSL_OCSP_resp_find_status
wolfSSL 11:cee25a834751 19 #define OCSP_cert_status_str wolfSSL_OCSP_cert_status_str
wolfSSL 11:cee25a834751 20 #define OCSP_check_validity wolfSSL_OCSP_check_validity
wolfSSL 11:cee25a834751 21
wolfSSL 11:cee25a834751 22 #define OCSP_CERTID_free wolfSSL_OCSP_CERTID_free
wolfSSL 11:cee25a834751 23 #define OCSP_cert_to_id wolfSSL_OCSP_cert_to_id
wolfSSL 11:cee25a834751 24
wolfSSL 11:cee25a834751 25 #define OCSP_BASICRESP_free wolfSSL_OCSP_BASICRESP_free
wolfSSL 11:cee25a834751 26 #define OCSP_basic_verify wolfSSL_OCSP_basic_verify
wolfSSL 11:cee25a834751 27
wolfSSL 11:cee25a834751 28 #define OCSP_RESPONSE_free wolfSSL_OCSP_RESPONSE_free
wolfSSL 11:cee25a834751 29 #define d2i_OCSP_RESPONSE_bio wolfSSL_d2i_OCSP_RESPONSE_bio
wolfSSL 11:cee25a834751 30 #define d2i_OCSP_RESPONSE wolfSSL_d2i_OCSP_RESPONSE
wolfSSL 11:cee25a834751 31 #define i2d_OCSP_RESPONSE wolfSSL_i2d_OCSP_RESPONSE
wolfSSL 11:cee25a834751 32 #define OCSP_response_status wolfSSL_OCSP_response_status
wolfSSL 11:cee25a834751 33 #define OCSP_response_status_str wolfSSL_OCSP_response_status_str
wolfSSL 11:cee25a834751 34 #define OCSP_response_get1_basic wolfSSL_OCSP_response_get1_basic
wolfSSL 11:cee25a834751 35
wolfSSL 11:cee25a834751 36 #define OCSP_REQUEST_new wolfSSL_OCSP_REQUEST_new
wolfSSL 11:cee25a834751 37 #define OCSP_REQUEST_free wolfSSL_OCSP_REQUEST_free
wolfSSL 11:cee25a834751 38 #define i2d_OCSP_REQUEST wolfSSL_i2d_OCSP_REQUEST
wolfSSL 11:cee25a834751 39 #define OCSP_request_add0_id wolfSSL_OCSP_request_add0_id
wolfSSL 11:cee25a834751 40
wolfSSL 11:cee25a834751 41 #endif /* HAVE_OCSP */
wolfSSL 11:cee25a834751 42
wolfSSL 11:cee25a834751 43 #endif /* WOLFSSL_OCSP_H_ */
wolfSSL 11:cee25a834751 44
wolfSSL 11:cee25a834751 45