mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-07 13:28:08 -05:00
16 lines
209 B
C++
16 lines
209 B
C++
#include "CryptoLibrary.h"
|
|
|
|
#include "tommath.h"
|
|
|
|
void CryptoLibrary::Init()
|
|
{
|
|
static bool initialized = false;
|
|
|
|
if (!initialized)
|
|
{
|
|
initialized = true;
|
|
|
|
ltc_mp = ltm_desc;
|
|
}
|
|
}
|