When writing a C/S-Application with C# i'm checking the certificate of the server i connect to. Therefore I get a callback where i can consider about X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors to check the certificate. I want to let the user decide about it, so thought about using the windows standard certificate dialog, which looks like this:

Windows standard certificate decision dialog

How can I achieve this by the given data?

I've found a partial answer for showing the certificate. Therefore i can use this code:

X509Certificate certificate = ...
X509Certificate2 certenh = new X509Certificate2(certificate);
X509Certificate2UI.DisplayCertificate(certenh);

But the other message is still missing. I could reproduce it, but not for every language, and I've no idea where to find that symbol. As condition for showing this message i could use certenh.Verify();.

For the icon of the background message I can use urlmon.dll at index 13, 14 and 15. There you find icons like:

Certificate information Certificate question Certificate warning

So I'm able to build a similar message like the one in the background. The only problem that is left, is that it would be better to use standard language specific phrases to build the message. But I've found no library that contains the language specific strings.

For the moment I build the message on my own by using the value of sslPolicyErrors.

link|improve this question

75% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.