Source code

Revision control

Copy as Markdown

Other Tools

/*
* (C) 1999-2021 Jack Lloyd
* (C) 2019,2021 René Meusel
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TEST_CERT_STORE_UTILS_H_
#define BOTAN_TEST_CERT_STORE_UTILS_H_
#include <string>
#include <vector>
#include <botan/types.h>
#if defined(BOTAN_HAS_X509_CERTIFICATES)
#include <botan/pkix_types.h>
namespace Botan_Tests {
Botan::X509_DN read_dn(const std::string& hex);
Botan::X509_DN get_dn();
Botan::X509_DN get_utf8_dn();
std::vector<std::pair<std::string, Botan::X509_DN>> get_utf8_dn_alternatives();
std::vector<uint8_t> get_key_id();
std::string get_subject_cn();
std::vector<uint8_t> get_pubkey_sha1_of_cert_with_different_key_id();
Botan::X509_DN get_dn_of_cert_with_different_key_id();
Botan::X509_DN get_unknown_dn();
Botan::X509_DN get_skewed_dn();
std::vector<uint8_t> get_unknown_key_id();
} // namespace Botan_Tests
#endif
#endif