xref: /aosp_15_r20/external/wpa_supplicant_8/src/crypto/tls_openssl.h (revision 03f9172ca588f91df233974f4258bab95191f931)
1 /*
2  * SSL/TLS interface functions for OpenSSL
3  * Copyright (c) 2004-2015, Jouni Malinen <[email protected]>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8 
9 #ifndef TLS_OPENSSL_H
10 #define TLS_OPENSSL_H
11 
12 enum ocsp_result {
13 	OCSP_GOOD, OCSP_REVOKED, OCSP_NO_RESPONSE, OCSP_INVALID
14 };
15 
16 enum ocsp_result check_ocsp_resp(SSL_CTX *ssl_ctx, SSL *ssl, X509 *cert,
17 				 X509 *issuer, X509 *issuer_issuer);
18 
19 #endif /* TLS_OPENSSL_H */
20