diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2013-08-10 08:06:43 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2013-08-10 08:06:43 +0200 |
commit | 5ddf9b5b18431b7fe85bf555d9cfa7fe04aae5e1 (patch) | |
tree | 6bc36b16c5e815b4932cceae7217f7238723ba83 | |
parent | 8a910b9c9a62cd0016fc12e986442f273ff089b6 (diff) |
Let's disable lcrypt's math portion for now.
-rw-r--r-- | lcrypt/lcrypt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lcrypt/lcrypt.c b/lcrypt/lcrypt.c index 620c88b..5ca67cf 100644 --- a/lcrypt/lcrypt.c +++ b/lcrypt/lcrypt.c @@ -43,7 +43,7 @@ static void* lcrypt_malloc(lua_State *L, size_t size) #include "lcrypt_ciphers.c" #include "lcrypt_hashes.c" -#include "lcrypt_math.c" +//#include "lcrypt_math.c" #include "lcrypt_bits.c" #include "lcrypt_rsa.c" @@ -262,7 +262,7 @@ int luaopen_lcrypt(lua_State *L) lcrypt_start_ciphers(L); lcrypt_start_hashes(L); - lcrypt_start_math(L); +// lcrypt_start_math(L); lcrypt_start_bits(L); lua_pop(L, 1); |