Aapo Talvensaari
Aapo Talvensaari
I recently forked [mediador](https://github.com/simbiose/mediador) library here: https://github.com/mashape/lua-resty-mediador It does support IPv6 and IPv4. Haven't benchmarked it yet.
And documentation would be nice as well (add that function to README.markdown).
I'm pretty sure, as @agentzh said, this is issue with different padding. Some info: 1. AES-128 key/secret size is fixed 128 bits or 16 bytes, now your key `secret` is...
And the `IV` thing, AES in ECB mode doesn't support it as far as I know because it doesn't perform chaining between blocks. It is the worst mode to use...
I think this is duplicate of #43.
@byliu, I think that no one has reviewed those. Because it is a huge task, and because there seem to be some opinionated things what should and what should not...
I talked shortly with @daurnimator on IRC about this pull request. I have been following this, because I have been looking at building some LuaJIT bindings and Lua APIs for...
A good article about the issue: http://www.igvita.com/2013/11/27/configuring-and-optimizing-websocket-compression/
I have been using pjax (https://github.com/defunkt/jquery-pjax). The only supported way in pjax to post forms is throught JS FormData which is `multipart/form-data`. PHP does this so that you have `$_FILES`...
@antonheryanto thanks for reminding about it. I wish I had remembered this yesterday, as I already went ahead and build a new one for my lua-resty-route project: https://github.com/bungle/lua-resty-route/blob/master/lib/resty/route/middleware/form.lua (that could...