client certificates and private keys.

D

duwayne

Hi,

I will be writting a web application that will accept certificates from
clients. What I really need is to get the private key from the client
and decrypt some data and display it. Clients that do not have the
private key will not encrypted data. Is this possible? Can someone
point me to the right direction.

Regards,

DS
 
N

Nick Malik [Microsoft]

a client will NEVER send a private key.

If you get the cert from the client, they will encrypt with YOUR public key,
and you will decrypt with YOUR private key. When sending data to them, you
will encrypt with THEIR public key (in the cert), and they will decrypt with
THEIR private key.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top