tls.hpp
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION.
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 #pragma once
6 
7 #include <optional>
8 #include <string>
9 #include <utility>
10 
11 #include <kvikio/shim/libcurl.hpp>
12 
13 namespace kvikio::detail {
36 std::pair<std::optional<std::string>, std::optional<std::string>> get_ca_paths();
37 
46 void set_up_ca_paths(CurlHandle& curl);
47 } // namespace kvikio::detail