Tagged Questions

9
votes
2answers
10k views

How can I install a certificate into the local machine store programmatically using c#?

I have a certificate generated via MakeCert. I want to use this certificate for WCF message security using PeerTrust. How can I programmatically install the certificate into the "trusted people" ...
0
votes
2answers
65 views

How to run command in the process which is executed with admin rights?

I want to create a self signed certificate and install it using through c# program. I use makecert to make certificate i run it as administrator and i pass command in the ProcessStartInfo.argument but ...
0
votes
0answers
146 views

How to self generate certificate SHA-256?

I use Bouncy Castle libraries in C# to sign with SHA-256, and I'd like to use them in a test of a self generated certificate instead of a smartcard reader. Using the self certificate used before, ...
0
votes
0answers
204 views

How do I code makecert “-sky exchange” and “-sky signature” in C#

I need to programatically create the equivalant keys in a .NET application... makecert -r -pe -a sha1 -n "CN=MyName" -ss my -sr CurrentUser -sky exchange makecert -r -pe -a sha1 -n "CN=MyName" -ss ...