lua-resty-string icon indicating copy to clipboard operation
lua-resty-string copied to clipboard

String utilities and common hash functions for ngx_lua and LuaJIT

Results 32 lua-resty-string issues
Sort by recently updated
recently updated
newest added

249577944 items is not very big at my In my opinion,but luajit just overflow , so whats the limit ?? Can be overcome ?? > tb = table.new(249577944,0) **table overflow**...

v0.9 on luarocks. With Redhat and others recommending luarocks as a way to get these scripts, could it be updated there? Thanks.

AES CBC model is not secure in TLS1.2, and it's unsupported in http2: [TLS 1.2 Cipher Suite Black List](https://tools.ietf.org/html/rfc7540#appendix-A) AES GCM/CCM is considered more secure, is there any plan to...

/usr/local/lua_redis/resty/aes.lua:106: /usr/local/lib/libluajit-5.1.so.2: undefined symbol: EVP_md5 stack traceback:

I want to use a custom padding format, but I can't. please add EVP_CIPHER_CTX_set_padding to ffi config of aes, thanks.

The functions you have are very good, but they make the assumption that if you want to encrypt and decrypt you will always have the encrypted ascii value (non-converted around)....

Hi, I'm try to use aes.lua with aes.js I see the default configure is local aes_128_cbc_md5 = aes:new("AKeyForAES") -- the default cipher is AES 128 CBC with 1 round of...

在lua-resty-string中已经实现to_hex,不知能否加一个from_hex,更加高效实现hex到byte的转换? 谢谢 我现在使用gsub的方式: ```lua function from_hex(s) return (s:gsub('..', function(cc) return string.char(tonumber(cc, 16)) end)) end ```

Hey, i am wondering if this library is still experimental or safe to use in production systems? Also if anyone knows the support of "AES" encryption methods? Thanks