1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-02 16:38:41 +00:00

Move sha256.c to lib/

Precompiled headers don't work if we're not a pure C++ project.
This commit is contained in:
Desour 2023-03-25 21:40:17 +01:00 committed by DS
parent 3120558dd1
commit cdbbac5b6d
9 changed files with 27 additions and 10 deletions

View file

@ -42,7 +42,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "version.h"
#include "util/hex.h"
#include "util/sha1.h"
#include "util/sha256.h"
#include <sha256/sha256.h>
#include "util/png.h"
#include <cstdio>
@ -573,7 +573,7 @@ int ModApiUtil::l_sha256(lua_State *L)
auto data = readParam<std::string_view>(L, 1);
bool hex = !lua_isboolean(L, 2) || !readParam<bool>(L, 2);
std::string data_sha256;
data_sha256.resize(SHA256_DIGEST_LENGTH);
SHA256(reinterpret_cast<const unsigned char*>(data.data()), data.size(),