Hi,
I got a hard question regarding usage of the openSSL library in php.
The thing im trying to do is transport encrypted data to a client browser (which will have the private key certificate in PKCS12 format). I want to be able to be sure that the client is who it says it is, and that this data is transferred encrypted with only the client having the private key being able to decrypt it.
The problem is i dont have access to httpd.conf in this case, which would have been a posible solution.
My next idea was therefore to use S/MIME over http where in the client browser IE it has a installed certificate in PKCS12 format (thus having private key access). I believe IE has support for S/MIME, and i guess this needs some sort of programming of the http headers sent (through headers() function).
Anyone got any ideas how to do this, or another possible solution. As i said i dont have access to httpd.conf.
Thanks pep's