sqlite-http-basic-auth-nginx-module icon indicating copy to clipboard operation
sqlite-http-basic-auth-nginx-module copied to clipboard

Digest authentication support

Open hazcod opened this issue 10 years ago • 3 comments
trafficstars

[Feature Request] Could this be a possibility? Sending over a password in plaintext is something I don't really like.

hazcod avatar Jul 23 '15 07:07 hazcod

To add in, digest authentication is sending; (Bash)

htdigest_hash=`printf $username:$AUTH_REALM:$rand_pw | md5sum -`
echo "$username:$AUTH_REALM:${htdigest_hash:0:32}"

Where auth_realm is the name if your webdav share, e.g. "Media" and $rand_pw your password.

hazcod avatar Jul 23 '15 08:07 hazcod

Yes. I will look into it.

kunal avatar Jul 23 '15 08:07 kunal

~~And this would solve your TODO "Support encrypted passwords" ;-)~~ nvm, is hashed Thank you.

Maybe this should be made into a fork?

hazcod avatar Jul 23 '15 08:07 hazcod