luacrypto icon indicating copy to clipboard operation
luacrypto copied to clipboard

Fork of LuaCrypto, which enables encryption and decryption through OpenSSL

Results 31 luacrypto issues
Sort by recently updated
recently updated
newest added

How to install on Rocky Linux

I am trying to install luacrypto and i get this [error](https://gist.github.com/mridulbirla/b74734546f8571a7077b7b254507fcc9) . My gcc version is 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC). I have Lua 5.1.4 . An help will...

why not support openssl 1.1.0 or higher?

could you please clarify how to proceed with installation? 1. running make doesn't work for me c:\Program Files (x86)\LuaRocks\luacrypto-0.3.2-2\luacrypto>make make: *** No targets specified and no makefile found. Stop. OR...

https://github.com/mkottman/luacrypto/blob/master/src/lcrypto.c When I compile using that library I get: gcc -O2 -fPIC -I/usr/include -c src/lcrypto.c -o src/lcrypto.o -I/usr/include In file included from src/lcrypto.c:31:0: src/lcrypto.c:38:13: error: expected declaration specifiers or ‘...’...

i installed luacrypto, but when i run my program i still get ``` root@LPG1:~# lua a.lua lua: a.lua:1: module 'crypto' not found: no field package.preload['crypto'] no file '/usr/local/share/lua/5.2/crypto.lua' no file...

hello mkottman, I modified luacrypto to support lua5.2, could you review and merge to your master branch? Best regards, drew

Hello, I am not able to decrypt back what was encrypted using Crypto-JS in browser Javascript: ``` // Encrypt var ciphertext = CryptoJS.AES.encrypt('testingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtestingtesting', '&&nH8P3bxk+?C4gR'); // Decrypt var bytes = CryptoJS.AES.decrypt(ciphertext.toString(),...