fix: remove _DEBUG check when decoding public key

This commit is contained in:
rjindael 2023-09-07 15:35:30 -07:00
parent bc5bf97b74
commit 17b2ad960a
No known key found for this signature in database
GPG Key ID: D069369C906CCF31
1 changed files with 0 additions and 4 deletions

View File

@ -1,10 +1,6 @@
#include "Helpers.hpp"
#ifdef _DEBUG
const std::vector<BYTE> Helpers::publicKey = Helpers::base64Decode(PUBLIC_KEY);
#else
const std::vector<BYTE> Helpers::publicKey { PUBLIC_KEY };
#endif
const std::vector<std::string> Helpers::allowedWildcardDomains { ALLOWED_WILDCARD_DOMAINS };
const std::vector<std::string> Helpers::allowedDomains { ALLOWED_DOMAINS };