lua-http-digest icon indicating copy to clipboard operation
lua-http-digest copied to clipboard

Client side HTTP Digest Authentication for Lua

Results 2 lua-http-digest issues
Sort by recently updated
recently updated
newest added

This implementation only supports the MD5 algorithm. We could implement [MD5-sess](http://tools.ietf.org/html/rfc2617#section-3.2.2.2) as well. However MD5-sess is not very useful and is stateful (HA1 must not be recalculated after the 1st...

Currently this implementation does not re-use nonces, so we make `2*n` requests. Implementing it would allow us to make only n+1 requests. Note: if somebody wants to implement this, please...

enhancement