forked from aya/aya
Initial commit
This commit is contained in:
20
engine/core/src/Crypt.hpp
Normal file
20
engine/core/src/Crypt.hpp
Normal 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
|
||||
Reference in New Issue
Block a user