Reputation: 1233
I am trying to understand the concept of ssl in wp7.
I learnt that public key is installed in the phone. And how the private key will synchronize with the public key? Is there any code needed?
In my scenario is that i have a username and password. and for client authentication i want this ssl communication.
How to implement this ssl concept for this scenario? And i dont want to disturb user experience too.
Upvotes: 0
Views: 874
Reputation: 84804
Short anwer: you cannot add trusted certificates to the phone and you cannot make HTTPS connections to servers with untrusted certificates.
Long answer
You can install a custom certificate on the phone by emailing it to yourself and opening the attachment on the phone. However, you'll have to do it on the emulator everytime it starts and you can't ask users of your application to do it (you'll very likely be rejected from the marketplace).
Upvotes: 2