Initial commit

This commit is contained in:
2025-12-17 16:47:48 +00:00
commit 13813f3363
4964 changed files with 1079753 additions and 0 deletions

20
engine/core/src/Crypt.hpp Normal file
View File

@@ -0,0 +1,20 @@
#pragma once
#if defined(_WIN32) && !defined(AYA_PLATFORM_DURANGO)
#include <Windows.h>
#include <wincrypt.h>
#endif
#include <string>
namespace Aya
{
class Crypt
{
public:
Crypt();
~Crypt();
void verifySignatureBase64(std::string message, std::string signatureBase64);
};
} // namespace Aya