2016-03-10 04:57:13 +01:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
#include "Library/Crypt.hpp"
|
|
|
|
#include "Base/Shared.hpp"
|
2016-04-14 02:08:06 +02:00
|
|
|
#include "Base/Stack.hpp"
|
2016-03-10 04:57:13 +01:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstring>
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
namespace SqMod {
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-05-22 05:20:38 +02:00
|
|
|
extern void Register_Hash(HSQUIRRELVM vm);
|
|
|
|
extern void Register_AES(HSQUIRRELVM vm);
|
2016-03-10 04:57:13 +01:00
|
|
|
|
|
|
|
// ================================================================================================
|
|
|
|
void Register_Crypt(HSQUIRRELVM vm)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} // Namespace:: SqMod
|