Can anyone point me to a good introductory materials on X509 certificates with examples in C#.
+1
A:
You can begin here
The System.Security.Cryptography.X509Certificates namespace contains the common language runtime implementation of the Authenticode X.509 v.3 certificate. This certificate is signed with a private key that uniquely and positively identifies the holder of the certificate.
CodeToGlory
2009-08-04 16:14:57
Thanks, I've tried that already, but it's not exactly what I'm looking for
ppiotrowicz
2009-08-04 16:45:26
What are you looking for mainly? why are you looking at X509? Maybe I can help you if you can shed more information.
CodeToGlory
2009-08-04 16:57:35
+1
A:
I found this C# example pretty helpful in figuring out how to generate new certificates.
Also this blog post covering the more general concepts
Other than that you'll need the platform SDK installed, which does also include several other examples (most in C++, but a couple in C# and VB too).
John Sibly
2009-11-10 16:14:36