How to create https digest Auth?

I want to create https digest Auth to store private
Data. I already have Basic Auth, but I heard this isn’t safe.

If your website is using HTTPS, I wouldn’t worry too much about using Basic Auth. Yes, basic auth can be decoded when intercepted, but if you’re using HTTPS, intercepting it is pretty hard.

I don’t think digest auth is possible with .htaccess rules. But you can probably do this with PHP as well. If you search the web you should see guides detailing how to do this.

3 Likes

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.