10 lines
284 B
C++
10 lines
284 B
C++
#pragma once
|
|
|
|
#include "ref.hpp"
|
|
|
|
#include <string_view>
|
|
|
|
auto log_openssl_errors(const std::string_view prefix) -> void;
|
|
auto key_from_file(const std::string &filename, const std::string_view password) -> Ref<EVP_PKEY>;
|
|
auto cert_from_file(const std::string &filename) -> Ref<X509>;
|