Core/Crypto: Rename our Argon2 to avoid possible conflict with library file on some configurations

This commit is contained in:
Shauren
2024-06-02 00:18:33 +02:00
parent 63f5612ad8
commit 4f6b49cccf
3 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "Argon2.h"
#include "Argon2Hash.h"
#include <argon2/argon2.h>
/*static*/ Optional<std::string> Trinity::Crypto::Argon2::Hash(std::string const& password, BigNumber const& salt, uint32 nIterations, uint32 kibMemoryCost)

View File

@@ -17,7 +17,7 @@
#include "SecretMgr.h"
#include "AES.h"
#include "Argon2.h"
#include "Argon2Hash.h"
#include "Config.h"
#include "CryptoGenerics.h"
#include "DatabaseEnv.h"