AuroraRuntime/Source/Crypto.hpp
2021-06-27 22:25:29 +01:00

20 lines
372 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Crypto.hpp
Date: 2021-6-17
Author: Reece
***/
#pragma once
namespace Crypto
{
inline int gAesCipher;
inline int gHashTiger;
inline int gHashSha1;
inline int gHashSha256;
inline int gHashSha512;
inline int gPrngYarrow;
void InitCrypto();
}