diff options
author | Michael Forney <mforney@mforney.org> | 2019-11-07 20:17:18 -0800 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-11-26 08:32:23 +0100 |
commit | 9b879160df01e7ddbb4770904391d3b74114302b (patch) | |
tree | 459aa36410942ab4dfc69d424d759d87ec8d5259 /lib/vtls/bearssl.h | |
parent | 95e94c64fb0290b6c0e66e78de7d7dfd109c4080 (diff) | |
download | curl-9b879160df01e7ddbb4770904391d3b74114302b.tar.gz |
TLS: add BearSSL vtls implementation
Closes #4597
Diffstat (limited to 'lib/vtls/bearssl.h')
-rw-r--r-- | lib/vtls/bearssl.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/vtls/bearssl.h b/lib/vtls/bearssl.h new file mode 100644 index 000000000..5f94922b9 --- /dev/null +++ b/lib/vtls/bearssl.h @@ -0,0 +1,32 @@ +#ifndef HEADER_CURL_BEARSSL_H +#define HEADER_CURL_BEARSSL_H +/*************************************************************************** + * _ _ ____ _ + * Project ___| | | | _ \| | + * / __| | | | |_) | | + * | (__| |_| | _ <| |___ + * \___|\___/|_| \_\_____| + * + * Copyright (C) 2019, Michael Forney, <mforney@mforney.org> + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at https://curl.haxx.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. + * + ***************************************************************************/ + +#include "curl_setup.h" + +#ifdef USE_BEARSSL + +extern const struct Curl_ssl Curl_ssl_bearssl; + +#endif /* USE_BEARSSL */ +#endif /* HEADER_CURL_BEARSSL_H */ |