blob: 4ea3dc56de85244498dc30e009f7f79c6a9715a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/*
* PKCS#11 Module
* (C) 2016 Daniel Neus, Sirrix AG
* (C) 2016 Philipp Weber, Sirrix AG
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/p11_module.h>
namespace Botan {
namespace PKCS11 {
Module::Module(const std::string& file_path, C_InitializeArgs init_args)
: m_file_path(file_path)
{
reload(init_args);
}
Module::~Module() BOTAN_NOEXCEPT
{
m_low_level->C_Finalize(nullptr, nullptr);
}
void Module::reload(C_InitializeArgs init_args)
{
if(m_low_level)
{
m_low_level->C_Finalize(nullptr);
}
m_library.reset(new Dynamically_Loaded_Library(m_file_path));
LowLevel::C_GetFunctionList(*m_library, &m_func_list);
m_low_level.reset(new LowLevel(m_func_list));
m_low_level->C_Initialize(&init_args);
}
}
}
|