1
0
Fork 0

Updated the C++ wrapper with new optional parameters.

This commit is contained in:
LoRd_MuldeR 2022-10-15 20:40:39 +02:00
parent b5b6e3eaf0
commit 73b7131b87
Signed by: mulder
GPG Key ID: 2B5913365F57E03F
1 changed files with 7 additions and 3 deletions

View File

@ -33,11 +33,13 @@ namespace slunkcrypt
class SlunkBase
{
public:
SlunkBase(const size_t thread_count)
SlunkBase(const size_t thread_count, const bool legacy_compat, const bool debug_logging)
{
std::memset(&m_param, 0, sizeof(m_param));
m_param.version = ::SLUNKCRYPT_PARAM_VERSION;
m_param.thread_count = thread_count;
m_param.legacy_compat = legacy_compat ? SLUNKCRYPT_TRUE : SLUNKCRYPT_FALSE;
m_param.debug_logging = debug_logging ? SLUNKCRYPT_TRUE : SLUNKCRYPT_FALSE;
}
virtual bool process(const uint8_t *const input, uint8_t *const output, size_t length) = 0;
@ -56,7 +58,8 @@ namespace slunkcrypt
class Encryptor : public SlunkBase
{
public:
Encryptor(const std::string &passwd, const size_t thread_count = 0U) : SlunkBase(thread_count)
Encryptor(const std::string &passwd, const size_t thread_count = 0U, const bool legacy_compat = false, const bool debug_logging = false)
: SlunkBase(thread_count, legacy_compat, debug_logging)
{
if (::slunkcrypt_generate_nonce(&m_nonce) != SLUNKCRYPT_SUCCESS)
{
@ -117,7 +120,8 @@ namespace slunkcrypt
class Decryptor : public SlunkBase
{
public:
Decryptor(const std::string &passwd, const uint64_t nonce, const size_t thread_count = 0U) : SlunkBase(thread_count)
Decryptor(const std::string &passwd, const uint64_t nonce, const size_t thread_count = 0U, const bool legacy_compat = false, const bool debug_logging = false)
: SlunkBase(thread_count, legacy_compat, debug_logging)
{
if ((m_instance = ::slunkcrypt_alloc_ext(nonce, (const uint8_t*)passwd.c_str(), passwd.length(), SLUNKCRYPT_DECRYPT, &m_param)) == SLUNKCRYPT_NULL)
{