70 lines
2.6 KiB
C
Raw Normal View History

2015-04-27 22:25:09 +02:00
#ifndef HEADER_CURL_SSLUSE_H
#define HEADER_CURL_SSLUSE_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
2023-07-02 19:51:09 +02:00
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
2021-09-14 00:13:48 +02:00
* are also available at https://curl.se/docs/copyright.html.
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
2022-11-16 20:14:03 +01:00
* SPDX-License-Identifier: curl
*
***************************************************************************/
2015-04-27 22:25:09 +02:00
#include "curl_setup.h"
2015-11-17 17:22:37 +01:00
#ifdef USE_OPENSSL
/*
2022-03-29 21:10:50 +02:00
* This header should only be needed to get included by vtls.c, openssl.c
* and ngtcp2.c
*/
2022-11-16 20:14:03 +01:00
#include <openssl/ssl.h>
#include "urldata.h"
2015-04-27 22:25:09 +02:00
2022-08-04 22:12:04 +02:00
/*
* In an effort to avoid using 'X509 *' here, we instead use the struct
* x509_st version of the type so that we can forward-declare it here without
* having to include <openssl/x509v3.h>. Including that header causes name
* conflicts when libcurl is built with both Schannel and OpenSSL support.
*/
struct x509_st;
2022-03-29 21:10:50 +02:00
CURLcode Curl_ossl_verifyhost(struct Curl_easy *data, struct connectdata *conn,
2022-08-04 22:12:04 +02:00
struct x509_st *server_cert);
2018-01-26 17:06:56 +01:00
extern const struct Curl_ssl Curl_ssl_openssl;
2022-08-04 22:12:04 +02:00
struct ssl_ctx_st;
CURLcode Curl_ossl_set_client_cert(struct Curl_easy *data,
struct ssl_ctx_st *ctx, char *cert_file,
const struct curl_blob *cert_blob,
const char *cert_type, char *key_file,
const struct curl_blob *key_blob,
const char *key_type, char *key_passwd);
2022-11-16 20:14:03 +01:00
CURLcode Curl_ossl_certchain(struct Curl_easy *data, SSL *ssl);
2023-07-02 19:51:09 +02:00
/**
* Setup the OpenSSL X509_STORE in `ssl_ctx` for the cfilter `cf` and
* easy handle `data`. Will allow reuse of a shared cache if suitable
* and configured.
*/
CURLcode Curl_ssl_setup_x509_store(struct Curl_cfilter *cf,
struct Curl_easy *data,
SSL_CTX *ssl_ctx);
2015-11-17 17:22:37 +01:00
#endif /* USE_OPENSSL */
2015-04-27 22:25:09 +02:00
#endif /* HEADER_CURL_SSLUSE_H */