2#include <vanetza/security/private_key.hpp>
11
12
13
14
15PrivateKey load_private_key_from_pem_file(
const std::string& key_path);
18
19
20
21
22PrivateKey load_private_key_from_der_file(
const std::string& key_path);
24#ifdef VANETZA_WITH_OPENSSL
25PrivateKey load_private_key_from_pem_file_openssl(
const std::string& key_path);
26PrivateKey load_private_key_from_der_file_openssl(
const std::string& key_path);
29#ifdef VANETZA_WITH_CRYPTOPP
30PrivateKey load_private_key_from_pem_file_cryptopp(
const std::string& key_path);
31PrivateKey load_private_key_from_der_file_cryptopp(
const std::string& key_path);