From 36c49cd09cc72662e6028b993d6641d422496f8e Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Sat, 4 Jun 2016 22:32:08 +0300 Subject: [PATCH] Forgot to register the Hash and AES sub libraries from the main Crypt library. --- source/Library/Crypt.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/Library/Crypt.cpp b/source/Library/Crypt.cpp index 48341dd0..2496ef1a 100644 --- a/source/Library/Crypt.cpp +++ b/source/Library/Crypt.cpp @@ -16,7 +16,8 @@ extern void Register_AES(HSQUIRRELVM vm); // ================================================================================================ void Register_Crypt(HSQUIRRELVM vm) { - + Register_Hash(vm); + Register_AES(vm); } } // Namespace:: SqMod