|
daniel rahmeh wrote:
Hi, I would like to know please if lua have some kind of library for cryptographic functions like AES, 3DES, DES, MD5 and SHA1
MD5 ===MD5 offers basic cryptographic facilities for Lua 5.1: a hash (digest) function, a pair crypt/decrypt based on MD5 and CFB, and a pair crypt/decrypt based on DES with 56-bit keys.
http://www.keplerproject.org/md5/ lmd5 ====An MD5 digest library for Lua based on Rivest's scheme. It also supports SHA1.
http://luaforge.net/projects/lmd5 LuaCrypto =========LuaCrypto provides a Lua frontend to the OpenSSL cryptographic library. The OpenSSL features that are currently exposed are digests (MD5, SHA-1, HMAC, and more) and crypto-grade random number generators.
http://luacrypto.luaforge.net/