Re: How to implement HTTP authentication,does SSL implement this

2006-10-16 Thread Aarno Syvänen
Hi, implementing http over sl would mean implementing https, a separate thing. HTTP Basic and Digest authentications are part of HTTP itself. Btw, they are not meant to be very secure, but could be used for privact reasons. Aarno On 16 Oct 2006, at 07:20, bhanu_rao wrote: Hi all, I wa

RE: How to implement HTTP authentication,does SSL implement this

2006-10-15 Thread bhanu
: How to implement HTTP authentication,does SSL implement this HTTP is an application layer protocol. HTTP can run on top of SSL/TLS, but SSL/TLS has no knowledge of what the application is doing (and doesn't try to have it). If you want C code to do HTTP authentication, you can look at Apa

Re: How to implement HTTP authentication,does SSL implement this

2006-10-15 Thread Kyle Hamilton
HTTP is an application layer protocol. HTTP can run on top of SSL/TLS, but SSL/TLS has no knowledge of what the application is doing (and doesn't try to have it). If you want C code to do HTTP authentication, you can look at Apache's "mod_proxy" module, which has an implementation of an authenti

How to implement HTTP authentication,does SSL implement this

2006-10-15 Thread bhanu_rao
Hi all, I want to implement HTTP Authentication using C, so i want to know that does SSL has any function for implementing HTTP authentication 1.1 or it is not related to SSL , and if it implement it then want to know which are those function, Also can any one tell me how to test error cod