213e158ca8
This makes it easier to share the OCSP implementation needed for BoringSSL outside tls_openssl.c. For now, this is mainly for http_curl.c. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
19 lines
477 B
C
19 lines
477 B
C
/*
|
|
* SSL/TLS interface functions for OpenSSL
|
|
* Copyright (c) 2004-2015, Jouni Malinen <j@w1.fi>
|
|
*
|
|
* This software may be distributed under the terms of the BSD license.
|
|
* See README for more details.
|
|
*/
|
|
|
|
#ifndef TLS_OPENSSL_H
|
|
#define TLS_OPENSSL_H
|
|
|
|
enum ocsp_result {
|
|
OCSP_GOOD, OCSP_REVOKED, OCSP_NO_RESPONSE, OCSP_INVALID
|
|
};
|
|
|
|
enum ocsp_result check_ocsp_resp(SSL_CTX *ssl_ctx, SSL *ssl, X509 *cert,
|
|
X509 *issuer, X509 *issuer_issuer);
|
|
|
|
#endif /* TLS_OPENSSL_H */
|